.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-top: 2px solid rgba(100, 153, 245, 0.766)
  }

  .footer-menu .nav-item {
    text-align: center;
    flex-grow: 1;
  }

  .footer-menu .nav-link {
    color: #f6f7f8;
    font-size: 14px;
    padding: 10px 0;
  }

  .footer-menu .nav-link .icon {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
  }

  .footer-menu .nav-link.active {
    color: #03feff;
    font-weight: bold;
  }
  /* card ki css */

  .wallet-card {
    border: 1px solid #05f3eb;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(to right, #661515, #0c54cd);
  }

  .wallet-card:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .wallet-icon {
    font-size: 50px;
    color: #0ff5cd;
  }

  .wallet-balance {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0ff5cd;
  }

  .wallet-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fdfdfd;
  }

  /* text ka size chhota karne ka css */

  .smalltext {
    font-size: 0.7em
  }

  /* news ticker ka css */
  .news-ticker {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 60px;
  }

  .news-icon-container {
    position: relative;
    z-index: 2; /* Keeps the icon on top */
    background-color: #dc3545; /* Background for the icon */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; /* Fixed width for the icon background */
    height: 100%; /* Full height to cover the ticker */
    flex-shrink: 0;
  }

  .news-icon {
    font-size: 28px;
    color: white;
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 50%, 100% {
      transform: scale(1);
    }
    25%, 75% {
      transform: scale(1.2);
    }
  }

  .news-text-container {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .news-text {
    position: absolute;
    white-space: nowrap;
    animation: scroll-left 10s linear infinite;
    font-weight: 600;
    font-size: 18px;
    color: #333;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* profile page ki css */

  body {
    background: #fcfcfc;
    font-family: 'Roboto', sans-serif;
  }
  .profile-header {
    text-align: center;
    margin-top: 30px;
  }
  .profile-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .profile-header h2 {
    font-weight: 600;
    color: #333;
  }
  .profile-header p {
    color: #888;
    font-size: 14px;
  }
  
  .profile-details .card {
    border: none;
    border-radius: 12px;
    margin-top: 40px;
    background: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .profile-details .card-header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    text-transform: uppercase;
  }

  .profile-details .card-body {
    font-size: 1.1rem;
    color: #333;
    padding: 30px;
  }

  .profile-details .list-group-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    color: #05aa9f;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
  }

  .profile-details .list-group-item:hover {
    background-color: #eaf1fb;
    transform: translateX(10px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .action-buttons a {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: all 0.3s;
    text-align: center;
    display: block;
  }

  .action-buttons a.edit {
    background-color: #4caf50;
  }
  .action-buttons a.change {
    background-color: #ff9800;
  }
  .action-buttons a.deactivate {
    background-color: #f44336;
  }

  .action-buttons a:hover {
    opacity: 0.9;
    transform: translateY(-5px);
  }

  /* Fund and Wallet Cards */
  .fund-wallet-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }
  .fund-wallet-card {
    width: 48%;
    background: linear-gradient(45deg,#2d7ee7,#002b5a);
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .fund-wallet-card:hover {
    transform: translateY(-5px);
  }
  .fund-wallet-card i {
    font-size: 2.5rem;
    color: #73ff06;
  }
  .fund-wallet-card h3 {
    color: #73ff06;
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.5rem;
  }
  .fund-wallet-card p {
    color: #ffffff;
    font-size: 1.1rem;
  }

  /* Form Styling */
  .form-section {
    margin-top: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
  }
  .form-section h2 {
    text-align: center;
    font-weight: 700;
    color: #2575fc;
  }

  .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: none;
    font-size: 1rem;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-btn {
    background-color: #2600b1;
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
  }

  .form-btn:hover {
    background-color: #45a049;
    opacity: 0.9;
  }

/* registration form css */
.registration-form {
  max-width: 500px;
  margin: 50px auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.registration-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #6499f5;
}
.form-control:focus {
  border-color: #6499f5;
  box-shadow: 0 0 5px rgba(100, 153, 245, 0.5);
}
.btn-primary {
  background-color: #6499f5;
  border-color: #6499f5;
}
.btn-primary:hover {
  background-color: #567bd8;
}

/* sidebar css */

.offcanvas {
  background: #05aa9f;
  color: #aee3d8;
  width: 250px;
}
.offcanvas-header {
  background: #2d037b;
}
.offcanvas-title {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.list-group-item {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}
.list-group-item:hover {
  border: 2px solid white; 
  border-radius: 10px; 
  padding:10px; 
  background: #56040459; 
  box-shadow: 2px 2px 10px #60f9ff;
  color: #ffcc00;
  transform: scale(1.05);
}
.list-group-item a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-primary {
  background: #ffcc00;
  border: none;
  font-weight: bold;
}
.btn-primary:hover {
  background: #ff9900;
}

/*cards design css*/

.order-card {
    color: #fff;
}

.bg-c-blue {
    background: linear-gradient(45deg,#4099ff,#73b4ff);
}

.bg-c-green {
    background: linear-gradient(45deg,#2ed8b6,#59e0c5);
}

.bg-c-yellow {
    background: linear-gradient(45deg,#FFB64D,#ffcb80);
}

.bg-c-pink {
    background: linear-gradient(45deg,#FF5370,#ff869a);
}


.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    border: none;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card .card-block {
    padding: 25px;
}

.order-card i {
    font-size: 26px;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.profile-det {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
}
.profile-head {
    background: linear-gradient(to right, #c70909, #17366b);
    color: white;
}

.navbar {
            border-bottom: 2px solid rgba(100, 153, 245, 0.766);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1030;
            background: white;
        }

        .dropdown-menu {
            display: none;
            position: relative;
            width: 100%;
            margin-top: 5px;
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
        }

        .dropdown.open .dropdown-menu {
            display: block;
        }

        .list-group-item {
            transition: all 0.3s ease-in-out;
        }
        
        /* Dropdown menu transparent background */
.dropdown-menu {
    background: transparent ; /* No background */
    border: none;
    box-shadow: none; /* Remove any shadow */
    padding: 5px;
    width: 100%;
    margin-top: 5px;
}

/* Dropdown items styling */
.dropdown-menu .dropdown-item {
    color: white; /* Black text */
    font-size: 10px;
    font-weight: bold;
    padding: 10px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease-in-out;
    background: transparent ; /* No background */
}

/* Icon before each dropdown item */
.dropdown-menu .dropdown-item::before {
    content: "\f138"; /* Unicode for right arrow */
    font-family: "Bootstrap-icons";
    margin-right: 10px;
    font-size: 15px;
    transition: transform 0.3s ease-in-out;
    color: white; /* Same color as text */
}

/* Hover effect (Only Text Movement, No Background) */
.dropdown-menu .dropdown-item:hover {
    transform: translateX(5px); /* Move text slightly to the right */
    background: transparent ; /* No hover background */
}

a {
    text-decoration: none;
}
