@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary: #051b34;
  --color-2: #f8f8f8;
  --secondary: #3957ff;
  --tertiary: #8f8f8f;
  --fourty: #333333;
}

body {
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 90%;
}
.wrapper {
  display: flex;
  align-items: center;
}

@keyframes MoveUpInitial {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -105%, 0);
  }
}

@keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}
header {
  position: absolute;
  width: 100%;
  z-index: 88;
  height: fit-content;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  &.scrolled {
    position: fixed;
    top: 0;
    background: var(--fourty);
    .header_top {
      max-height: 0;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
    }
    .header_bottom {
      padding: 10px 0;
      background: var(--fourty);
    }
  }
  .header_top {
    padding: 10px 0;
    display: none;
    transition: 0.3s ease-in-out;
    background: var(--fourty);
    .wrapper {
      justify-content: space-between;
      .left_area {
        display: flex;
        align-items: center;
        gap: 20px;
        li {
          display: flex;
          align-items: center;
          gap: 10px;
          color: #8f8f8f;
          i {
            color: var(--secondary);
          }
          span {
            font-size: 14px;
          }
          a {
            color: currentColor;
            font-size: 14px;
            font-weight: 500;
            transition: all 300ms ease;
            &:hover {
              color: white;
            }
          }
        }
      }
      .right_area {
        display: flex;
        align-items: center;
        gap: 20px;

        li {
          a {
            transition: 0.3s ease-in-out;
            color: var(--color-2);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
          }
        }
      }
    }
  }
  .header_bottom {
    transition: 0.3s ease-in-out;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    .wrapper {
      justify-content: space-between;
      .logo {
        flex-shrink: 0;
        img {
          max-width: 150px;
          height: auto;
          display: block;
        }
      }
      .navbar {
        display: none;
        align-items: center;
        gap: 10px;
        .navbar_item {
          position: relative;
          &:hover {
            .navbar_submenu {
              max-height: 400px;
              opacity: 1;
              visibility: visible;
            }
            .navbar_link {
              color: var(--color-2);
              i {
                transform: rotate(180deg);
              }
            }
          }
          .navbar_link {
            color: var(--color-2);
            display: block;
            line-height: 40px;
            font-size: 15px;
            font-weight: normal;
            display: flex;
            align-items: center;
            padding: 5px 10px;
            font-weight: 600;
            gap: 6px;
            text-transform: uppercase;
            i {
              margin-top: 2px;
              font-size: 14px;
              display: block;
              transition: 0.3s ease-in-out;
            }
          }
          .navbar_submenu {
            position: absolute;
            min-width: 200px;
            width: fit-content;
            transition: 0.3s ease-in-out;
            max-height: 0;
            visibility: hidden;
            background: #fff;
            border: 1px solid #ddd;
            opacity: 0;
            padding: 10px;
            left: 0;
            border-radius: 10px;
            li {
              a {
                padding: 10px;
                border-radius: 10px;
                display: block;
                width: 100%;
                transition: 0.3s ease-in-out;
                color: var(--primary);
                &:hover {
                  background: var(--color-2);
                }
              }
            }
          }
        }
      }
      .right_area {
        display: none;
        align-items: center;
        gap: 20px;
        position: relative;
        &::before {
          content: "";
          width: 1px;
          position: absolute;
          display: block;
          height: 100%;
          background: rgba(255, 255, 255, 0.1);
          left: -20px;
        }
        li {
          display: flex;
          align-items: center;
          gap: 10px;
          .icon {
            width: 40px;
            height: 40px;
            color: white;
            display: flex;
            border-radius: 50%;
            align-items: center;
            background: var(--secondary);
            justify-content: center;
          }
          p {
            display: flex;
            flex-direction: column;
            row-gap: 5px;
            span {
              color: #ffffffd0;
              font-size: 12px;
            }
            a {
              color: var(--color-2);
              font-size: 13px;
              font-weight: 500;
              transition: 0.3s ease-in-out;
            }
          }
        }
      }
      .hamburger {
        display: flex;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        background: transparent;
        justify-content: center;
        border-radius: 5px;
        cursor: pointer;
        color: var(--color-2);
        transition: 0.3s ease-in-out;
        border: 1px solid var(--color-2);
        &:hover {
          background: var(--color-2);
          color: var(--secondary);
        }
      }
    }
  }

  @media screen and (min-width: 1024px) {
    .header_top {
      display: block;
    }
    .header_bottom {
      .wrapper {
        .navbar {
          display: flex;
        }
        .right_area {
          display: flex;
        }
        .hamburger {
          display: none;
        }
      }
    }
  }
}

.hero_section {
  height: 90vh;
  position: relative;
  .heroSlider {
    height: 100%;
    .swiper-slide {
      &.swiper-slide-active {
        .hero_card {
          padding: 100px 0;
          article {
            strong {
              opacity: 1;
              transform: scale(1);
            }
            p {
              opacity: 1;
              transform: scale(1);
            }
            button {
              opacity: 1;
              transform: scale(1);
            }
          }
        }
      }
    }
    .hero_card {
      height: 100%;
      display: flex;
      position: relative;
      align-items: center;

      img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
      }
      &::before {
        content: "";
        inset: 0;
        position: absolute;
        width: 100%;
        background: linear-gradient(
          to right,
          rgba(0, 0, 0, 0.8) 0%,
          rgba(0, 0, 0, 0.6) 40%,
          rgba(0, 0, 0, 0.3) 70%,
          rgba(0, 0, 0, 0) 100%
        );
        z-index: 2;
        height: 100%;
      }
      article {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        max-width: 900px;
        position: relative;
        z-index: 4;
        margin-top: 25px;
        strong {
          font-size: 30px;
          font-weight: bold;
          display: block;
          line-height: 1;
          color: #fff;
          opacity: 0;
          transform: scale(0.8);
          transition: 0.3s ease-in-out;
        }
        p {
          color: #fff;
          opacity: 0.9;
          font-size: 14px;
          line-height: 1.2;
          font-weight: 400;
          max-width: 500px;
          opacity: 0;
          transform: scale(0.9);
          transition: 0.3s ease-in-out;
        }
        button {
          position: relative;
          font-size: 16px;
          line-height: 28px;
          padding: 15px 50px;
          font-weight: 800;
          width: fit-content;
          overflow: hidden;
          color: var(--primary);
          background: #f8f8f8;
          -webkit-transition: all 500ms ease;
          transition: all 500ms ease;
          border-radius: 10px;
          cursor: pointer;
          overflow: hidden;
          &:hover {
            color: var(--primary);
            &:before {
              opacity: 1;
              width: 100%;
            }
          }
          &:before {
            left: 0;
            top: 0;
            content: "";
            background-color: #ccc;
            border-radius: 10px;
            opacity: 0.4;
            height: 100%;
            width: 24px;
            position: absolute;
            -webkit-transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            z-index: -1;
          }
          .btn-title {
            position: relative;
            z-index: 2;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
          }
        }
      }
    }
  }
  .navigation_area {
    position: absolute;
    left: 70px;
    bottom: 50px;
    display: flex;
    z-index: 3;
    align-items: center;
    gap: 20px;
    button {
      position: relative;
      z-index: 0;
      --size: 8.75rem;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid hsla(0, 0%, 100%, 0.3);
      background: none;
      cursor: pointer;
      transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
      overflow: hidden;
      &:hover {
        border-color: var(--secondary);
        .slider-buttons__hover {
          animation:
            MoveUpInitial 0.2s forwards,
            MoveUpEnd 0.2s forwards 0.2s;
        }
        &::before {
          transform: none;
        }
      }
      &::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 0;
        transform: translateY(100%);
        transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
        background-color: var(--secondary);
      }
      .slider-buttons__span {
        position: relative;
        z-index: 1;
        display: block;
        overflow: hidden;
      }
      .slider-buttons__hover {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .slider-buttons__svg {
        width: 20px;
        --size: 1.75rem;
        height: 20px;
        transform: rotate(90deg);
        &.right {
          transform: rotate(-90deg);
        }
      }
    }
  }

  @media (min-width: 992px) {
    height: 100vh;
    .social-bar {
      display: flex;
    }
    .heroSlider {
      .hero_card {
        article {
          strong {
            font-size: 60px;
          }
          p {
            font-size: 18px;
          }
        }
      }
    }
  }
}
.about_section {
  padding: clamp(40px, 5vw, 80px) 0;
  .grid_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    column-gap: clamp(20px, 4vw, 30px);
    row-gap: 20px;
    @media screen and (min-width: 992px) {
      grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
      display: grid;
      gap: 10px;
      grid-template-columns: 1fr;
      position: relative;

      @media (min-width: 480px) {
        grid-template-columns: repeat(2, 1fr);
      }

      li {
        overflow: hidden;
        position: relative;
        border-radius: 50px;
        min-height: 450px;
        &:after {
          position: absolute;
          content: "";
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          background: rgba(0, 0, 0, 0.17);
        }
        img {
          max-height: 450px;
          width: 100%;
          height: 100%;
          transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          object-fit: cover;
          display: block;
        }
      }
    }

    .content_area {
      display: flex;
      flex-direction: column;
      strong {
        font-size: clamp(11px, 1.2vw, 12px);
        font-size: 16px;
        font-weight: bold;
        color: #6f6f6f;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        &::before {
          width: 8px;
          height: 8px;
          display: block;
          border-radius: 50%;
          background: var(--secondary);
          content: "";
          flex-shrink: 0;
        }
      }
      h2 {
        font-size: clamp(28px, 4vw, 34px);
        font-weight: 800;
        line-height: 1.05;
        color: #222;
        margin-bottom: 30px;
      }
      article {
        position: relative;
        font-size: clamp(14px, 1.6vw, 16px);
        color: #555;
        line-height: 1.4;
        margin-bottom: 20px;
        &:last-child {
          margin-bottom: 0;
        }
        &.content_one {
          padding-left: 20px;
          &::before {
            position: absolute;
            width: 4px;
            height: 100%;
            content: "";
            background: var(--secondary);
            top: 0;
            left: 0px;
            border-radius: 2px;
          }
        }
      }
      ul {
        margin-top: clamp(15px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        row-gap: 8px;
        padding: 0;
        list-style: none;

        li {
          display: flex;
          align-items: flex-start;
          gap: 10px;
          line-height: 1.4;

          &::before {
            width: 6px;
            height: 6px;
            content: "";
            border-radius: 50%;
            background: var(--secondary);
            flex-shrink: 0;
            margin-top: 0.5em;
          }
        }
      }

      a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.9rem 1.8rem;
        margin-top: clamp(15px, 2vw, 20px);
        border-radius: 8px;
        font-size: clamp(14px, 1.5vw, 16px);
        font-weight: 600;
        color: var(--secondary);
        border: 2px solid var(--secondary);
        cursor: pointer;
        position: relative;
        background-color: transparent;
        text-decoration: none;
        overflow: hidden;
        width: fit-content;
        z-index: 1;
        font-family: inherit;
        transition: color 0.3s ease;

        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: var(--secondary);
          transform: translateX(-100%);
          transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          z-index: -1;
        }

        &:hover {
          color: var(--color-2);
          border-color: var(--secondary);

          &::before {
            transform: translateX(0);
          }
        }

        &:active {
          /* Klik effekti */
          transform: scale(0.98);
        }
      }
    }
    p {
      &.addition_content {
        grid-column: 1 / -1;
        margin-top: 5px;
        text-align: left;
        font-size: 16px;
        height: fit-content;
        color: #6b6b6b;
      }
    }
  }
}

.section_title {
  display: flex;
  margin-bottom: 60px;
  flex-direction: column;
  padding: 15px;
  row-gap: 20px;
  column-gap: 60px;
  background: var(--fourty);
  border-radius: 15px;
  strong {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-2);
  }
  p {
    font-size: 14px;
    line-height: 1.2;
    max-width: 55%;
    color: var(--color-2);
    text-align: start;
  }

  @media screen and (min-width: 768px) {
    padding: 25px;
    margin-bottom: 50px;
    border-radius: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;

    strong {
      font-size: 32px;
      flex: 1;
    }

    p {
      font-size: 15px;
      text-align: start;
    }
  }
  @media screen and (min-width: 992px) {
    padding: 30px 40px;
    margin-bottom: 60px;
    border-radius: 30px;
    column-gap: 60px;

    strong {
      font-size: 70px;
    }

    p {
      font-size: 18px;
    }
  }
}
.services_section {
  padding: 30px 0;

  .services_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    margin: 0 auto;
  }
  .more_btns {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 3rem;
      margin-top: clamp(15px, 2vw, 20px);
      border-radius: 999px;
      font-size: clamp(14px, 1.5vw, 16px);
      font-weight: 600;
      color: var(--color-2);
      border: none;
      cursor: pointer;
      position: relative;
      background-color: var(--primary);
      text-decoration: none;
      overflow: hidden;
      width: fit-content;
      z-index: 1;
      font-family: inherit;
      box-shadow: 0 10px 22px rgba(5, 27, 52, 0.4);
      transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease;

      &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.12);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
      }

      &:hover {
        color: var(--color-2);
        background-color: #0b2a4f;

        &::before {
          transform: translateX(0);
        }
      }

      &:active {
        /* Klik effekti */
        transform: scale(0.98);
      }
    }
  }
  @media screen and (min-width: 768px) {
    padding: 40px 0;

    .services_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .more_btns {
      a {
        padding: 0.9rem 2.5rem;
        font-size: 15px;
      }
    }
  }
  @media screen and (min-width: 992px) {
    padding: 60px 0;

    .services_grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .more_btns {
      a {
        padding: 1rem 2.8rem;
        font-size: 16px;
      }
    }
  }
}
.service_card {
  background: #f0f0f0;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  &:hover {
    .card_header {
      .arrow_icon {
        transform: rotate(0);
      }
      .image_wrapper {
        img {
          border-radius: 0;
        }
      }
    }
  }
  .card_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    .image_wrapper {
      position: relative;
      width: 80px;
      height: 80px;
      img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        transition: 0.3s ease-in-out;
        border: 3px solid white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      .icon_badge {
        position: absolute;
        bottom: -4px;
        right: -4px;
        width: 32px;
        height: 32px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid white;
        svg {
          width: 16px;
          height: 16px;
          fill: white;
        }
      }
    }
    .arrow_icon {
      opacity: 0.4;
      font-size: 24px;
      transition: all 0.3s ease;
    }
  }
  .card_content {
    margin-top: 20px;
    strong {
      font-size: 16px;
      font-weight: 700;
      color: #3a3a3d;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.2;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      min-height: 10px;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
    }
    p {
      font-size: 14px;
      color: rgba(79, 79, 79, 0.7);
      line-height: 1.4;
      font-weight: 400;
      margin-top: 8px;
                     display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
                min-height: 40px;
    }
  }
  a {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    display: block;
    width: 100%;
    height: auto;
  }
  @media screen and (min-width: 1200px) {
    min-height: 320px;
    border-radius: 30px;
    padding: 40px;

    .card_header {
      margin-bottom: 30px;

      .image_wrapper {
        width: 80px;
        height: 80px;

        img {
          width: 80px;
          height: 80px;
        }

        .icon_badge {
          width: 32px;
          height: 32px;

          svg {
            width: 16px;
            height: 16px;
          }
        }
      }

      .arrow_icon {
        font-size: 32px;
        transform: rotate(-45deg);
      }
    }

    .card_content {
      strong {
        font-size: 20px;
      }

      p {
        font-size: 15px;
        margin-top: 10px;
      }
    }
  }
}
.process_section {
  padding: 40px 0;
  .process_wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background:
      linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
      url("https://i.pinimg.com/474x/68/7d/a7/687da7fe600579dc598a406ffe047929.jpg")
        center/cover;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background-position:
      left 0px top 0px,
      center center;
    background-size: auto, cover;
    background-attachment: scroll, fixed;
    .header-card {
      background: white;
      margin: 20px;
      padding: 30px 40px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      .header-title {
        font-size: clamp(28px, 5vw, 73px);
        font-weight: 900;
        color: #3a3a3d;
        line-height: 0.95;
        letter-spacing: -2px;
      }
      .header-subtitle {
        font-size: 16px;
        color: rgba(79, 79, 79, 0.7);
        line-height: 1.5;
        text-align: start;
      }
    }
    .steps-container {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      padding: 30px;
      gap: 20px;
      flex: 1;
      .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        column-gap: 20px;
        row-gap: 0px;
        flex: 1;
        max-width: 400px;
        .step-number {
          font-size: clamp(40px, 15vw, 80px);
          color: var(--secondary);
          line-height: 0.8;
          opacity: 0.9;
          font-weight: 400;
          text-shadow: 0 0 40px rgba(124, 184, 124, 0.3);
          min-width: 110px;
          text-align: center;
          background: #3957ff3b;
          padding: 30px 20px;
          border-radius: 30px;
        }
        .step-content {
          padding-top: 20px;
          .step-title {
            font-size: clamp(16px, 3vw, 22px);
            font-weight: 500;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
          }

          .step-description {
            font-size: clamp(14px, 3vw, 16px);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            max-width: 280px;
            margin: 0 auto;
          }
        }
      }
    }
  }
  @media screen and (min-width: 992px) {
    padding: 60px 0;

    .process_wrapper {
      border-radius: 32px;
      .header-card {
        margin: 40px;
        padding: 50px 60px;
        gap: 50px;
        .header-subtitle {
          max-width: 300px;
          text-align: start;
        }
      }

      .steps-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 60px 40px;
        gap: 40px;
        align-items: start;
        .step {
          flex-direction: row;
          text-align: start;
          .step-content {
            padding-top: 0;

            .step-description {
              max-width: 280px;
            }
          }
        }
      }
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1023px) {
    .process_wrapper {
      .steps-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;

        .step:last-child {
          grid-column: 1 / -1;
          justify-content: center;
        }
      }
    }
  }
}
.advantages_section {
  padding-bottom: 60px;
  margin-top: 80px;
  .advantages_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    .advantage_card {
      background: white;
      border-radius: 16px;
      padding: 30px;
      position: relative;
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
      .card_header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
        .icon_wrapper {
          width: 60px;
          height: 60px;
          display: flex;
          align-items: center;
          justify-content: center;
          i {
            font-size: 48px;
            color: var(--secondary);
            stroke-width: 1.5px;
          }
        }
        .card_number {
          font-size: 72px;
          font-weight: 900;

          color: #f0f0f0;
          line-height: 1;
        }
      }
      .advantage_title {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 15px;
        line-height: 1.3;
      }
      .advantage_text {
        font-size: 15px;
        color: var(--tertiary);
        line-height: 1.6;
      }
    }

    @media (min-width: 640px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media (min-width: 1024px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }
}

.projects_section {
  padding-bottom: 80px;
  margin-top: 80px;

  .projects_swiper {
    position: relative;

    .projects__progress {
      position: absolute;
      bottom: -15px;
      border-radius: 5px;
      top: unset;
      height: 6px;
      span {
        &.swiper-pagination-progressbar-fill {
          background: var(--primary);
        }
      }
    }
  }
}

.projects_card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  height: 400px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: box-shadow 0.4s ease;
  &:after {
    content: "";
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.05) 75%,
      transparent 100%
    );
  }
  &:hover {
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    span {
      i {
        transform: rotate(45deg);
      }
    }
    img {
      transform: scale(1.1);
    }
    article {
      p {
        max-height: 100px;
        opacity: 0.8;
        visibility: visible;
      }
    }
  }
  span {
    position: absolute;
    bottom: 30px;
    right: 20px;
    color: var(--color-2);
    z-index: 4;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    i {
      transition: 0.3s ease-in-out;
    }
  }
  img {
    position: absolute;
    inset: 0;
    transition: 0.3s ease-in-out;
    width: 100%;
    object-fit: cover;
    height: 100%;
    display: block;
  }
  article {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 4;
    row-gap: 10px;
    margin-right: 40px;
    strong {
      font-size: 28px;
      font-weight: bold;
      color: var(--color-2);
      line-height: 1.2;
      display: -webkit-box;
            -webkit-line-clamp: 2;
            overflow: hidden;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
    }
    p {
      color: var(--color-2);
      font-size: 1rem;
      line-height: 1.2;
      font-weight: normal;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      visibility: hidden;
      transition:
        max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease,
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      text-overflow: ellipsis;
    }
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* call action */
.contact-section {
  position: relative;
  border-radius: 28px;
  margin: 0 auto 30px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(20, 30, 48, 0.85), rgba(20, 30, 48, 0.9)),
    url("https://i.pinimg.com/736x/76/a4/16/76a4166302c5e1c98ca04d57cc2a1de4.jpg")
      center/cover;
}

.contact-container {
  width: 100%;
  max-width: 700px;
  padding: 40px 32px;
  text-align: center;
}

/* Top Info */
.top-info {
  margin-bottom: 24px;
}

.work-time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.phone-link {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--secondary);
}

.phone-link i {
  font-size: 14px;
}

.schedule {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Title */
.contact-title {
  font-size: clamp(26px, 4.5vw, 36px);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 2.2vw, 18px);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 12px 12px 38px;
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  border-bottom-color: var(--color-2);
}

.form-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  transition: color 0.3s ease;
}

.form-input:focus + .form-icon,
.form-group:focus-within .form-icon {
  color: var(--color-2);
}

/* Textarea full width */
.form-group.full-width {
  grid-column: 1 / -1;
}

.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 12px 12px 38px;
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  resize: none;
  min-height: 64px;
  font-family: inherit;
}

.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-textarea:focus {
  border-bottom-color: var(--secondary);
}

/* Submit Button */
.submit-btn {
  background: #fff;
  border: 1px solid #fff;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  margin-top: 20px;
  align-self: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.submit-btn:hover {
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px) {
  .contact-section {
    margin: 20px auto;
    max-width: 95%;
    border-radius: 20px;
  }

  .contact-container {
    padding: 40px 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .submit-btn {
    width: 100%;
    padding: 18px 30px;
  }
}

/* blog */
.blog-section {
  padding: 60px 0;
}

.blog-card {
  background: #f0f0f088;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Image Container */
.blog-image-wrapper {
  position: relative;
  height: 213px;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover img {
  transform: scale(1.1);
}

/* Blog Content */
.blog-content {
  padding: 0px 15px 40px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  min-height: 40px;
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

.blog-excerpt {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  min-height: 67px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fourty);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.blog-card .read-more:hover {
  gap: 15px;
  color: var(--primary);
}

.blog-card .read-more i {
  transition: transform 0.3s ease;
}

.blog-card .read-more:hover i {
  transform: translateX(5px);
}

.blog-section .more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(15px, 2vw, 30px);

  a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border-radius: 999px;
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    color: var(--color-2);
    border: none;
    cursor: pointer;
    position: relative;
    background-color: var(--primary);
    text-decoration: none;
    overflow: hidden;
    width: fit-content;
    z-index: 1;
    font-family: inherit;
    box-shadow: 0 10px 22px rgba(5, 27, 52, 0.4);
    transition:
      background-color 0.25s ease,
      box-shadow 0.25s ease,
      transform 0.25s ease,
      color 0.25s ease;

    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.12);
      transform: translateX(-100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: -1;
    }

    &:hover {
      color: var(--color-2);
      background-color: #0b2a4f;

      &::before {
        transform: translateX(0);
      }
    }

    &:active {
      /* Klik effekti */
      transform: scale(0.98);
    }
  }
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-image-wrapper {
    height: 200px;
  }

  .blog-swiper .swiper-button-next,
  .blog-swiper .swiper-button-prev {
    display: none;
  }
}

/* footer */

/* Close */
.btn:hover {
  color: var(--color-2);
  background: var(--secondary);
  box-shadow: 0 10px 22px rgba(57, 87, 255, 0.35);
  transform: translateY(-1px);
}
.static-text li::marker {
  color: var(--primary);
}
.footer-cta img {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.footer-cta .icons svg path {
  fill: #fff;
}
.icons svg {
  width: 16px;
  height: 16px;
}

.icons svg path {
  fill: #3b3c3d;
}
.icons a {
  padding: 8px;
  border: 1px solid #e4e8edaf;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--br-s);
  transition: 0.4s ease;
}
.icons a:hover {
  border-color: #fff;
}
.icons {
  display: flex;
  gap: 10px;
}
.footer-cta div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn {
  color: var(--fourty);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  vertical-align: top;
  padding-top: 17px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-left: 20px;
  position: relative;
  text-decoration-line: none;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  transition-property: all;
  transition-duration: 600ms;
  transition-delay: 0ms;
  transition-timing-function: ease;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  flex-shrink: 1;
  background-color: #ffffff;
  min-height: auto;
  background-image: none;
  background-repeat: repeat;
  background-position: 0 0;
  background-size: auto;
  background-attachment: scroll;
  margin-top: 0px;
  margin-bottom: 0px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  justify-content: center;
  min-width: 200px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

/* content */

/* Кнопка "Получить консультацию" в блоке НАША КОМАНДА */

:is(footer, .contact_wrapper) .socialContainer {
  border-radius: 12px;
}

.Tabs_button__F1b7d:focus-visible {
  color: #121214;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :first-child {
  color: #4f4e57;
  background-color: #dae3e3;
}

.Tabs_button__F1b7d:focus-visible .Tabs_wrapper__2b_4x > :nth-child(2) {
  color: var(--color-green);
  background-color: #eaedf6;
}

@supports not selector(:focus-visible) {
}

.switch:has(.circle:checked) {
  background: var(--color-offwhite);
}

.switch:has(.circle:checked) > .sun {
  opacity: 1;
}

.switch:has(.circle:checked) > .moon {
  opacity: 0;
}
.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

/* Right Card - Contact Center */

.text-styles ul li::marker {
  color: #92b33d;
}

.page-catalog2-main-list-item-ava-list:focus-visible {
  outline: none;
}

.quote-form-submit:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.mapboxgl-ctrl button:not(:disabled):hover {
  background-color: rgb(0 0 0/5%);
}

.mapboxgl-ctrl-group button:focus:focus-visible {
  box-shadow: 0 0 2px 2px #0096ff;
}

.mapboxgl-ctrl-group button:focus:not(:focus-visible) {
  box-shadow: none;
}

.phone-input:has(input:focus) {
  border-color: #006525;
}

/* FIXED SVG SIZE */
.footer {
  padding: 60px 0 20px 0;
  background: #f3f3f3;
  border-radius: 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}

.footer-col a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--secondary);
}

.footer-cta {
  background-color: var(--primary);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  height: 90px;
  border-radius: 24px !important;
  padding: 0 30px;
  margin-bottom: 20px;
}

.location {
  display: flex;
  gap: 8px;
  color: #fff;
  margin-left: 30px;
  margin-right: 10px;
}
.location svg {
  width: 18px;
  height: 18px;
  g {
    path {
      fill: var(--color-2) !important;
    }
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.footer-bottom > a:hover {
  color: var(--secondary);
}
.footer-bottom > a {
  transition: 0.4s ease;
  color: var(--fourty);
}
.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-up {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(5, 27, 52, 0.4);
}

.footer-up:hover {
  transform: translateY(-2px);
  background: #0b2a4f;
  box-shadow: 0 12px 26px rgba(5, 27, 52, 0.55);
}

.footer-bottom p {
  font-size: 14px;
  color: #444;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  footer .location {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-cta .icons {
    display: none;
  }
  .footer-cta {
    flex-direction: column;
    gap: 4px;
    padding: 9px 30px;
    height: 110px;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .btn {
    padding-top: 13px;
    padding-right: 15px;
    padding-bottom: 13px;
    padding-left: 15px;
    font-size: 13px;
  }
  .footer-cta img {
    width: 200px;
    height: auto;
    object-fit: contain;
  }
}

/* sticky */
.sticky_icon_wrapper {
  display: block;
  position: absolute;
  z-index: 200;
}
#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 0;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 60px;
  width: 60px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(5, 27, 52, 0.2);
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 #051b345a;
  }

  100% {
    box-shadow: 0 0 0 15px #051b341b;
  }
}
#main-button ~ .onlineregistration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  visibility: hidden;
  font-weight: bold;
  text-decoration: none;
  height: 50px;
  padding: 0 25px;
  color: #fff;
  border: 1px solid var(--blue);
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: -1;
  right: 10px !important;
  bottom: 10px !important;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  font-size: 14px;
}

#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#main-button ~ .wrappericon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: -1;
  height: 55px;
  width: 55px;
  opacity: 0;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#main-button ~ .wrapper_icon_messenger {
  width: fit-content;
  height: fit-content;
  box-shadow: unset;
  border-radius: unset;
}
#main-button.open .icon-mail {
  display: none;
}
.open {
  animation-iteration-count: 1;
}
#main-button.open .icon-close {
  display: block;
}
#main-button .icon-close {
  display: none;
}
#main-button.open ~ .onlineregistration {
  visibility: visible;
  right: 80px !important;
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
  background: #fff;
  color: black;
}
#main-button.open ~ #wrapper_messenger {
  bottom: 82px;
  right: 15px;
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ #wrappertg {
  bottom: 150px;
  background: linear-gradient(0deg, #017ab1, #01abe6) !important;
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ #wrappermail {
  bottom: 220px;
  background: #2196f3;
}
#main-button.open ~ #wrapper_whatsapp {
  bottom: 290px;
  background: lab(70.5521% -66.5147 45.8073);
}

#main-button.open ~ .wrappericon {
  opacity: 1;
  transition: 0.4s all cubic-bezier(0, 0.01, 0, 1.27);
}

/* navigation */
.navigation_header {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 230px 0 110px;
  min-height: 250px;
  background-image: url(/assets/img/55684.jpg);

  &:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #333333;
    opacity: 0.8;
    content: "";
  }
  .title-outer {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    .title {
      font-size: 35px;
      color: #ffffff;
      margin-bottom: 17px;
    }
    .page-breadcrumb {
      position: relative;
      margin-top: 5px;
      li {
        position: relative;
        display: inline-block;
        margin-right: 12px;
        padding-right: 13px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        a {
          color: currentColor;
        }
        &:last-child {
          padding-right: 0px;
          margin-right: 0px;
          &:after {
            content: "";
          }
        }
        &:after {
          position: absolute;
          content: "/";
          right: -6px;
          top: 1px;
          color: #ffffff;
          font-size: 14px;
          font-weight: 900;
          font-family: "Font Awesome 5 Free";
          color: #ffffff;
        }
      }
    }
  }
}
.blog_page_section {
  padding: 50px 0;
  .blog_page_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    @media screen and (min-width: 576px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (min-width: 992px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
.services_page_section {
  padding: 50px 0;
  .services_page_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    @media screen and (min-width: 576px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (min-width: 992px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
.projects_page_section {
  padding: 50px 0;
  .projects_page_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    @media screen and (min-width: 576px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media screen and (min-width: 992px) {
      grid-template-columns: repeat(3, 1fr);
    }
  }
}

/* blog detail */
.detail_section_one {
  padding: 80px 0;
  .detail_section_one_wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    .content_area {
      display: flex;
      flex-direction: column;
      row-gap: 20px;

      .blog_inner__headline {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.2;
        color: #000;
        margin: 0 0 16px 0;
      }
      img {
        width: 100%;
        aspect-ratio: 16/9;
        border-radius: 24px;
        display: block;
        object-fit: cover;
      }
      .detail_section_one_inner {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 14px;
        strong {
          color: #888;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          font-weight: 600;
        }
        time {
          color: #888;
        }
      }

      .detail_section_one_inner_content {
        line-height: 1.8;
        font-size: 16px;
        color: #000;
      }
    }
    .detail_section_one_inner_sidebar {
      position: relative;
      .detail_section_one_inner_sidebar_title {
        font-size: 24px;
        font-weight: 700;
        color: #000;
        margin: 0 0 30px 0;
        padding-bottom: 16px;
        border-bottom: 1px solid #333;
      }
      .detail_section_one_inner_related_list {
        counter-reset: news-counter;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        position: relative;
        padding-left: 50px;
        &:before {
          content: "";
          position: absolute;
          left: 11px;
          top: 0;
          bottom: 0;
          width: 1px;
          background: #555;
          z-index: 1;
        }
        .detail_section_one_inner_related_item {
          counter-increment: news-counter;
          padding: 20px 0 24px;
          position: relative;
          display: flex;
          align-items: flex-start;
          gap: 16px;
          &::first-child {
            padding-top: 0;
            .detail_section_one_inner_related_number {
              top: 0;
            }
          }
          .detail_section_one_inner_related_number {
            position: absolute;
            left: -50px;
            top: 24px;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            background: #1a1a1a;
            z-index: 2;
            text-align: center;
            line-height: 1;
            &::before {
              content: counter(news-counter);
            }
          }
          .detail_section_one_inner_related_content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;

            .blog_inner__news_meta {
              display: flex;
              align-items: center;
              gap: 8px;
              .blog_inner__news_time {
                font-size: 14px;
                color: #888;
                font-weight: 500;
              }
            }
            .detail_section_one_inner_related_link {
              font-size: 15px;
              line-height: 1.5;
              color: #000;
              text-decoration: none;
              display: block;
              transition: color 0.3s;
              &:hover {
                text-decoration: underline;
              }
            }
          }
        }
      }
    }
    @media screen and (min-width: 1024px) {
      grid-template-columns: repeat(12, 1fr);
      gap: 60px;
      .content_area {
        grid-column: span 8;
        row-gap: 25px;
        .blog_inner__headline {
          font-size: 42px;
        }
        img {
          aspect-ratio: unset;
          height: 500px;
        }
      }

      .detail_section_one_inner_sidebar {
        grid-column: span 4;
        position: sticky;
        height: fit-content;
        top: 40px;
      }
    }
  }
}

/* projectsdetail */
.projects_detail_section {
  padding: 40px 0;
}
.projects_detail_heading_content {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.projects_detail_heading_content h1 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 30px;
}
.projects_detail_heading_content article {
  font-size: 16px;
  line-height: 1.5;
  color: var(--primary);
  opacity: 0.8;
}
.projects_detail_content {
  display: flex;
  margin-bottom: 40px;
  flex-direction: column;
}
.projects_detail_content:last-child {
  margin-bottom: 0;
}
.projects_detail_content h2 {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 20px;
}
.projects_detail_content article {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: var(--primary);
  opacity: 0.8;
}
.projects_detail_content article p a {
  color: var(--secondary);
}
.projects_detail_gallery_section {
  display: flex;
  flex-direction: column;
}
.projects_detail_gallery_section h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: bold;
}
.projects_detail_gallery_section .gallery {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  overflow-x: auto;
}
.projects_detail_gallery_section .gallery::-webkit-scrollbar {
  display: none;
}

.projects_detail_gallery_section .gallery li {
  width: 200px;
  height: 200px;
  position: relative;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
.projects_detail_gallery_section .gallery li::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  display: block;
  height: 100%;
  transition: 0.3s ease-in-out;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
}
.projects_detail_gallery_section .gallery li:hover::after {
  opacity: 1;
}
.projects_detail_gallery_section .gallery li:hover img {
  transform: scale(1.05);
}
.projects_detail_gallery_section .gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 992px) {
  .projects_detail_section {
    padding: 80px 0;
  }
  .projects_detail_heading_content h1 {
    font-size: 42px;
  }
  .projects_detail_gallery_section .gallery li {
    width: 300px;
    height: 300px;
  }
  .projects_detail_content h2 {
    font-size: 36px;
  }
}

/* services detail*/
.services_detail_section {
  padding: 40px 0;
}
.services_detail_wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 40px;
  row-gap: 20px;
}
.services_detail_navigation {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.services_nav_list {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}
.services_nav_list li {
  opacity: 0;
  transform: translateX(-18px);
  animation: slideIn 0.45s ease forwards;
}
.services_nav_list li:nth-child(1) {
  animation-delay: 0.05s;
}
.services_nav_list li:nth-child(2) {
  animation-delay: 0.1s;
}
.services_nav_list li:nth-child(3) {
  animation-delay: 0.15s;
}
.services_nav_list li:nth-child(4) {
  animation-delay: 0.2s;
}
.services_nav_list li:nth-child(5) {
  animation-delay: 0.25s;
}
.services_nav_list li:nth-child(6) {
  animation-delay: 0.3s;
}
.services_nav_list li:nth-child(7) {
  animation-delay: 0.35s;
}
.services_nav_list li:nth-child(8) {
  animation-delay: 0.4s;
}
.services_nav_list li:nth-child(9) {
  animation-delay: 0.45s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.services_nav_list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #1a2d4d;
  background: #f0f4f8;
  border-left: 3px solid transparent;
  border-radius: 6px;
  text-decoration: none;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    transform 0.22s ease;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.services_nav_list li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 95, 165, 0.08) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.28s ease;
}
.services_nav_list li a:hover {
  background: #e0eaf5;
  border-left-color: #185fa5;
  color: #185fa5;
}
.services_nav_list li a:hover::after {
  opacity: 1;
}
.services_nav_list li a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b5d4f4;
  flex-shrink: 0;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
}
.services_nav_list li a:hover .dot {
  background: #185fa5;
  transform: scale(1.5);
}

.contact-card {
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.5s ease 0.55s forwards;
  box-shadow: 0 2px 16px rgba(24, 95, 165, 0.13);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-top {
  background: linear-gradient(135deg, #185fa5 0%, #0c447c 100%);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.avatar-wrap {
  position: relative;
}
.avatar-wrap figure {
  width: 72px;
  height: 72px;
  padding: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.35);
  display: block;
}
.avatar-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.avatar-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.12);
    opacity: 0;
  }
}

.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #e6f1fb;
  letter-spacing: 0.3px;
  text-align: center;
}

.contact-bottom {
  background: #0c447c;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
  letter-spacing: 0.3px;
}

.phone-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.03);
}

.phone-icon {
  width: 15px;
  height: 15px;
  fill: #b5d4f4;
  flex-shrink: 0;
}

.icons-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.18);
}

.icon-btn svg {
  width: 16px;
  height: 16px;
  fill: #e6f1fb;
  display: block;
}
.services_detail_content h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--primary);
}
.services_detail_content article {
  font-weight: normal;
  color: var(--primary);
  opacity: 0.8;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 40px;
}
.services_detail_content figure {
  height: auto;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
}
.services_detail_content figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  max-height: 400px;
}
.services_detail_content figure::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.services_detail_content article :is(ol, ul) {
  padding-left: 20px;
}
.services_detail_content article :is(ol, ul) li {
  margin-bottom: 8px;
  list-style: disc;
}

.services_detail_content :is(h2, h3) {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  opacity: 1;
  margin-bottom: 20px;
}
.services_detail_content article a {
  color: var(--secondary);
  font-weight: 500;
  opacity: 1;
}
.services_detail_content article p:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .services_detail_section {
    padding: 80px 0;
  }
  .services_detail_navigation {
    grid-column: span 3;
    position: sticky;
    top: 20px;
    height: fit-content;
    transition: 0.3s ease-in-out;
  }
  .services_detail_content :is(h2, h3) {
    font-size: 36px;
  }
  .services_detail_wrapper {
    grid-template-columns: repeat(12, 1fr);
  }
  .services_detail_content {
    grid-column: span 9;
  }
  .services_detail_content h1 {
    font-size: 42px;
  }
}

/* equipment */
.equipment_page_section {
  padding: 80px 0;
}
.equipment_page_wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}

.equipment_card {
  position: relative;
  border-radius: 20px;
  height: 400px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 20px;
}
.equipment_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  inset: 0;
  transition: 0.3s ease-in-out;
  display: block;
}
.equipment_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: block;
  width: 100%;
  transition: 0.3s ease-in-out;
  height: 100%;
}
.equipment_card:hover img {
  transform: scale(1.05);
}
.equipment_card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.equipment_card article {
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 10px;
  position: relative;
  opacity: 0;
  position: relative;
  z-index: 2;
  background: white;
  padding: 10px 40px 10px 10px;
  transform: translateY(200%);
  transition: 0.3s ease-in-out;
}
.equipment_card article strong {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
}
.equipment_card article span {
  position: absolute;
  background: var(--secondary);
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  top: -20px;
  color: white;
  border-radius: 50%;
}
.equipment_card article span:hover {
  color: var(--primary);
  background: white;
}
.equipment_card:hover article {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 576px) {
  .equipment_page_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .equipment_page_wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* price section */
.price_section {
  padding: 80px 0;
}

/* contact */
.contact_form_section {
  padding: 40px 0;
}
.cf-wrap {
  font-family: "Montserrat", sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f4f4;
  min-height: 520px;
}

/* ── Sol tərəf ── */
.cf-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f4f4f4;
}

.cf-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.cf-badge-stripes {
  display: flex;
  gap: 3px;
}
.cf-stripe {
  width: 18px;
  height: 10px;
  background: var(--primary);
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}
.cf-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-transform: uppercase;
}

.cf-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cf-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.cf-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.cf-input:focus {
  border-color: var(--primary);
}
.cf-input::placeholder {
  color: #aaa;
}

.cf-phone-input {
  flex: 1;
  padding: 13px 14px;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #111;
  background: transparent;
}
.cf-phone-input::placeholder {
  color: #aaa;
}

.cf-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  color: #111;
  background: #fff;
  outline: none;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.2s;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.cf-textarea:focus {
  border-color: var(--primary);
}
.cf-textarea::placeholder {
  color: #aaa;
}

.cf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--primary);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-2);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  width: fit-content;
}
.cf-btn:hover {
  background: var(--secondary);
  transform: scale(1.03);
}

/* ── Sağ tərəf ── */
.cf-right {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #222;
}

.cf-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.55);
  position: absolute;
  inset: 0;
}

.cf-social-bar {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cf-social-icons {
  display: flex;
  align-items: center;
}

.cf-soc {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cf-soc:hover {
  background: var(--secondary);
  opacity: 0.8;
  color: white;
}
.cf-soc:nth-child(2) {
  transform: translateX(-10px);
}
.cf-soc:nth-child(3) {
  transform: translateX(-15px);
}
.cf-soc:nth-child(4) {
  transform: translateX(-20px);
}
.cf-soc:nth-child(5) {
  transform: translateX(-25px);
}
.ci-section {
  background: #f0f0f0;
  padding: 60px 40px;
}

.ci-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
}

.ci-card {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 14px;
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ci-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.ci-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  color: white;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-title {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.ci-value {
  font-size: 13px;
  color: #888;
  margin: 0;
  text-align: center;
}
.ci-value:hover {
  color: var(--primary);
}
.map_section {
  padding: 40px 0;
}
#map {
  height: 400px;
}
@media (max-width: 640px) {
  .ci-grid {
    grid-template-columns: 1fr;
  }
  .ci-section {
    padding: 40px 20px;
  }
}
/* ── Responsive ── */
@media (max-width: 768px) {
  .cf-wrap {
    grid-template-columns: 1fr;
  }
  .cf-right {
    min-height: 280px;
  }
  .cf-left {
    padding: 32px 24px;
  }
  .cf-title {
    font-size: 26px;
  }
}

/* partner section */
.partner-section {
  padding: 60px 0;
}
.partner-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.partner-card {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #ddd;
}
.partner-card img {
  border-radius: 8px;
  max-height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
}
.partner-card article {
  border-radius: 8px;
  padding: 20px;
  min-height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
}
.partner-card article h3 {
  color: var(--primary);
  font-weight: bold;
  line-height: 20px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 40px;
    place-content: center;
}

@media screen and (min-width: 576px) {
  .partner-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .partner-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
