/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

/* BLURRED BACKGROUND */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url("../image/bg3.jpg");

    background-size: cover;
    background-position: center 42%;

    filter: blur(3px);
    transform: scale(1.05); /* hides blur edges */
    z-index: -1;
}



.hero h1 {
    margin: 0;
    font-size: 32px;
}

.hero p {
    margin-top: 6px;
    font-size: 16px;
}

/* GRID */
.container {
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* GRID */
.container {
    padding: 20px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

/* CARD */
.card {
    background: #f7f7f7;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card h3 {
    margin: -15px -15px 10px -15px;
    padding: 8px 10px;
    background: linear-gradient(to right, #1c3f6e, #294e89);
    color: white;
    font-size: 16px;
}

/* FORM */
label {
    font-size: 13px;
    margin-bottom: 4px;
}

input {
    padding: 6px;
    font-size: 13px;
    margin-bottom: 8px;
}

.row {
    display: flex;
    gap: 6px;
}

button {
    background: #1e4f8f;
    color: white;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
}

button.small {
    padding: 6px 10px;
}

/* ALERT */
.alert {
    margin-top: auto;
    background: #c0392b;
    color: white;
    padding: 8px;
    font-size: 12px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 13px;
    margin-bottom: 8px;
}

th, td {
    border: 1px solid #ccc;
    padding: 4px;
    text-align: left;
}

/* CLICKJACKING */
.iframe-box {
    border: 1px solid #aaa;
    padding: 12px;
    text-align: center;
    background: #eee;
    margin-bottom: 8px;
    font-size: 13px;
}

/* FOOTER */
.footer {
    background: #0f2c56;
    color: #ffcc00;
    text-align: center;
    padding: 12px;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .container {
        grid-template-columns: 1fr;
    }
}



