.home-body {
    background: url("../image/bg/udsh-bg.jpg") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* 🔵 Header илүү premium болгох */
.header-top {
    z-index: 1;
    background: rgba(5, 5, 77, 0.5);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 🔥 Overlay-г илүү гүн өнгөтэй + blur */
.overlay {
    min-height: 100vh;
    padding: 40px 20px;
    background: linear-gradient(
        135deg,
        rgba(5, 5, 77, 0.35),
        rgba(5, 5, 77, 0.85)
    );
    backdrop-filter: blur(6px);
}

/* 🧊 Logo илүү амьд */
.logo {
    max-width: 120px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.6));
    margin-bottom: 10px;
}

/* 🔥 CARD - Glassmorphism */
.card-custom {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ✨ subtle glow */
.card-custom::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.card-custom:hover::before {
    opacity: 1;
}

/* 🎯 Hover effect */
.card-custom:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

/* 🔷 Icon */
.card-custom i {
    font-size: 34px;
    margin-bottom: 12px;
    color: #f8c204;
    transition: 0.3s;
}

/* Hover үед icon өнгө */
.card-custom:hover i {
    color: #ffffff;
    transform: scale(1.15);
}

/* 📝 Text */
.card-custom p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* 🎬 Animation */
.card-custom {
    animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* 📱 Footer */
footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 767.98px) {
    .header-top {
        position: relative !important;
        padding: 10px 0 !important;
        z-index: 10;
    }

    .header-top .row {
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .header-top .col-md,
    .header-top .col-md-auto {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .header-top ul {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .header-top .list-inline-item {
        margin-right: 0 !important;
    }

    .header-top__social-share {
        margin-top: 4px;
    }

    .header-top .col-md-auto {
        flex-wrap: wrap;
    }

    .header-top .col-md-auto > a img {
        max-width: 48px !important;
        margin-left: 8px !important;
    }

    .overlay {
        min-height: calc(100vh - 95px);
        padding: 28px 14px 30px;
        justify-content: flex-start !important;
    }

    .logo {
        max-width: 135px;
        width: 135px;
        height: auto;
        display: block;
        margin: 0 auto 14px;
        object-fit: contain;
    }

    .overlay h5 {
        font-size: 1rem;
        line-height: 1.35;
    }
}