/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: "Hind Siliguri", sans-serif;
    background: #f4f7fb;
}

/* HEADER */
.mohua-header {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.mohua-header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mohua-header .logo img {
    height: 50px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-nav li a {
    text-decoration: none;
    font-size: 18px;
    color: #333;
    font-weight: 600;
    transition: .2s;
}

.main-nav li a:hover {
    color: #0073aa;
}

/* PAGE CONTENT */
.glass-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(14px);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e5e5e579;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 30px auto;
    width: 80%;
}

/* FOOTER */
.mohua-footer {
    text-align: center;
    padding: 25px;
    background: #ffffffcc;
    border-top: 1px solid #ddd;
    margin-top: 40px;
}
/* HOME PAGE */
.home-wrapper {
    padding: 40px 0;
}

/* ===== SECTION A ===== */
.home-editors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.editor-box {
    background: #0d3cff;
    color: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
}

.editor-box img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    margin-bottom: 15px;
}

.editor-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* ===== SECTION B ===== */
.home-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.link-card {
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: .25s;
}

.link-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.link-card h4 {
    padding: 12px;
    text-align: center;
    font-size: 18px;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* Responsive */
@media (max-width: 768px) {
    .home-editors {
        grid-template-columns: 1fr;
    }
    .home-links {
        grid-template-columns: 1fr 1fr;
    }
}