     body {

        background-color: #f5f5f5;
        margin: 0;
        padding: 0;
        font-family: 'IRANsans';
    }


    :root {
        --primary-color: #014D84;
         رنگ آبی تیره مطابق عکس 
        --hover-color: #007bff;
        --text-color: #333;
        --background-light: #f8f9fa;
    }



    .tabs-container {
        display: flex;
        justify-content: center;
        gap: 12%;
        padding: 30px 20px 10px;
        background-color: #F3F7FA;
        flex-wrap: wrap;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .tab {
        position: relative;
        text-align: center;
        cursor: pointer;
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tab .icon-line {
        width: 30vh;
        height: 3px;
        background-color: #41959B;
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 0;
    }

    .tab .icon-circle {
        width: 70px;
        height: 70px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        position: relative;
        z-index: 1;
    }

    .tab .icon-circle i {
        font-size: 28px;
        color: #555;
        transition: color 0.3s ease;
    }

     نمایش خط هنگام هاور یا اکتیو 
    .tab:hover .icon-line,
    .tab.active .icon-line {
        opacity: 1;
    }

     تغییر رنگ دایره و آیکون 
    .tab:hover .icon-circle,
    .tab.active .icon-circle {
        background-color: #41959B;
    }

    .tab:hover .icon-circle i,
    .tab.active .icon-circle i {
        color: white;
    }

    .tab:hover .icon-circle::after,
    .tab.active .icon-circle::after {
        opacity: 1;
    }

    .tab span {
        font-weight: bold;
        color: var(--text-color);
    }

    .tab:hover span,
    .tab.active span {
        color: var(--primary-color);
    }


.content {
    background-color: #fff;
    padding: 30px 20px;
    margin: 0 10px 40px;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: auto;
    margin-right: 0px;
    margin-left: 0px;
    height: 55vh;
}

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
        animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #map {
        height: 300px;
        width: 100%;
        border-radius: 8px;
        border: 1px solid #ccc;
    }

    @media (max-width: 768px) {
        .tabs-container {
            gap: 20px;
        }
    }



    .tab-content.active .mohtava:nth-child(even) {
        background-color: #ffffff;
        padding: 10px;
        border-radius: 0px;
        border-bottom-style: solid;
        border-width: 1px;
        height: 5vh;
        border-color: #bcbcbc99;
    }

    .tab-content.active .mohtava:nth-child(odd) {
        background-color: #f1f3f5;
        padding: 10px;
        border-radius: 0px;
        height: 5vh;

    }


    .li-ditail {
        display: flex;
        justify-content: center;
    }
    .text-map{
        display: flex;
        justify-content: center;
    }

  .col{
    padding: 10px;
  }
.row{
  padding: 3px;
}
  .slider {
      width: 90%;
      max-width: 600px;
      margin: 50px auto;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.2);
    }

    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      min-width: 100%;
      cursor: pointer;
    }

    .slide img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 10px;
    }

    .nav-buttons {
      position: relative;
      top: -40px;
      display: flex;
      justify-content: space-between;
    }

    .nav-buttons button {
      background-color: rgba(0,0,0,0.5);
      color: white;
      border: none;
      padding: 10px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 50%;
    }

    /* مودال */
    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
    }

    .modal-content {
      max-width: 90%;
      max-height: 80%;
    }

    .modal-content img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }



    .gallery {
      display: flex;
      gap: 10px;
      padding: 8%;
    justify-content: center;
    }

    .gallery img {
      width: 35vh;
      cursor: pointer;
      transition: 0.3s;
    }

    .gallery img:hover {
      opacity: 0.7;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.8);
    }

    .modal-content {
      position: relative;
      margin: auto;
      top: 10%;
      width: 60%;
      max-width: 700px;
    }

    .modal-content img {
      width: 100%;
      border-radius: 5px;
    }

    .close-modal {
      position: absolute;
      top: 10px; right: 20px;
      color: white;
      font-size: 30px;
      font-weight: bold;
      cursor: pointer;
    }

    .slider-controls {
      display: flex;
      justify-content: space-between;
      position: absolute;
      top: 50%;
      width: 100%;
      padding: 0 20px;
      transform: translateY(-50%);
      color: white;
      font-size: 30px;
      cursor: pointer;
    }

