:root {
            --gradient: linear-gradient(0deg, #094350, #23869b, #3e969b);
            --primary-orange: #f14300;
        }

        /* City Tags */
        .btn-city {
            border: 1px solid #ccc;
            background: #f9f9f9;
            color: #333;
            transition: 0.3s;
        }

        .btn-city:hover,
        .btn-city.active {
            background: var(--gradient) !important;
            color: white !important;
            box-shadow: 0 4px 12px rgba(9, 67, 80, 0.3);
        }

        /* Sidebar Active Category */
        .list-group-item.active {
            background-color: var(--primary-orange) !important;
            color: white !important;
            border-color: var(--primary-orange) !important;
        }

        /* Company Card Box Shadow */
        .card {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: none;
        }

        /* Action Buttons */
        .btn-contact {
            background-color: var(--primary-orange);
            color: white;
            border: none;
        }

        .btn-catalog {
            background: var(--gradient);
            color: white;
            border: none;
        }

        .btn-contact:hover,
        .btn-catalog:hover {
            opacity: 0.9;
        }

.default-btn {
    background: linear-gradient(0deg, #094350, #23869b, #3e969b) !important;
}

 .city-box-container {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .city-box {
      background-color: white;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .city-box:hover {
      transform: scale(1.05);
    }

    .city-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 10px;
    }

    .city-image {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .city-name {
      font-weight: bold;
      font-size: 14px;
      color: #333;
    }

    @media (max-width: 1024px) {
      .city-box-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 600px) {
      .city-box-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .city-name {
        font-size: 12px;
      }
    }

    h2 {
      color: #333;
    }
    .section {
      margin-bottom: 30px;
    }
    .buttons-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .button {
      background-color: #007bff;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }
    .button:hover {
      background-color: #0056b3;
    }
    .company-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }
    .company-card {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      text-align: center;
    }
    @media(max-width: 992px) {
      .company-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(max-width: 600px) {
      .company-grid {
        grid-template-columns: 1fr;
      }
    }

    .nav-pills {
    flex-wrap: wrap;
    }

    @media (max-width: 768px) {
        .nav-pills .nav-link {
            font-size: 14px;
            padding: 10px 15px;
        }
    }

    .nav-pills .nav-link {
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.nav-pills .nav-link:hover {
    background-color: #e9ecef;
    color: #000;
}

.nav-pills .nav-link.active {
    background: linear-gradient(0deg, #094350, #23869b, #3e969b) !important;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.place-list-item .content {
  height: 150px !important;
}

.place-list-item .content {
    background: #fff; /* soft light background */
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.place-list-item .content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.place-list-item h3 {
    color: #094350; /* from your gradient */
}

.place-list-item p {
    color: #555;
    font-size: 14px;
}

.place-list-three {
  background: #f1fbfd;
}


 .buttons-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .button {
      background: linear-gradient(0deg, #094350, #23869b, #3e969b) !important;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }
    .button:hover {
      background-color: #0056b3;
    }
    .company-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }
    .company-card {
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      text-align: center;
    }
    @media(max-width: 992px) {
      .company-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media(max-width: 600px) {
      .company-grid {
        grid-template-columns: 1fr;
      }
    }

    .button.selected {
    background-color: #007bff; /* Bootstrap primary */
    color: white;
    border: 1px solid #0056b3;
}

  .custom-footer {
        background: #0b2e31;
        color: #ffffff;
        padding: 80px 0 40px;
        font-family: 'Inter', sans-serif;
    }

    .custom-footer h4 {
        color: #f1f1f1;
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .custom-footer ul {
        list-style: none;
        padding: 0;
    }

    .custom-footer ul li {
        margin-bottom: 12px;
        transition: all 0.3s;
    }

    .custom-footer ul li a {
        color: #ccc;
        text-decoration: none;
        position: relative;
        padding-left: 18px;
        display: inline-block;
    }

    .custom-footer ul li a::before {
        content: '➤';
        position: absolute;
        left: 0;
        color: #f14300;
        font-size: 12px;
    }

    .custom-footer ul li a:hover {
        color: #fff;
        padding-left: 22px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 50px;
        padding-top: 20px;
        text-align: center;
        font-size: 14px;
        color: #bbb;
    }
