@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --blue-1: #075384;
  --blue-2: #0098cc;
  --br: 15px;
}
* {
  font-family: "Montserrat", sans-serif !important;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar {
  background-color: #dfdede;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    height 0.4s ease,
    padding 0.4s ease;
}

.top-left {
  display: flex;
  gap: 20px;
  color: #555;
}

.top-left a {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #000;
}
.top-left span {
  opacity: 0.7;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-right a:first-child {
  margin-right: 5px;
}
.top-right a:hover svg path {
  fill: var(--blue-2);
}
.top-right a:hover svg path {
  transition: 0.4s ease;
}
/* BUTTON */
.btn {
  background: var(--blue-2);
  color: #fff;
  padding: 18px 20px;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: var(--blue-1);
}

/* HEADER */
.header {
  background: #fff;
  padding: 15px 40px 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.3s ease;
}
header .container {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  max-width: 1260px;
  padding: 0;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}
header {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

/* Состояние шапки при скролле */
header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

header.header-scrolled .header {
  padding-top: 6px;
  /* padding-bottom: 4px; */
}

header.header-scrolled .logo {
  transform: scale(0.9);
}

/* Верхняя плашка остаётся видимой, только плавно двигается вместе с шапкой */
/* LOGO IMAGE */
.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.logo {
  width: 180px;
  transition: transform 0.3s ease;
}
/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 13px;
  position: relative;
  transition: 0.4s ease;
}
.nav a::after {
  content: "/";
  opacity: 0.4;
  position: absolute;
  right: -15px;
}
.nav a:last-child::after {
  content: "";
}
.nav a:hover {
  color: var(--blue-2);
}

/* ACTIVE */
.nav a.active::before {
  content: "";
  position: absolute;
  bottom: -39px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue-2);
}
.banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 🔥 ƏSAS FIX */
  position: relative;
  overflow: hidden;
}

/* IMAGE */
.banner img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* overlay (pro kimi görünüş üçün) */
.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, #fff 60%, rgba(255, 255, 255, 0));
  z-index: 1;
}

/* CONTAINER */
.banner .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* CONTENT */
.banner-content {
  max-width: 600px;
  text-align: left;
  margin-top: 138px;
}

/* TITLE */
.banner h1 p {
  font-size: 60px;
  line-height: 1.2;
}

.banner h1 span {
  color: var(--blue-2);
  display: block;
  font-weight: 700;
}

.banner h1 strong {
  color: #000;
  display: block;
  font-weight: 700;
}

/* TEXT */
.banner p {
  margin-top: 20px;
  font-size: 21px;
  color: #000;
  max-width: 700px;
}

/* BUTTONS */
.buttons {
  margin-top: 35px;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

/* BUTTON */
.btn {
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary {
  background: var(--blue-2);
  color: #fff;
  padding: 32px 40px;
  border-radius: 50px;
  width: 230px;
  text-align: center;
}

.btn-primary:hover {
  background: var(--blue-1);
}

.btn-secondary {
  background: #eaeaea;
  color: #333;
  padding: 32px 40px;
  border-radius: 50px;
  width: 230px;
  text-align: center;
}

.btn-secondary:hover {
  background: #dcdcdc;
}
.services {
  padding: 60px 0;
}
.services_cards {
  padding: 40px 0 80px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: var(--br);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.7s;
}

/* IMAGE */
.card-img {
  position: relative;
}

.card-img > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: brightness(0.6);
}

/* ICON */
.card-icon {
  position: absolute;
  bottom: -25px;
  right: 25px;
  padding: 8px;
  background: var(--blue-2);
  border-radius: var(--br);
}

.card-icon img {
  width: 44px;
  height: 44px;
  border-radius: var(--br);
  object-fit: contain;
}

/* BODY */
.card-body {
  padding: 40px 25px 30px;
}

.card-body h3 {
  font-size: 23px;
  margin-bottom: 15px;
}

.card-body p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* BUTTON */
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  transition: 0.7s ease;
}

.card-btn span {
  font-size: 20px;
  border-left: 1px solid #ccc;
  padding-left: 8px;
}

.card:hover .card-btn,
.blog_card:hover .card-btn {
  border-color: var(--blue-2);
  background: var(--blue-2);
  color: #fff;
}
.card-btn:hover {
  border-color: var(--blue-2);
  background: var(--blue-2);
  color: #fff;
}
.card-btn:hover svg rect,
.card-btn:hover svg path {
  fill: #fff;
}
.card-btn svg rect,
.card-btn svg path {
  transition: 0.4s ease;
}
/* FIRST CARD ACTIVE */
.card-btn.primary {
  background: var(--blue-2);
  color: #fff;
  border: none;
}

.card-btn.primary:hover {
  background: var(--blue-1);
}

.work_steps {
  padding: 0 0 80px;
}

/* GRID */
.work_steps_wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

/* 🔥 LEFT FULL BACKGROUND */
.work_steps_left {
  background: var(--blue-2);
  display: flex;
  align-items: center;
  border-top-right-radius: var(--br);
  border-bottom-right-radius: var(--br);
}

/* CONTENT (container içində) */
.work_steps_content {
  color: #fff;
  padding: 80px 0;
  max-width: 600px;
}

/* TEXT */
.work_steps_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.work_steps_content h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.work_steps_desc {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* STEPS */
.work_steps_list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.work_step {
  display: flex;
  gap: 18px;
  position: relative;
}

.work_step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.5);
}

/* NUMBER */
.work_step_num {
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--blue-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;

  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
}

/* TEXT */
.work_step_text strong {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.work_step_text p {
  font-size: 14px;
  opacity: 0.9;
}

/* RIGHT IMAGE */
.work_steps_right {
  height: 80%;
}

.work_steps_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog {
  padding: 60px 0;
}

/* SWIPER GAP */
.blogSwiper .swiper-slide {
  height: auto;
}

/* CARD */
.blog_card {
  background: #fff;
  border-radius: var(--br);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

/* IMAGE */
.blog_img {
  position: relative;
}

.blog_img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* DATE */
.blog_date {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--blue-2);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

/* BODY */
.blog_body {
  padding: 25px;
}

.blog_cat {
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.blog_body h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* BUTTON */
.blog_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  transition: 0.3s;
}

.blog_btn span {
  font-size: 18px;
}

.blog_btn:hover {
  border-color: var(--blue-2);
  color: var(--blue-2);
}

.footer {
  position: relative;
  color: #fff;
  padding-top: 80px;

  background: url("https://www.themelooks.biz/demo/repserv/html/preview/assets/img/bg/footer-bg2.png")
    center/cover no-repeat;
}

/* 🔥 OVERLAY */
.footer_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 152, 204, 0.9); /* #0098cc açıq overlay */
}

/* CONTENT */
.footer .container {
  position: relative;
  z-index: 2;
}

.footer_wrap {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 80px;
}

/* COL */
.footer_col h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}
.footer_col h4::after {
  width: 2px;
  height: 20px;
  position: absolute;
  left: -10px;
  background-color: #fff;
  top: 0;
  content: "";
}
.footer_col p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}
ul li,
ul {
  list-style: disc;
}
/* LOGO */
.footer_logo img {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

/* SOCIAL */
.footer_social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
.footer_social img {
  width: 100%;
}

.footer_social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer_social a:hover {
  background: #fff;
  color: var(--blue-2);
}

.footer_col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* TIME */
.footer_time li {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

footer form button span {
  font-size: 20px;
  border-left: 1px solid #ccccccae;
  padding-left: 8px;
  margin-left: 5px;
}
/* FORM */
.footer_form {
  display: flex;
  margin-top: 15px;
}
.footer-bottom {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 0;
  position: relative;
  border-top: 0.5px solid #ccc;
  z-index: 10;
}
.swiper-horizontal {
  padding: 10px !important;
}
.footer-bottom > a:hover {
  color: var(--blue-2);
}
.footer-bottom > a {
  transition: 0.4s ease;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}
.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  font-size: 16px;
  color: #fff;
}
.footer_form input {
  flex: 1;
  padding: 12px;
  border: none;
  outline: none;
}

.footer_form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
}

/* SMALL */
.footer_col small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

/* BOTTOM */
.footer_bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer_bottom_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_links {
  display: flex;
  gap: 20px;
}

.footer_links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.about {
  padding: 60px 0 60px;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.about-images {
  display: flex;
  gap: 20px;
}

.about-img {
  width: 100%;
  height: 300px;
  max-height: 300px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
.about-img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.17);
}

.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #6f6f6f;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--blue-2);
  border-radius: 50%;
}

.about-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 30px;
  color: #222;
}

.about-text-block {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.accent-line {
  width: 15px;
  background: var(--blue-2);
  border-radius: 3px;
}

.about-text-block p {
  font-size: 16px;
  color: #555;
  line-height: 1.2;
}

.about-text {
  font-size: 16px;
  color: #666;
  line-height: 1.2;
}

.about-footer {
  margin-top: 20px;
  text-align: left;
  font-size: 16px;
  color: #6b6b6b;
}

html {
  scroll-behavior: smooth;
}
.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);
    }
  }
}

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

.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:not(:focus-visible) {
  box-shadow: none;
}

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

.services_detail_content article :is(ol, ul),
.detail_section_one_inner_content :is(ul, ol) {
  padding-left: 20px;
}
.services_detail_content :is(h2, h3) {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  opacity: 1;
  margin-bottom: 20px;
}

:root {
  --primary: #1a4d7e;
  --primary-hover: #17a9da;
  --secondary: #075384;
  --tertiary: #8f8f8f;
  --fourty: #4a5568;

  --white: #ffffff;
  --border: #e4e6ed;
}

.projects_section {
  padding: 60px 0;
  @media screen and (min-width: 992px) {
    margin-top: 60px;
  }

  .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: var(--br);
  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: #fff;
    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: #fff;
      line-height: 1.2;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
    }
    p {
      color: #fff;
      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;
    }
  }
}

: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:not(:focus-visible) {
  box-shadow: none;
}

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

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

/* Right Card - Contact Center */

.text-styles ul li::marker {
  color: #92b33d;
}
.projects_card article strong {
  text-decoration: none !important;
  border-bottom: none !important;
}
.page-catalog2-main-list-item-ava-list:focus-visible {
  outline: none;
}
a,
strong {
  text-decoration: 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:not(:focus-visible) {
  box-shadow: none;
}

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

.services_detail_content article :is(ol, ul),
.detail_section_one_inner_content :is(ul, ol) {
  padding-left: 20px;
}
.services_detail_content :is(h2, h3) {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  opacity: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .services_detail_content :is(h2, h3) {
    font-size: 36px;
  }
}

.more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;

  a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border-radius: var(--br);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    background-color: var(--blue-2);
    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: #fff;
      background-color: var(--primary-hover);

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

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

.contact-section {
  padding: 60px 0;
  position: relative;
  border-radius: 28px;
  margin: 0 auto 30px;
  overflow: hidden;
  min-height: 460px;
  max-width: 95%;
  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: #fff;
  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;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.cf_content {
  color: #fff;
}
.cf_content a {
  color: #fff;
  text-decoration: underline;
}
.form-input {
  width: 100%;
  background: transparent;
  border: none;

  padding: 12px 12px 12px 38px;
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

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

.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:active {
  transform: translateY(0);
}
.page_header {
  position: relative;
  padding: 180px 0 0 0;
  overflow: hidden;
}

/* BG */
.page_header_bg {
  position: absolute;
  inset: 0;
  background: url("https://www.themelooks.biz/demo/repserv/html/preview/assets/img/bg/page-title-bg.png")
    center/cover no-repeat;
  z-index: 1;
}

/* OVERLAY */
.page_header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 83, 132, 0.85);
  z-index: 2;
}
.breadcrumb a {
  color: #fff;
  position: relative;
  z-index: 10;
}
/* TITLE */
.page_title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 56px;
  font-weight: 700;
}

/* BREADCRUMB WRAP */
.breadcrumb_wrap {
  position: relative;
  z-index: 4;
  margin-top: 40px;
}

/* BREADCRUMB */
.breadcrumb {
  margin-left: auto; /* 🔥 sağa atır */

  background: var(--blue-2);
  color: #fff;

  padding: 25px 40px;
  border-top-left-radius: 50px;

  font-size: 14px;
  display: flex;
  gap: 6px;

  width: 450px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.breadcrumb::before {
  width: 1000%;
  height: 72px;
  left: -12px;
  bottom: 0;
  border: 1px solid #fff;
  border-right: 0px;
  border-bottom: 0;
  position: absolute;
  content: "";
  border-radius: 60px 0 0 0;
}
.container.breadcrumb_wrap {
  padding: 0;
  max-width: 100%;
}
.contact_section {
  padding: 60px 0;
}

.contact_wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* LEFT FORM */
.contact_form {
  background: #eee;
  padding: 40px;
  border-radius: var(--br);
}

.contact_form h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #222;
}

.form_row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 14px;
  outline: none;
}
.select_wrapper {
  position: relative;
  width: 100%;
}

/* SELECT RESET */
.select_wrapper select {
  width: 100%;
  padding: 16px 50px 16px 16px; /* sağdan boşluq SVG üçün */
  border: 1px solid #ddd;
  background: #f9f9f9;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 14px;
  cursor: pointer;
}

/* SVG */
.select_arrow {
  position: absolute;
  right: 16px; /* paddingdən sonra tam yapışır */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* hover effekt */
.select_wrapper:hover .select_arrow path {
  stroke: var(--blue-2);
}
.blog-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 25px;
}
.contact_form textarea {
  height: 140px;
  resize: none;
  margin-bottom: 20px;
}

/* BUTTON */
.btn-outline {
  padding: 14px 28px;
  border: 2px solid #222;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--blue-2);
  color: #fff;
  border-color: var(--blue-2);
}

/* RIGHT BLOCK */
.contact_hours {
  background: var(--blue-2);
  color: #fff;
  padding: 40px;
  border-radius: var(--br);
}

.contact_hours h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

/* LIST */
.contact_hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact_hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  font-size: 15px;
}

.contact_hours li:last-child {
  border-bottom: none;
}
.blog_inner {
  padding: 60px 0;
}
.breadcrumb span,
.page_title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* GRID */
.blog_inner_wrap {
  display: grid;
  grid-template-columns: 2fr 0.7fr;
  gap: 50px;
}

/* IMAGE */
.blog_image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
}

/* META */
.blog_meta {
  margin-top: 25px;
  font-size: 14px;
  color: #555;
}

/* TITLE */
.blog_title {
  margin-top: 20px;
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

/* TEXT */
.blog_content p {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* SIDEBAR */
.sidebar_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* ITEM */
.sidebar_item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.sidebar_item img {
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar_item p {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin-top: 5px;
}

.sidebar_date {
  font-size: 12px;
  color: var(--blue-2);
}
:root {
  --primary: #1a4d7e;
  --primary-hover: #2563a8;
  --color-2: #fafbfc;
  --secondary: #3957ff;
  --tertiary: #8f8f8f;
  --fourty: #4a5568;

  --white: #ffffff;
  --border: #e4e6ed;
  --radius-lg: 14px;
  --radius-md: 8px;
}

.services_detail_section {
  padding: 60px 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_detail_navigation {
  order: 2;
}
.services_detail_content {
  order: 1;
}
.services_nav_list {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
}
.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;
}

@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;

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

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

.icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.icon-btn.whatsapp,
.icon-btn.telegram,
.icon-btn.business {
  width: fit-content;
  height: fit-content;
}
.icon-btn.email {
  border-radius: 50%;
  background: #2196f3;
}
.icon-btn.business img {
  border-radius: 50%;
}
.icon-btn.whatsapp svg,
.icon-btn.telegram svg,
.icon-btn.business img {
  width: 38px;
  height: 38px;
}
.icon-btn:hover {
  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;
}
.services_detail_content figure {
  height: auto;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
  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),
.detail_section_one_inner_content :is(ul, ol) {
  padding-left: 20px;
}
.services_detail_content article ul li {
  margin-bottom: 8px;
  list-style: disc;
}
.services_detail_content article ol li {
  margin-bottom: 8px;
  list-style: decimal;
}
.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;
}

:root {
  --primary: #1a4d7e;
  --primary-hover: #2563a8;
  --color-2: #fafbfc;
  --secondary: #3957ff;
  --tertiary: #8f8f8f;
  --fourty: #4a5568;

  --white: #ffffff;
  --border: #e4e6ed;
  --radius-lg: 14px;
  --radius-md: 8px;
}

.advantages_section {
  padding-bottom: 60px;
  margin-top: 80px;
}

.services_detail_content article :is(ol, ul),
.detail_section_one_inner_content :is(ul, ol) {
  padding-left: 20px;
}
.services_detail_content :is(h2, h3) {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  opacity: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .services_detail_content :is(h2, h3) {
    font-size: 36px;
  }
}

.about_page {
  padding: 60px 0;
}
.about_wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.about_content h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--primary);
}
.about_content article {
  font-size: 16px;
  line-height: 1.7;
  color: var(--primary);
  opacity: 0.8;
}
.about_img {
  width: 100%;
}
.about_img img {
  object-fit: cover;
  width: 100%;
  border-radius: 24px;
  max-height: 450px;
  height: 100%;
}

/* adv */
.advantages_section {
  padding-bottom: 60px 0;
}
.advantages_wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  counter-reset: headings;
}

.advantages_card {
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-width: auto;
  max-width: 100%;
  padding-left: 35px;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-right: 35px;
  background-color: #f2f2f2;
  margin-right: 5px;
  margin-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  justify-content: center;
  border-radius: 50px;
}
.advantages_card figure {
  background: var(--primary);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
}
.advantages_card figure span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 16px;
  position: absolute;
  background-color: #fff;
  position: absolute;
  right: -20px;
  color: var(--primary);
  font-weight: normal;
}
.advantages_card figure img {
  width: 40px;
  height: 40px;
  filter: invert(1);
}
.advantages_card.active figure img {
  filter: unset;
}

.advantages_card article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  row-gap: 10px;
}
.advantages_card article strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 24px;
  width: 100%;
  text-overflow: ellipsis;
  word-break: break-word;
  color: var(--primary);
}
.advantages_card article p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--primary);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.advantages_card figure span:before {
  counter-increment: headings;
  content: "0" counter(headings);
  font-weight: bold;
}
.advantages_card.active article strong {
  color: white;
}
.advantages_card.active figure {
  background: #f2f2f2;
}
.advantages_card.active article p {
  color: #fff;
}

.advantages_card.active {
  background-color: var(--primary);
  box-shadow: inset 0px 10px 25px 0px #ffffff5c;
}
/* MODAL BASE */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

/* ACTIVE */
.modal.active {
  display: block;
}

/* OVERLAY */
.modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

/* BOX */
.modal_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);

  width: 100%;
  max-width: 450px;

  background: #fff;
  padding: 35px;
  border-radius: var(--br);

  transition: 0.3s;
}

/* ANIMATION */
.modal.active .modal_box {
  transform: translate(-50%, -50%) scale(1);
}

/* CLOSE */
.modal_close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

/* TITLE */
.modal_box h2 {
  margin-bottom: 20px;
}

/* FORM */
.modal_box input,
.modal_box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  background: #f9f9f9;
}

.modal_box textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.modal_box .btn {
  width: 100%;
}
/* HAMBURGER */
.mobile_toggle {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.mobile_toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #000;
  left: 0;
  transition: 0.4s;
}

.mobile_toggle span:nth-child(1) {
  top: 0;
}
.mobile_toggle span:nth-child(2) {
  top: 9px;
}
.mobile_toggle span:nth-child(3) {
  bottom: 0;
}

/* ACTIVE (X ANIMATION) */
.mobile_toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.mobile_toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile_toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

/* MENU BASE */
.mobile_menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

/* ACTIVE */
.mobile_menu.active {
  pointer-events: all;
}

/* OVERLAY */
.mobile_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: 0.4s;
}

.mobile_menu.active .mobile_overlay {
  opacity: 1;
}

/* PANEL */
.mobile_panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: 100%;

  background: #fff;
  padding: 25px;

  display: flex;
  flex-direction: column;
  gap: 25px;

  transform: translateX(-100%);
  transition: 0.4s cubic-bezier(0.77, 0, 0.18, 1);

  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
}

/* OPEN ANIMATION */
.mobile_menu.active .mobile_panel {
  transform: translateX(0);
}

/* HEADER */
.mobile_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile_header img {
  width: 140px;
}

/* CLOSE */
.mobile_close {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* NAV */
.mobile_nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.mobile_nav a {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.mobile_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--blue-2);
  transition: 0.3s;
}

.mobile_nav a:hover {
  color: var(--blue-2);
}

.mobile_nav a:hover::after {
  width: 100%;
}

/* BUTTON */
.mobile_btn {
  margin-top: auto;
  text-align: center;
  width: fit-content;
  padding: 15px 30px;
}
.blog_body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 sətr */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.projects_detail_section {
  padding: 60px 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 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_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: grid;
  align-items: center;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  max-width: 100%;
  overflow-x: auto;
}
.projects_detail_gallery_section .gallery::-webkit-scrollbar {
  display: none;
}

.projects_detail_gallery_section .gallery li {
  width: 100%;
  height: 100%;
  max-height:300px;
  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::after {
  pointer-events: none;
}
.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: 576px) {
      .projects_detail_gallery_section .gallery {
          grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .projects_detail_section {
    padding: 80px 0;
  }
  .projects_detail_gallery_section .gallery {
          grid-template-columns: repeat(3, 1fr);
  }
  .projects_detail_heading_content h1 {
    font-size: 42px;
  }
   
  .projects_detail_content h2 {
    font-size: 36px;
  }
}

/* services detail*/
.services_detail_content article :is(ol, ul), .detail_section_one_inner_content :is(ul, ol) {
  padding-left: 20px;
}
.services_detail_content :is(h2, h3) {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary);
  opacity: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) {
  .services_detail_content :is(h2, h3) {
    font-size: 36px;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .mobile_toggle {
    display: block;
  }
  .banner h1 p {
    font-size: 44px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 576px) {
  .advantages_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .about_content h2 {
    font-size: 32px;
  }
  .about_content {
    grid-column: span 8;
  }
  .about_img {
    grid-column: span 4;
  }
  .about_wrapper {
    grid-template-columns: repeat(12, 1fr);
  }
  /* adv */
  .advantages_wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 992px) {
  .services_detail_section {
    padding: 80px 0;
  }
  .services_detail_navigation {
    order: 1;
  }
  .services_detail_content {
    order: 2;
  }
  .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;
  }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog_inner_wrap {
    grid-template-columns: 1fr;
  }
}
/* 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;
  }
}

@media screen and (min-width: 992px) {
  .services_detail_content :is(h2, h3) {
    font-size: 36px;
  }
}
@media (max-width: 1200px) {
  .footer_wrap {
    grid-template-columns: 1fr;
  }
  .footer_time li {
    justify-content: start;
  }
  .footer_form {
    width: fit-content;
  }
  .page_title {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
}
}
@media (max-width: 992px) {
  .blog-grid,
  .project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 25px;
  }

  .contact_wrap {
    grid-template-columns: 1fr;
  }
  .about-images {
    order: 1;
  }

  .form_row {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .blog-grid,
  .project-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
    gap: 25px;
  }
  .blog_title {
    margin-top: 20px;
    font-size: 23px;
    font-weight: 700;
    color: #222;
  }
  .projects_card article strong {
    font-size: 23px;
  }
  .contact_form {
    background: #eee;
    padding: 40px 15px;
    border-radius: var(--br);
  }
  .contact_form h2 {
    font-size: 23px;
    margin-bottom: 30px;
    color: #222;
  }
  .footer_form {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    width: 100%;
  }
  .page_title {
    position: relative;
    z-index: 3;
    color: #fff;
    font-size: 27px;
    font-weight: 700;
  }
  .breadcrumb {
    margin-left: auto;
    background: var(--blue-2);
    color: #fff;
    padding: 25px 40px;
    border-top-left-radius: 50px;
    font-size: 14px;
    display: flex;
    gap: 6px;
    width: 320px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  .footer-bottom {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 20px 0;
    position: relative;
    border-top: 0.5px solid #ccc;
    z-index: 10;
    flex-direction: column;
    text-align: center;
  }

  .banner p {
    margin-top: 20px;
    font-size: 18px;
    color: #000;
    max-width: 700px;
  }
  .buttons {
    flex-direction: column;
  }
  .about-images {
    flex-direction: column;
  }
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-title {
    font-size: 32px;
  }
  .about {
    padding: 40px 0;
  }
  .about-img {
    height: 280px;
  }
  .banner h1 p {
    font-size: 29px;
    line-height: 1.2;
  }
}
@media (max-width: 468px) {
  .work_step_num {
    width: 30px;
    height: 30px;
    background: #fff;
    color: var(--blue-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
    font-size: 14px;
  }
  .work_step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 40px;
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
  }
}
/* Планшеты — 768px–992px */
@media (min-width: 768px) and (max-width: 992px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-title {
    font-size: 40px;
  }
  .about {
    padding: 50px 0;
  }
  .about-img {
    height: 350px;
  }
}

/* Малый desktop — 992px–1349px */
@media (min-width: 992px) and (max-width: 1349px) {
 
  .about-title {
    font-size: 44px;
  }
}

@media (max-width: 600px) {
  .footer_bottom_wrap {
    flex-direction: column;
    gap: 10px;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .work_steps_wrap {
    grid-template-columns: 1fr;
  }

  .work_steps_left {
    order: 2;
  }

  .work_steps_right {
    height: 300px;
    order: 1;
  }

  .work_steps_content {
    padding: 50px 0;
  }

  .work_steps_content h2 {
    font-size: 30px;
  }
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.section_title {
  display: flex;
  margin-bottom: 60px;
  flex-direction: column;
  padding: 15px;
  row-gap: 20px;
  column-gap: 60px;
  background: var(--blue-1);
  border-radius: var(--br);
  strong {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
  }
  p {
    font-size: 14px;
    line-height: 1.2;

    color: #fff;
    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;
      max-width: 55%;
    }
  }
  @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;
    }
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
}
