
    :root{
      --brand: #0d6efd;
    }
    body { font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
    
  .hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    position: relative;
    padding: 6rem 0;
    color: #fff;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
  }

  .hero .container {
    position: relative;
    z-index: 2;
  }

  @media (max-width: 768px) {
    .hero {
      text-align: center;
      padding: 4rem 1rem;
    }
  }

    .feature-icon { font-size: 1.8rem; }
    .card-screenshot { border: none; }
    footer { background:#f8f9fa; padding:1.5rem 0; }
    .badge-pill { border-radius: 999px; padding: .4rem .8rem; }

  .device-frame {
    width: 200px;
    border: 10px solid #000;
    border-radius: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: #000;
  }

  .device-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: #333;
    border-radius: 3px;
    z-index: 2;
  }

  .app-screenshot {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
  }

  #carouselScreens {
    overflow: visible;
  }

  #carouselScreens .carousel-inner {
    overflow: visible;
  }

  #carouselScreens .carousel-item {
    transition: transform 0.6s ease-in-out;
  }

  @media (min-width: 768px) {
    #carouselScreens .carousel-item-next,
    #carouselScreens .carousel-item-prev,
    #carouselScreens .carousel-item.active {
      display: flex;
      justify-content: center;
    }

    #carouselScreens .carousel-inner::before,
    #carouselScreens .carousel-inner::after {
      content: '';
      flex: 0 0 10%;
    }

    #carouselScreens .device-frame {
      transform: scale(0.9);
      transition: transform 0.4s ease;
    }

    #carouselScreens .carousel-item.active .device-frame {
      transform: scale(1);
    }
  }

  .carousel-indicators [data-bs-target] {
    background-color: #0d6efd;
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .fab-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
  }

  #fabBtn {
    width: 60px;
    height: 60px;
  }

  .fab-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 280px;
    background: #fff;
    border-radius: 15px;
    display: none;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .kkmp-slider {
    position: relative;
    width: 100%;
  }

  .kkmp-track {
    display: flex;
    animation: slideLoop 10s linear infinite;
  }

  @keyframes slideLoop {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* Map & marker styling */
  .map-container {
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 10px;
    background: white;
    border: 1px solid #eee;
  }

  #map .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  }

  #map .leaflet-popup-content {
    margin: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  #map .leaflet-popup-tip {
    box-shadow: none;
  }

  .custom-div-icon {
    background: none;
    border: none;
  }

  .leaflet-control-attribution {
    display: none;
  }

  .marker-pin {
    width: 30px;
    height: 30px;
    border-radius: 50% 50% 50% 0;
    background: #0d6efd;
    position: absolute;
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -15px 0 0 -15px;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  }

  .marker-pin::after {
    content: '';
    width: 14px;
    height: 14px;
    margin: 6px 0 0 6px;
    background: #fff;
    position: absolute;
    border-radius: 50%;
  }
