.arrow-left::before {
            content: '';
            display: inline-block;
            width: 0.5rem; /* 8px */
            height: 0.5rem; /* 8px */
            border-left: 2px solid white;
            border-bottom: 2px solid white;
            transform: rotate(45deg);
            margin-right: 0.25rem; /* 4px */
            margin-left: 0.25rem; /* 4px */
        }
        .arrow-right::before {
            content: '';
            display: inline-block;
            width: 0.5rem; /* 8px */
            height: 0.5rem; /* 8px */
            border-left: 2px solid white;
            border-bottom: 2px solid white;
            transform: rotate(225deg); /* Rotated to point right */
            margin-left: -0.25rem; /* Adjust to bring it closer to the first arrow */
            margin-right: 0.5rem; /* Space between arrows and text */
        }
        body {
            background: #181818;
            font-family: 'Inter', sans-serif, Arial;
            margin: 0; /* Ensure body margin is reset for full-width header */
            max-width: 100vw;
        overflow-x: hidden;
        }

        /* Styles from the user's provided code, adapted for height increase */
        .header {
            display: flex;
            align-items: center;
            background-color: #162e8a;
            color: white;
            padding: 18px;
            font-size: 18px;
            font-weight: normal;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .back-button {
            font-size: 18px; /* Adjusted to be slightly larger */
            margin-right: 14px;
            cursor: pointer;
            border: none;
            background: none;
            color: white;
            padding: 0;
            font-weight: bold;
        }

        .back-button:focus {
            outline: none;
            font-weight: bold;
        }

        .divider {
            width: 1px;
            height: 28px; /* Increased height to match new header height */
            background-color: white;
            margin-right: 14px;
        }

        .title {
            letter-spacing: 0.5px;
            font-weight: normal;
            
        }
    .input-hover-effect:hover, .input-hover-effect:focus {
            border: 1px solid #ec6b18 !important;
            box-shadow: 0 0 0 1px #ec6b181a;
        }
        .btn-confirm:hover, .btn-confirm:focus {
            color: #080000 !important;
        }
        .input-hover-effect,
        .input-hover-effect:focus,
        .input-hover-effect:hover {
            height: 48px !important;
            min-height: 48px !important;
        }
        .btn-confirm {
            height: 48px !important;
            min-height: 48px !important;
            line-height: 48px !important;
        }
        
        input[type="password"] {
          width: 100%;
          margin-bottom: 18px;
          padding: 12px;
          border: 1px solid #e0e0e0;
          border-radius: 5px;
          font-size: 14px;
          background: #fff;
          color: #222;
          box-sizing: border-box;
          transition: border 0.2s;
        }
        input[type="password"]:focus,
        input[type="password"]:hover {
          outline: none;
          border: 2px solid #ff8800;
        }
        button[type="submit"] {
          color: #fff;
          width: 100%;
          background: #e6e600;
          font-size: 1.15rem;
          font-weight: 400;
          border: none;
          border-radius: 6px;
          padding: 13px 0;
          cursor: pointer;
          text-align: right;
          transition: background 0.2s;
        }
        button[type="submit"]:hover {
          color: #292525;
        }
.icon-bg {
        width: 57px;
        height: 57px;
        background-color: rgb(27, 46, 111);
        box-shadow: 5px 5px 5px #000;
        border-radius: 10px;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
      }
      .icon-label {
        color: #fff;
        margin-top: 14px;
        font-size: 16px;
        font-family: Arial, sans-serif;
        text-align: center;
      }
      .marquee-logos {
    background: transparent;
    padding: 8px 0;
    margin-bottom: 24px;
    overflow: hidden;
    width: 100vw;
    position: relative;
  }
  .marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    align-items: center;
    gap: 32px;
  }
  .start-now-btn {
        width: 98%;
        margin: 24px auto 0 auto;
        display: block;
        background: #dae000;
        color: #222;
        font-size: 18px;
        ;
        border: none;
        border-radius: 12px;
        padding: 7px 0;
        text-align: center;
        cursor: pointer;
        transition: background 0.3s, color 0.3s;
        box-shadow: none;
        letter-spacing: 0.5px;
      }
      .start-now-btn:hover {
        background: linear-gradient(180deg, #ec6b18 0, #e22b18 100%);
        color: #fff;
      }
     
      #vip-info-bar {
        box-sizing: border-box;
      }
      /* Optionally, ensure all main containers fit within the viewport */
      .main-grid, .container, body > div {
        max-width: 100vw;
        box-sizing: border-box;
      }
      
      .profile-container {
        background: rgba(20, 50, 150, 0.7);
        border-radius: 16px;
        padding: 32px;
        max-width: 1500px;
        margin: 32px auto 0 auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: relative;
        height: 350px;
      }
      .profile-header {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      
      .profile-info {
        flex: 1;
      }
      .profile-name {
        color: #fff;
        font-weight: bold;
        font-size: 1.25rem;
        margin: 0;
      }
      .profile-code {
        color: #fff;
        font-size: 1rem;
        margin: 4px 0 0 0;
      }
      .profile-star {
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
      }
      .profile-star svg {
        color: #FFA726;
        width: 32px;
        height: 32px;
      }
      .credit-score-label {
        color: #fff;
        font-weight: bold;
        margin-top: 24px;
      }
      .credit-score-bar-container {
        display: flex;
        align-items: center;
        margin-top: 8px;
      }
      .credit-score-bar-bg {
        background: #263159;
        border-radius: 5px;
        height: 8px;
        flex: 1;
        margin-right: 16px;
        overflow: hidden;
      }
      .credit-score-bar {
        background: #42a5f5;
        height: 8px;
        width: 100%;
        border-radius: 5px;
      }
      .credit-score-value {
        color: #fff;
        font-weight: bold;
        margin-left: 8px;
      }
      .profile-stats {
        display: flex;
        gap: 32px;
        margin-top: 32px;
      }
      .profile-stat-col {
        flex: 1;
      }
      .profile-stat-label {
        color: #fff;
        font-size: 1rem;
        margin-bottom: 4px;
      }
      .profile-stat-value {
        color: #fff;
        font-weight: bold;
        font-size: 1.25rem;
        margin-bottom: 16px;
      }
  .marquee-logos ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .marquee-logos li img {
    height: 40px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  }
  @keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .dashboard-cards {
  padding: 8px;
  max-width: 100px;
}
  .dashboard-cards {
  padding: 8px;
  max-width: 100px;
}
.dashboard-card {
  background: rgba(20, 20, 20, .8);
  border: 2px solid #ff9900;
  border-radius: 12px;
  width: 500px;
  height: 160px;
  margin: 0 8px 8px 0;
  padding: 24px 32px 18px 32px;
  box-sizing: border-box;
  color: #0000;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 600px)
  {
      .body{
          margin:0;
          padding:0;
          overflow-y:hidden;
          overflow-x:none;
      }
       .dashboard-cards {
  padding: 8px;
  max-width: 70px;
}
.dashboard-card {
  background: rgba(20, 20, 20, .8);
  border: 2px solid #ff9900;
  border-radius: 12px;
  width: 300px;
  height: 160px;
  margin: 0 8px 8px 0;
  padding: 24px 32px 18px 32px;
  box-sizing: border-box;
  color: #0000;
  display: flex;
  flex-direction: column;
  /*position: relative;*/
}
  }
.dashboard-card-small {
  height: 110px; /* Reduced height for small cards */
  padding-top: 18px;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
.dashboard-title {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #fff;
}
.dashboard-value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: 1px;
}
.dashboard-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  margin-top: 2px;
}
.dashboard-percent {
  color: #ff9900;
  font-weight: bold;
  font-size: 1.1rem;
}
.dashboard-footer-spacer {
  height: 100px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: #f5f5f5;
  
  height: 74px;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  overflow: hidden;
}

.footer-item {
  flex: 1;
  text-align: center;
  padding-top: 6px;
  font-size: 1.08rem;
  color: #222;
  cursor: pointer;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: transparent;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.footer-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 2px;
  object-fit: contain;
  display: block;
}

/* Gradient always on the active tab */


.footer-item span {
  margin-top: 0;
  font-size: 1.02rem;
  font-family: Arial, sans-serif;
  font-weight: normal;
  color: #111;
  letter-spacing: 0.2px;
}

@media (max-width: 600px) {
  .footer-nav {
    height: 60px;
  }
  .footer-item img {
    width: 28px;
    height: 28px;
  }
  .footer-item span {
    font-size: 0.92rem;
  }
  .dashboard-footer-spacer {
    height: 12px;
  }
}





