    .projects-section {
      background-color: #0e0e0e;
      color: #f4f4f4;
      padding: 120px 0 100px;
      position: relative;
      overflow: hidden;
      font-family: "Arial", sans-serif;
    }

    .projects-container {
      display: flex;
      flex-direction: column;
      gap: 120px;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
    }

    /* Вертикальная ось */
    .projects-container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 100%;
      background: repeating-linear-gradient(
        to bottom,
        #fc6005,
        #fc6005 10px,
        transparent 10px,
        transparent 20px
      );
      opacity: 0.6;
    }

    .project {
      display: flex;
      justify-content: flex-start;
      position: relative;
      align-items: center;
    }

    /* Чередование сторон */
    .project:nth-child(even) {
      justify-content: flex-end;
      text-align: right;
    }

    .project-content {
      background: #181818;
      border-radius: 18px;
      padding: 30px 40px;
      width: 500px;
      position: relative;
      box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 40px rgba(252, 96, 5, 0.3);
    }

    /* Точка и пунктир от блока к центру */
    .project-content::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 80px;
      height: 2px;
      border-bottom: 2px dashed #fc6005;
      transform: translateY(-50%);
      opacity: 0.7;
    }

    .project-content::before {
      content: "";
      position: absolute;
      top: 50%;
      width: 16px;
      height: 16px;
      background-color: #fc6005;
      border-radius: 50%;
      transform: translateY(-50%);
    }

    /* Для левой стороны */
    .project:nth-child(odd) .project-content::after {
      right: -100px;
    }
    .project:nth-child(odd) .project-content::before {
      right: -115px;
    }

    /* Для правой стороны */
    .project:nth-child(even) .project-content::after {
      left: -100px;
    }
    .project:nth-child(even) .project-content::before {
      left: -115px;
    }

    /* Тексты */
    .project-content h2 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #fff;
    }

    .project-content h5 {
      font-size: 16px;
      color: #fc6005;
      margin-bottom: 10px;
    }

    .project-content p {
      font-size: 15px;
      line-height: 1.6;
      color: #d4d4d4;
      margin: 0;
    }

    
    @media (max-width: 992px) {
      .projects-container::before {
        left: 20px;
      }

      .project {
        justify-content: flex-start !important;
        text-align: left !important;
      }

      .project-content {
        width: 100%;
        padding-left: 60px;
      }

      .project-content::before,
      .project-content::after {
        left: -50px !important;
        right: auto !important;
      }
    }
  svg path {
    fill: #ccc; /* базовый цвет региона */
    stroke: #333;
    stroke-width: 0.5;
    cursor: pointer;
    transition: fill 0.3s;
  }

  svg path:hover {
    fill: #ff9800; /* цвет при наведении */
  }

  /* Стили для всплывающего окна */
  .tooltip {
    position: absolute;
    display: none;
    background: white;
    border: 1px solid #333;
    padding: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 10;
  }

  .tooltip img {
    width: 50px; /* размер логотипа */
    margin-bottom: 5px;
  }

.top-line {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 1.7rem 0; !important;
  z-index: 10; }

/* --- Социальные иконки в правом нижнем углу --- */
.social-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.social-icons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.social-icons ul li {
  position: relative;
}

.social-icons ul li a {
  text-decoration: none;
  color: #aaa;
  font-size: 2.4em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons ul li a:hover {
  transform: scale(1.2);
}

/* WhatsApp */
.social-icons ul li:nth-child(1) a:hover {
  color: #0077ff;
}

/* ВКонтакте */
.social-icons ul li:nth-child(2) a:hover {
  color: #0077ff;
}

/* Тень для контраста */
.social-icons ul li a {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}











.rf-map,
.rf-map *{
    box-sizing: border-box;
}    
.rf-map {
    position: relative;
    max-width: 980px;
    margin: auto;
    padding: 20px;
}
.rf-map .district b {
    position: absolute;
    z-index: 5;
    width: 18px;
    height: 18px;
    background: rgba(51, 122, 183, 0.9);
    border-radius: 50%;
    left: 6px;
    top: 18px;
    transition: all 0.3s;
}
.rf-map .district span {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 30px;
    font-size: 13px;
    font-weight: bold;
    font-family: Tahoma, sans-serif;
    line-height: 1;
    color: #337AB7;
}
.rf-map .district {
    display: none;
}
.rf-map.open .district b {
    top: 0;
    left: 0;
    border-radius: 0;
    width:100%;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);    
}
.rf-map.open .district span {
    color: #FFF;
}
.rf-map svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.5));    
}
.rf-map path {
    stroke: #FFFFFF;
    stroke-width: 1;
    stroke-linejoin: round; 
}
.rf-map [data-code] {
    fill: #337AB7;
    transition: fill 0.2s;
}
.rf-map [data-code]:hover {
    fill: #0180ef;
}
.rf-map .district-text {
    display: none;
    position: absolute;
    z-index: 6;
    left: 0;
    top: 60px;
    width: calc(100% - 20px);
    height: calc(100% - 90px);
    padding: 0 20px;
    overflow: auto;
    color: #FFF;
    font-size: 13px;
    font-family: Verdana, sans-serif;   
}
.rf-map .close-district {
    opacity: 0;
    z-index: 6;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;    
    width: 40px;
    height: 40px;
    line-height: 1;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transition: opacity 1s;
    pointer-events: none;
}
.rf-map.open .close-district {
    opacity: 1;
    pointer-events: initial;
}
.rf-map .district-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}
.rf-map .district-links div {
    font-size: 13px;
    font-family: Verdana, sans-serif; 
    padding: 4px;
}
.rf-map .district-links div:after {
    content: " | ";
    color: #337AB7;
}
.rf-map .district-links div:last-child:after {
    content: "";
}
.dropfill {
    fill: #337AB7!important;
}
.mainfill {
    fill: #1d4567!important;
}
@media (min-width:768px){
    .rf-map .district b {
        width: 28px;
        height: 28px;    
        left: 6px;
        top: 28px;
    }
    .rf-map .district span {
        top: 30px;
        left: 46px;
        font-size: 20px;
        font-weight: normal;
    }
    .rf-map .district-text {
        left: 30px;
        top: 80px;
        width: calc(100% - 60px);
        height: calc(100% - 130px);
        font-size: 16px; 
    }
    .rf-map .close-district {  
        width: 60px;
        height: 60px;
        font-size: 60px;
    }
    .rf-map .district-links {
        display: none;
    }
}
/* Цвета регионов */
.rf-map [data-code="RU-SAR"] {
    fill: #116f21;
    cursor: pointer;
}
.rf-map [data-code="RU-SA"] {
    fill: #d17520;
    cursor: pointer;
}
.rf-map [data-code="RU-KO"] {
    fill: #901aad;
}
.rf-map [data-code="RU-SAR"]:hover {
    fill: #1bad33;
}
.rf-map [data-code="RU-SA"]:hover {
    fill: #e3954b;
}
.rf-map [data-code="RU-KO"]:hover {
    fill: #bf37e1;
}		








