/* ══════════════════════════════════════════
   INFO AREA (About & Notice)
══════════════════════════════════════════ */
.plane-text-area {
    padding: 100px 0;
    background: #f8fafc;
    /* Very light neutral grey */
    background-image: radial-gradient(#cbd5e1 0.5px,
            transparent 0.5px);
    /* Subtle dot pattern */
    background-size: 24px 24px;
}

.plane-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Card Accent Colors */
.about-card {
    border-top: 5px solid #1e3a8a;
}

/* Navy */
.notice-card {
    border-top: 5px solid #c9962a;
}

/* Gold */

/* Card Header Section */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-card .icon-box {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
}

.notice-card .icon-box {
    background: rgba(201, 150, 42, 0.1);
    color: #c9962a;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* Card Body Content */
.card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
    text-align: justify;
}

/* Premium Buttons */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #1e3a8a;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.notice-card .modern-btn {
    background: #c9962a;
    box-shadow: 0 4px 15px rgba(201, 150, 42, 0.2);
}

.modern-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Outline Button (Notice All) */
.outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 11px 25px;
    border: 2px solid #e2e8f0;
    color: #64748b;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition-smooth);
    text-decoration: none !important;
} */

.outline-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #334155;
}

.notice-footer-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.notice-footer-btns .outline-btn {
    border: 2px solid #c9962a;
    color: #c9962a !important;
    background: transparent;
}

.notice-footer-btns .outline-btn:hover {
    background: #fff8e4;
    color: #8a5a00 !important;
    border-color: #c9962a;
}

.notice-footer-btns .outline-btn {
    border: 2px solid #c9962a;
    color: #c9962a !important;
    background: transparent;
}

.notice-footer-btns .outline-btn:hover {
    background: #fff8e4;
    color: #8a5a00 !important;
    border-color: #c9962a;
}

/* Responsive */
@media (max-width: 991px) {
    .plane-text-area {
        padding: 40px 0;

    }

    .plane-text-wrapper {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 15px;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .card-header h3 {
        font-size: 20px;
        font-weight: 800;
        color: #0f172a;
        margin: 0;
    }

    .card-body p {
        font-size: 15px;
        line-height: 1.5;
        color: #475569;
        margin-bottom: 20px;
        text-align: justify;
    }

    .modern-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 7px 18px;
        background: #1e3a8a;
        color: #fff !important;
        border-radius: 40px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    }

    .outline-btn {
        display: inline-flex;
        align-items: center;
        padding: 5px 15px;
        border: 2px solid #e2e8f0;
        color: #64748b;
        border-radius: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
    }

}