  /* ==== General Styling ==== */
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #eef2f7;
        }

        .about-admin-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
        }

        /* ==== Fade-in Animation ==== */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ==== Profile Header ==== */
        .profile-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            background: linear-gradient(135deg, #4f8cff, #6a5acd);
            padding: 30px;
            border-radius: 12px;
            color: #fff;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .name-bio {
            flex: 1;
            min-width: 250px;
        }

        .name-bio h1 {
            font-size: 2rem;
            margin: 0 0 10px 0;
        }

        .name-bio p {
            font-size: 1rem;
            line-height: 1.6;
            color: #f0f0f0;
        }

        .profile-pic-container {
            flex: 0 0 150px;
            text-align: center;
        }

        .profile-pic {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 4px solid #fff;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* ==== Cards Section ==== */
        .cards-section {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 30px;
            gap: 20px;
        }

        .card {
            background: #fff;
            flex: 1;
            min-width: 200px;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .card h3 {
            margin: 0 0 10px 0;
            color: #4f8cff;
        }

        .card p {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        /* ==== Contact Section ==== */
        .contact-admin {
            background: #fff;
            padding: 20px;
            margin-top: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .contact-admin h3 {
            margin-top: 0;
            color: #4f8cff;
        }

        .contact-admin a {
            color: #4f8cff;
            text-decoration: none;
        }

        /* ==== Fun Facts ==== */
        .fun-facts {
            background: #fff;
            padding: 20px;
            margin-top: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .fun-facts h3 {
            margin-top: 0;
            color: #4f8cff;
        }

        .fun-facts li {
            margin: 6px 0;
            color: #555;
        }

        /* ==== Trust Section ==== */
        .trust-section {
            background: #fff;
            padding: 20px;
            margin-top: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .trust-section h3 {
            margin-top: 0;
            color: #4f8cff;
        }

        .trust-section p {
            color: #555;
            line-height: 1.6;
        }

        /* ==== Responsive ==== */
        @media (max-width: 768px) {
            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .cards-section {
                flex-direction: column;
                gap: 15px;
            }
        }
        /* ==== Floating Profile Picture Animation ==== */
.profile-pic-container {
    position: relative;
}

.profile-pic {
    animation: floatProfile 4s ease-in-out infinite;
}

@keyframes floatProfile {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}