
    /* ===== TOP HEADER ===== */

    .modern-topbar {
        background: #0b1220;
        color: #fff;
        padding: 8px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .modern-topbar .info-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .modern-topbar i {
            color: #0d6efd;
            font-size: 16px;
        }

    /* ===== MAIN NAVBAR ===== */

    .modern-navbar {
        background: rgba(255,255,255,0.88);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        padding-top: 12px;
        padding-bottom: 12px;
    }

        .modern-navbar .navbar-brand {
            font-size: 32px;
            font-weight: 800;
            color: #0d6efd !important;
        }

        .modern-navbar .nav-link {
            color: #111 !important;
            font-weight: 600;
            margin: 0 8px;
            position: relative;
            transition: .3s;
        }

            .modern-navbar .nav-link:hover,
            .modern-navbar .nav-link.active {
                color: #0d6efd !important;
            }

            .modern-navbar .nav-link::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 0%;
                height: 2px;
                background: #0d6efd;
                transition: .3s;
            }

            .modern-navbar .nav-link:hover::after {
                width: 100%;
            }

    /* ===== LOGIN BUTTON ===== */

    .login-btn {
        background: linear-gradient(45deg,#0d6efd,#0047b3);
        color: #fff;
        border: none;
        padding: 10px 22px;
        border-radius: 30px;
        font-weight: 600;
        transition: .3s;
    }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(13,110,253,0.3);
        }

    /* ===== HERO SECTION ===== */

    .hero-section {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg,#071c3d,#0d6efd);
        min-height: 650px;
        display: flex;
        align-items: center;
    }

        .hero-section::before {
            content: "";
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
            top: -200px;
            right: -200px;
        }

    .hero-content {
        position: relative;
        z-index: 2;
    }

        .hero-content h1 {
            color: #fff;
            font-size: 58px;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero-content p {
            color: rgba(255,255,255,0.85);
            font-size: 18px;
            margin-top: 20px;
        }

    .hero-btn {
        padding: 14px 35px;
        border-radius: 40px;
        font-size: 17px;
        font-weight: 600;
        margin-top: 20px;
    }

    .hero-img {
        position: relative;
        z-index: 2;
    }
    .hero-img {
        position: relative;
    }

        .hero-img::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient( to right, rgba(7,28,61,0.95) 0%, rgba(7,28,61,0.4) 18%, rgba(7,28,61,0) 35% );
            z-index: 2;
            border-radius: 25px;
        }

        .hero-img img {
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.35), 0 0 40px rgba(13,110,253,0.25);
            animation: floatY 4s ease-in-out infinite;
            opacity: 0.96;
            transform: perspective(1200px) rotateY(-4deg);
            transition: 0.4s ease;
        }

            .hero-img img:hover {
                transform: perspective(1200px) rotateY(0deg) scale(1.02);
            }

    @keyframes floatY {

        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-12px);
        }

        100% {
            transform: translateY(0px);
        }
    }

    /* ===== TRUST BOX ===== */

    .trust-box {
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255,255,255,0.4);
        border-radius: 25px;
        padding: 35px;
        margin-top: -80px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.12), 0 0 30px rgba(13,110,253,0.08);
    }

    .trust-item {
        text-align: center;
        border-right: 1px solid #eee;
    }

        .trust-item:last-child {
            border-right: none;
        }

        .trust-item h2 {
            color: #0d6efd;
            font-weight: 800;
        }

        .trust-item p {
            margin: 0;
            color: #666;
            font-weight: 600;
        }

    /* ===== MOBILE ===== */

    @media(max-width:991px) {

        .hero-section {
            text-align: center;
            padding: 80px 0;
        }

        .hero-content h1 {
            font-size: 38px;
        }

        .hero-img {
            margin-top: 40px;
        }

        .trust-item {
            border-right: none;
            border-bottom: 1px solid #eee;
            padding: 20px 0;
        }

            .trust-item:last-child {
                border-bottom: none;
            }
    }
    .hero-section::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(255,255,255,0.04);
        border-radius: 50%;
        bottom: -200px;
        left: -150px;
    }
.hero-header{
    background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
                url('img/bg-header.jpg');
    background-position: center center;
    background-size: cover;
}

.hero-img{
    max-height: 500px;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* MOBILE NAVBAR FIX */

@media (max-width: 991px) {

    .modern-navbar {
        background: #0d1b2a;
        padding: 10px 0;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        color: #000 !important;
        padding: 12px 15px;
        border-bottom: 1px solid #f1f1f1;
    }

    .navbar-nav .nav-link:hover {
        color: #0d6efd !important;
    }

    .login-btn {
        width: 100%;
        margin-top: 15px;
    }

    .navbar-toggler {
        border: none;
        outline: none;
        box-shadow: none !important;
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }
}
