    /* WhatsApp Floating Button Style */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      color: #fff;
    }

    .whatsapp-float,
    .whatsapp-float:link,
    .whatsapp-float:visited,
    .whatsapp-float:hover,
    .whatsapp-float:active {
      text-decoration: none !important;
    }

    /* ---------------- Tabs Styling ---------------- */
    .nav-tabs {
      justify-content: center;
      border-bottom: none;
      margin-bottom: 30px;
    }

    .nav-tabs .nav-link {
      border: none;
      border-radius: 30px;
      padding: 10px 25px;
      margin: 0 8px;
      font-weight: 500;
      color: #555;
      background: #f1f1f1;
      transition: all 0.3s ease;
    }

    .nav-tabs .nav-link:hover {
      background: #e0e0e0;
      color: #000;
    }

    .nav-tabs .nav-link.active {
      background: #198754;
      color: #fff;
      box-shadow:0 5px 15px rgb(25 135 84 / 50%);
    }

    .nav-tabs .nav-link.disabled {
      background: #ddd;
      color: #999;
      cursor: not-allowed;
    }

    /* ---------------- Section & Cards ---------------- */
    .section {
      padding: 4rem 0;
    }

    .retro-layout .v-height {
      height: 240px;
    }

    .retro-layout .h-entry {
      display: block;
      position: relative;
      border-radius: 12px;
      overflow: hidden;
    }

    .retro-layout .h-entry.mb-30 {
      margin-bottom: 30px;
    }

    .retro-layout .h-entry::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, .85));
      z-index: 1;
    }

    .retro-layout .featured-img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform .3s ease;
    }

    .retro-layout .h-entry:hover .featured-img {
      transform: scale(1.1);
    }

    .retro-layout .text {
      position: absolute;
      bottom: 0;
      z-index: 2;
      padding: 20px;
      color: #fff;
    }

    .retro-layout .text span {
      font-size: 13px;
      opacity: .8;
    }

    .retro-layout .text h2 {
      font-size: 18px;
      margin: 5px 0 0;
      line-height: 1.3;
    }

    @media (max-width: 767px) {
      .retro-layout .img-5 {
        height: 240px !important;
        margin: 30px 0;
      }
    }
