/* =====================================================
   GLOBAL VARIABLES
   ===================================================== */
:root {
    --blue-dark: #041E42;
    --blue-mid: #0A3D91;
    --blue-accent: #4EA3FF;
    --white-glass: rgba(255,255,255,0.50);
    --white-soft: rgba(255,255,255,0.65);
    --transition: 0.25s ease;
    --radius: 16px;
}

/* =====================================================
   BODY BACKGROUND
   ===================================================== */
.glass-body {
    background: radial-gradient(circle at top, #0A3D91, #041E42);
    min-height: 100vh;
    color: #1a1a1a;
}

/* =====================================================
   HEADER — GLASS EFFECT
   ===================================================== */
.glass-header {
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    height: 140px;
    width: auto;
}

.logo-text {
    color: white;
    font-size: 1.35rem;
    font-weight: 700;
}

/* =====================================================
   NAVIGATION — Icons + Text (NO buttons)
   ===================================================== */
.nav-icon-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px !important;
    font-size: 1rem;
    color: rgba(255,255,255,30) !important;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

    /* NAV ICONS */
    .nav-icon-link i {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.75);
        transition: var(--transition);
    }

    /* HOVER */
    .nav-icon-link:hover {
        color: white !important;
    }

        .nav-icon-link:hover i {
            color: white !important;
            transform: translateY(-1px);
        }

/* ACTIVE ITEM */
.nav-active {
    color: white !important;
    font-weight: 600;
    border-bottom: 2px solid var(--blue-accent);
    padding-bottom: 8px !important;
}

    .nav-active i {
        color: var(--blue-accent) !important;
    }

/* MOBILE NAV */
.glass-nav {
    background: rgba(255,255,255,0.01);
    border-radius: 12px;
    padding: 10px;
}

/* =====================================================
   DROPDOWNS (GLASS STYLE)
   ===================================================== */
.dropdown-menu.glass-dropdown {
    background: #4EA3FF;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
}

    .dropdown-menu.glass-dropdown .dropdown-item {
        color: white;
        padding: 10px 16px;
        transition: 0.2s;
    }

        .dropdown-menu.glass-dropdown .dropdown-item:hover {
            background: rgba(255,255,255,0.80);
            color: white;
        }

/* =====================================================
   MAIN CONTENT — SOLID WHITE
   ===================================================== */
.page-content-glass {
    background: #ebfaff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 0 25px rgba(0,0,0,0.12);
}

/* =====================================================
   HERO BLOCK
   ===================================================== */
.hero-inner {
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: #ebfaff;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--blue-mid);
}

.hero-subtitle {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #444;
}




/* =====================================================
   FEATURE CARDS
   ===================================================== */
.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 0 12px rgba(0,0,0,0.07);
    transition: var(--transition);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 16px rgba(0,0,0,0.12);
    }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-modern {
    background: var(--blue-accent);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-modern:hover {
        background: var(--blue-mid);
    }

/* =====================================================
   FOOTER
   ===================================================== */
.glass-footer {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.12);
    color: white;
}
.hero-image {
    background-image: url('/images/banner.png');
    background-size: contain; /
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 40vh;
    border-radius: 20px;
}
