﻿.doc-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding: 40px 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    height:170px;
}

    .doc-card i {
        font-size: 25px;
        color: #49887b;
        margin-bottom: 15px;
        transition: all 0.4s ease;
    }

    .doc-card h5 {
        font-weight: 600;
        font-size: 16px;
        color: #003366;
        margin-top: 10px;
    }

    .doc-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 25px rgba(0, 123, 255, 0.15);
        background: linear-gradient(145deg, #ffffff, #e9f2ff);
    }

        .doc-card:hover i {
            color: #ffd800;
            transform: scale(1.2);
        }

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}
