    /*---------------------------- GENERAL START -------------------------*/

    @import url("/assets/css/splide.min.css");


    @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Light.ttf") format("truetype");
        font-weight: 300;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
          font-family: "Poppins";
          src: url("/assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
          font-weight: 400;
          font-style: normal;
          font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
        font-weight: 500;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
        font-weight: 600;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
      }
  
      @font-face {
        font-family: "Poppins";
        src: url("/assets/fonts/Poppins/Poppins-Italic.ttf") format("truetype");
        font-weight: 400;
        font-style: italic;
        font-display: swap;
      }
   

    *{
        scroll-behavior: smooth;        
        
        word-wrap: break-word;
        
    }
   
    :root {
        --primary-color: #0056b3;
        --secondary-color: #003366;
        --accent-color: #00a8e8;
        --light-color: #f8f9fa;
        --dark-color: #212529;
        --success-color: #28a745;
        --warning-color: #ffc107;
        --danger-color: #dc3545;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        /*background: linear-gradient(rgba(0, 40, 83, 0.85), rgba(0, 40, 83, 0.85)), 
                    url('https://images.unsplash.com/photo-1601597111151-df0d0b1a32bc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center fixed; */
                background-color: #f5f7fa;
        background-size: cover;
        min-height: 100vh;
        color: var(--dark-color);
        
    }


    /* HOME */

    .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 0.8rem 1rem;
            position: sticky;
            top: 0;
            z-index: 99999999999;
        }
        
        .navbar-brand img {
            height: 40px;
        }
        
        .user-profile {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        
        .modal{
            z-index: 9999999999999999 !important;
        }
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 10px;
            border: 2px solid var(--primary-color);
        }
        
        .notification-icon {
            position: relative;
            margin-right: 20px;
            font-size: 1.3rem;
            color: var(--dark-color);
        }
        
        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--danger-color);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .main-content {
            padding: 2rem;
            animation: fadeIn 0.8s ease-in-out;
        }
        
        .main-card {
            border: none;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
            overflow: hidden;
        }
        
        .main-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .main-card-header {
            background-color: white;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1rem 1.5rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .main-card-body {
            padding: 1.5rem;
        }
        
        .balance-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
            animation: slideInUp 0.8s ease-in-out;
        }
        
        .balance-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .balance-amount {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 1rem 0;
        }
        
        .account-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .account-name {
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        .account-number {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .quick-actions {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1rem 0.5rem;
            background-color: white;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .action-btn:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
        }
        
        .action-btn i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .recent-transactions {
            margin-top: 2rem;
        }
        
        .transaction-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background-color 0.3s;
        }
        
        .transaction-item:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }
        
        .transaction-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }
        
        .transaction-details {
            flex: 1;
        }
        
        .transaction-title {
            font-weight: 600;
            margin-bottom: 0.2rem;
        }
        
        .transaction-date {
            font-size: 0.8rem;
            color: #6c757d;
        }
        
        .transaction-amount {
            font-weight: 600;
        }
        
        .positive {
            color: var(--success-color);
        }
        
        .negative {
            color: var(--danger-color);
        }
        
        .footer {
            background-color: white;
            padding: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: #6c757d;
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
            margin-top: 2rem;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-delay-1 {
            animation-delay: 0.2s;
        }
        
        .animate-delay-2 {
            animation-delay: 0.4s;
        }
        
        .animate-delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Modal styles */
        .modal-header {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .modal-footer {
            border-top: none;
        }
        
        .success-icon {
            color: var(--success-color);
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: bounceIn 0.8s;
        }
        
        .restricted-icon {
            color: var(--danger-color);
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: shake 0.8s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .quick-actions {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            }
            
            .balance-amount {
                font-size: 2rem;
            }
        }


    /* LOGIN */

    .login-container {
            animation: fadeIn 0.8s ease-in-out;
        }
        
        .login-card {
            border-radius: 15px;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            background: rgba(255, 255, 255, 0.95);
            color: var(--dark-color);
        }
        
        .login-card-header {
            background: var(--primary-color);
            color: white;
            padding: 1.5rem;
            text-align: center;
            border-bottom: none;
        }
        
        .login-card-header img {
            height: 50px;
            margin-bottom: 15px;
        }
        
        .login-card-body {
            padding: 2rem;
        }
        
        .form-control {
            border-radius: 8px;
            padding: 12px 15px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 168, 232, 0.25);
        }
        
        .btn-login {
            background-color: var(--primary-color);
            border: none;
            border-radius: 8px;
            padding: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s;
        }
        
        .btn-login:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .input-group-text {
            background-color: white;
            border-right: none;
        }
        
        .input-group .form-control {
            border-left: none;
        }
        
        .forgot-password {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }
        
        .forgot-password:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }
        
        .security-tips {
            background-color: rgba(0, 86, 179, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 15px;
            border-radius: 0 8px 8px 0;
            font-size: 0.85rem;
            margin-top: 20px;
        }
        
        .security-tips i {
            color: var(--primary-color);
            margin-right: 8px;
        }
        
        .floating-label {
            position: relative;
            margin-bottom: 20px;
        }
        
        .floating-label label {
            position: absolute;
            top: 12px;
            left: 15px;
            color: #6c757d;
            transition: all 0.3s;
            pointer-events: none;
            background-color: white;
            padding: 0 5px;
        }
        
        .floating-label input:focus + label,
        .floating-label input:not(:placeholder-shown) + label {
            top: -10px;
            left: 10px;
            font-size: 0.8rem;
            color: var(--primary-color);
            background-color: white;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 168, 232, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 168, 232, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 168, 232, 0); }
        }
        
        .logo-text {
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: 1px;
        }
        
        .version {
            font-size: 0.7rem;
            opacity: 0.7;
            margin-top: 5px;
        }