/* General Styles */
     body {
          max-width: 1061px;
          margin: 0 auto;
          padding: 0 20px 80px; /* Padding bottom untuk footer */
          overflow-x: hidden;
          font-family: 'Ubuntu', sans-serif;
          background-image: url('https://www.transparenttextures.com/patterns/always-grey.png');
          background-repeat: repeat;
          background-color: #0795cd;
          background-size: auto; /* atau sesuaikan jika perlu */
          background-position: 0 0;
          background-attachment: scroll;
     }

     .container-fluid, .container {
          max-width: 1060px !important;
     }

     .row {
          display: flex;
          flex-wrap: wrap;
     }

     .col-md-4 {
          flex: 0 0 auto;
          width: 33.3333%;
     }

     /* Navbar */
     .navbar {
          padding: 23px 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
     }

     .navbar-brand img {
          width: 150px;
          height: auto;
     }

     .navbar .btn {
          transition: background-color 0.3s ease, color 0.3s ease;
     }

     .navbar .btn-outline-primary:hover {
          background-color: #007bff;
          color: #fff;
     }

     /* Search Bar */
     .search-container {
          position: relative;
          display: flex;
          align-items: center;
          gap: 10px;
     }

     #searchForm {
          position: relative;
          display: flex;
          align-items: center;
     }

     #searchInput {
          border-radius: 20px;
          padding: 8px 16px 8px 40px;
          width: 100%;
     }

     #searchForm .fa-search {
          position: absolute;
          left: 12px;
          color: #888;
          pointer-events: none;
     }

     /* Button Group */
     .button-group {
          display: flex;
          gap: 10px;
     }

     /* Event Icon */
     .event-icon {
          font-size: 50px;
          color: #007bff;
          cursor: pointer;
          transition: color 0.3s ease;
     }

     .event-icon:hover {
          color: #0056b3;
     }

     /* Nav Menu */
     .nav-menu {
          background-color: #f8f9fa;
          padding: 10px 20px;
          border-top: 1px solid #e9ecef;
     }

     .nav-menu .nav-link {
          font-size: 17px;
          color: #f3f3f3;
     }

     .nav-menu .nav-link:hover {
          color: #007bff;
     }

     /* Footer */
     footer {
          position: fixed;
          bottom: 0;
          left: 0;
          right: 0;
          max-width: 1020px;
          margin: 0 auto;
          background-color: #343a40;
          color: white;
          padding: 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          z-index: 1000;
          box-sizing: border-box;
          border-radius: 28px 28px 0px 0px;
          background: linear-gradient(135deg, #343a40, #000000);
     }

     .social-media a {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          color: white;
          font-size: 20px;
          text-decoration: none;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
          margin: 0 10px;
     }

     .social-media a:hover {
          background-color: rgba(255, 255, 255, 0.2);
          box-shadow: 0 4px 15px rgba(0, 123, 255, 0.5);
          transform: translateY(-5px);
     }

     footer .copyright {
          flex-grow: 1;
          text-align: right;
          background-color: #343a40;
          padding: 10px;
     }

     /* Bank dan E-Wallet Section */
     .bank-ewallet-section {
          padding: 60px 0;
          background-color: #f8f9fa;
     }

     .bank-ewallet-section h2 {
          text-align: center;
          margin-bottom: 40px;
     }

     .bank-ewallet-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          gap: 20px;
          padding: 0 20px;
     }

     .bank-ewallet-grid img {
          width: 100%;
          height: auto;
          transition: transform 0.3s ease;
     }

     .bank-ewallet-grid img:hover {
          transform: scale(1.1);
     }

     /* Article Section */
     .article-section {
          padding: 60px 0;
          background-color: #f8f9fa;
     }

     .article-section h2 {
          text-align: center;
          margin-bottom: 40px;
          font-size: 2rem;
          color: #333;
     }

     .article-list {
          max-width: 1020px;
          margin: 0 auto;
          padding: 0 20px;
     }

     .article-item {
          margin-bottom: 30px;
     }

     .article-item h3 {
          font-size: 1.5rem;
          margin-bottom: 10px;
          color: #007bff;
     }

     .article-item p {
          font-size: 1rem;
          color: #666;
          line-height: 1.6;
     }

     /* Swiper Container */
     .swiper {
          width: 100%;
          height: 400px;
     }

     .slide-image {
          width: 100%;
          height: 100%;
          object-fit: cover;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 1;
     }

     .slide-content {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: 2;
          text-align: center;
          color: white;
          background-color: rgba(0, 0, 0, 0.5);
          padding: 20px;
          border-radius: 10px;
     }

     .swiper-pagination-bullet {
          width: 12px;
          height: 12px;
          background-color: #fff;
          opacity: 0.5;
          margin: 0 8px !important;
     }

     .swiper-pagination-bullet-active {
          opacity: 1;
     }

     .swiper-button-next,
     .swiper-button-prev {
          color: #fff;
          background-color: rgba(0, 0, 0, 0.5);
          width: 40px;
          height: 40px;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
     }

     .swiper-button-next::after,
     .swiper-button-prev::after {
          font-size: 20px;
     }

     /* Card Styles */
     .card {
          box-shadow: 0 4px 8px rgb(0 0 0 / 67%);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          border-radius: 10px;
          max-height: 300px;
          background-color: aqua;
      }

     .card:hover {
          transform: translateY(-5px);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
     }

     .card-body {
          padding: 20px;
     }

     .card-img-top {
          width: 100%;
          height: auto;
          aspect-ratio: 300 / 190;
          object-fit: cover;
     }

     .h5, h5 {
          font-size: 1.25rem;
          text-align: center;
          font-weight: bold;
      }

     /* Button Styles */
     .btn {
          transition: background-color 0.3s ease, transform 0.3s ease;
          border-radius: 10px;
     }

     .btn:hover {
          transform: scale(1.05);
     }

     /* Media Queries */
     @media (max-width: 767px) {
          body {
               max-width: 540px;
               padding: 0 15px;
          }
     }

     @media (max-width: 575px) {
          body {
               max-width: 100%;
               padding: 0 10px;
          }
     }

     .nav-item {
          position: relative;
          padding-right: 0px;
     }

     .nav-item:not(:last-child)::after {
          content: "";
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          height: 60%;
          width: 1px;
          background-color: rgba(255, 255, 255, 0.3);
     }

     .nav-link {
          color: #ffffff;
          text-decoration: none;
          transition: all 0.3s ease;
          padding: 8px 12px;
          border-radius: 4px;
          background-color: transparent;
     }

     .nav-link:hover {
          color: #ffdd57;
          background-color: rgba(255, 221, 87, 0.1);
          box-shadow: 0 0 10px rgba(255, 221, 87, 0.5);
     }

     .nav-link:active {
          color: #ff3860;
          background-color: rgba(255, 56, 96, 0.1);
          box-shadow: 0 0 10px rgba(255, 56, 96, 0.5);
     }



     .nav-menu {
          background-color: #333;
          padding: 10px;
          border-radius: 20px 20px 0px 0px;
     }

     .navbar-nav {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
          justify-content: center;
     }

     .bg-light {
          --bs-bg-opacity: 1;
          background-color: rgb(51 51 51) !important;
          border-radius: 0px 0px 20px 20px;
     }

     .card {
          border: 1px solid #ddd;
          border-radius: 8px;
          overflow: hidden;
     }

     .card-img-top {
          width: 100%;
          height: auto;
     }

     section.container.my-5.aos-init.aos-animate {
          margin-top: 1rem !important;
     }

     .provider-group img {
          max-width: 100%;
          height: auto;
     }

     .provider-group {
          text-align: center;
          background-color: #33333300;
     }


     @keyframes blink {

          0%,
          50%,
          100% {
               opacity: 1;
               /* Muncul */
          }

          25%,
          75% {
               opacity: 0;
               /* Hilang */
          }
     }

     .blinking {
          animation: blink 1.5s infinite;
          color: #f50202;
     }

     

     .close-btn {
          position: absolute;
          top: 10px;
          right: 15px;
          font-size: 28px;
          cursor: pointer;
          color: #ff0000;
          background-color: rgba(255, 255, 255, 0.8);
          border-radius: 50%;
          width: 40px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: background-color 0.3s ease;
          z-index: 1001;
     }

     .close-btn:hover {
          background-color: rgba(255, 0, 0, 0.8);
          color: #fff;
     }

     .transaksi-kontak {
          display: flex;
     }

     .devider {
          background: var(--devider-color);
     }

     .transaksi-title-group {
          color: #fcfcfd;
     }

     .transaksi-content {
          color: aliceblue;
      }