/* Document Card Styles */
.document-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(27, 58, 107, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1B3A6B 0%, #2c5282 100%);
    z-index: 2;
}

.document-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(27, 58, 107, 0.15);
}

.document-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.document-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.document-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.08) 0%, rgba(27, 58, 107, 0.12) 100%);
    color: #1B3A6B;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.document-lock-icon {
    color: #dc3545;
    font-size: 18px;
}

.document-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 20px;
    line-height: 1.4;
    flex-grow: 1;
}

.document-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(27, 58, 107, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.document-date {
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.document-date i {
    color: #1B3A6B;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
    color: white;
}

.btn-unlock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #dc3545 0%, #e63946 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.btn-unlock:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

/* No Data State */
.no-data-container {
    text-align: center;
    padding: 80px 20px;
}

.no-data-container img {
    width: 200px;
    opacity: 0.4;
    margin-bottom: 24px;
}

.no-data-container p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 576px) {
    .document-card-body {
        padding: 20px;
    }

    .document-title {
        font-size: 16px;
    }

    .document-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* Clean Corporate Documents Section Styles */
#documents {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
    margin-top: 80px;
}

/* Decorative Background Elements */
#documents::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.04) 0%, transparent 100%);
    border-radius: 50%;
    z-index: 0;
}

#documents::after {
    content: '';
    position: absolute;
    bottom: -90px;
    left: -90px;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(27, 58, 107, 0.03) 0%, rgba(27, 58, 107, 0.01) 100%);
    border-radius: 50%;
    z-index: 0;
}




/* Search Widget */
.search-widget-container {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.search-widget {
    background: white;
    border-radius: 50px;
    padding: 8px 24px;
    box-shadow: 0 8px 30px rgba(27, 58, 107, 0.12);
    border: 1px solid rgba(27, 58, 107, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.search-widget:hover,
.search-widget:focus-within {
    box-shadow: 0 12px 40px rgba(27, 58, 107, 0.18);
    transform: translateY(-2px);
}

.search-widget i {
    font-size: 20px;
    color: #1B3A6B;
}

.search-widget input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 16px;
    color: #495057;
}

.search-widget input::placeholder {
    color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 991px) {
    .documents-title {
        font-size: 32px;
    }

    #documents {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .documents-title {
        font-size: 28px;
    }

    .documents-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .search-widget {
        padding: 6px 20px;
    }

    .search-widget input {
        font-size: 15px;
    }
}