/* Documents Section */
.docs-section {
    width: 90%;
    margin: 20px auto;
    text-align: center;
}

.docs-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #003f7f;
}

/* Grid */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
}

/* Card */
.doc-box {
    background: #ffffff;
    border-radius: 12px;

    /* ⬇️ HEIGHT CONTROL */
    padding: 20px 18px;   /* was 35px 20px */
    min-height: 180px;    /* ensures compact card */

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    transition: .3s;

    border-left: 3px solid #002b5c;
    border-right: 3px solid #002b5c;
    border-top: 3px solid #ff9933;
    border-bottom: 3px solid #ff9933;

    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* gap: 16px; */
}

.doc-box:hover {
    transform: translateY(-6px);
}

/* PDF Icon */
.pdf-icon {
    width: 70px;
    margin-bottom: 18px;
}

/* Document Name */
.doc-name {
    font-size: 22px;
    margin-bottom: 25px;
    color: #444;
    font-weight: 500;
}

/* Button */
.doc-btn {
    display: inline-block;
    width: 75%;
    padding: 14px 0;
    border: 2px solid #123696;;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: #123696;;
    transition: all 0.3s ease;
}

.doc-btn:hover {
    background: #123696;;
    color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
    .docs-title {
        font-size: 28px;
    }
    .doc-name {
        font-size: 20px;
    }
}


