 .card {
            border: none;
            border-radius: 15px;
            color: #fff;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .card-icon {
            font-size: 2.5rem;
            opacity: 0.7;
        }

        .bg-gradient-primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .bg-gradient-success {
            background: linear-gradient(135deg, #1dd1a1, #10ac84);
        }

        .bg-gradient-warning {
            background: linear-gradient(135deg, #50b5f8, #34c6ff);
        }

        .bg-gradient-danger {
            background: linear-gradient(135deg, #ff6b6b, #ee5253);
        }

        .bg-gradient-info {
            background: linear-gradient(135deg, #54a0ff, #2e86de);
        }

        .floating-label select {
            height: calc(3.5rem + 2px);
        }

        .form-floating label {
            padding-left: 12px;
        }

        .form-select:focus {
            box-shadow: none;
            border-color: #888;
        }

        h5 {
            text-transform: capitalize;
        }
        
        h6 {
            text-transform: capitalize;
        }

        /* Custom Styles */
        .header {
            background: linear-gradient(135deg, #001F3F, #003366);
            /* Diagonal Gradient */
            color: white;
            padding: 40px 20px;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            /* Subtle shadow for depth */
            animation: slideIn 1s ease-out;
        }

        .header h1 {
            font-size: 42px;
            font-family: 'Arial', sans-serif;
            font-weight: bold;
            margin: 0;
        }

        .header .tagline {
            font-size: 18px;
            font-family: 'Arial', sans-serif;
            margin-top: 10px;
        }

        .header img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* Background Image for the body */
        body {
            background: linear-gradient(to right, #a2c2e5, #ffffff);
            /* Light blue to white gradient */
            margin: 0;
            font-family: 'Arial', sans-serif;
        }