* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(to right, #eef3fb, #f9fbff);
}

/* Main Portal Box */
.portal-box {
    width: 950px;
    margin: 20px auto;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #cdd6e5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Header */
.portal-header {
    text-align: center;
    padding: 25px 15px;
    background: linear-gradient(to right, #ccd6eb, #a5bdde);
    color: white;
    display: flex;
    justify-content: center;
}

.portal-header img {
    width: 90px;
    margin-bottom: 8px;
    filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.3));
}

.portal-header h1 {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
}

.cu-text {
    color: #000;
    font-size: 18px;
}

.portal-header p {
    margin-top: 5px;
    font-size: 16px;
    opacity: 0.9;
    color: #000;
    font-weight: bold;
}

/* Search Section */
.search-section {
    padding: 18px;
    background: #f7faff;
    text-align: center;
    border-bottom: 1px solid #ccd6eb;
}

.search-section input {
    padding: 10px;
    width: 260px;
    border-radius: 8px;
    border: 1px solid #aaa;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.search-section input:focus {
    border-color: #0055aa;
    box-shadow: 0 0 6px rgba(0, 85, 170, 0.4);
}

.search-section button {
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(to right, #003366, #007bff);
    color: white;
    cursor: pointer;
    font-size: 14px;
    margin-left: 8px;
    transition: 0.3s;
}

.search-section button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.25);
}

/* Section Title */
.section-title {
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to right, #0c143c, #0866cb);
    color: white;
    letter-spacing: 0.5px;
}

/* Details Layout */
.details-area {
    padding: 22px;
}

/* Row Style */
.details-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fbff;
    border: 1px solid #d9e2f2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.details-row:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Boxes */
.detail-box {
    padding: 14px 12px;
    border-right: 1px solid #d0d9ea;
}

.detail-box:last-child {
    border-right: none;
}

/* Label */
.label {
    font-size: 14px;
    font-weight: bold;
    color: #0c1b48;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.top-bars01 {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #f9fbff;
    border: 1px solid #d9e2f2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
}

.std-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #0c2457;
}

/* Value */
.value {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

/* Footer */
.portal-footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    background: #f7faff;
    border-top: 1px solid #ccd6eb;
    color: #333;
    font-weight: bold;
}

/* Responsive */
@media(max-width: 900px) {
    .portal-header h1{
        font-size: 22px;
    }
    .portal-box {
        width: 95%;
    }

    .details-row {
        grid-template-columns: 1fr;
    }

    .detail-box {
        border-right: none;
        border-bottom: 1px solid #d0d9ea;
    }

    .detail-box:last-child {
        border-bottom: none;
    }

    .search-section button {
        margin-top: 10px;
    }
}