/* Liquid Glass Header Customization */
.site_header .navbar {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 92% !important;
    max-width: 1400px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
    z-index: 1000 !important;
    padding: 10px 30px !important;
    transition: all 0.3s ease !important;
}

.site_logo {
    padding-left: 15px;
}

.site_logo img {
    max-height: 45px;
    width: auto;
}

.main_menu_list .nav-link {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    padding: 10px 20px !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main_menu_list .nav-link:hover,
.main_menu_list .active .nav-link {
    color: #ffd700 !important;
}

/* Scrolled State */
.site_header .navbar.is-fixed {
    background: rgba(255, 255, 255, 0.9) !important;
    top: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
}

.site_header .navbar.is-fixed .nav-link {
    color: #002D72 !important;
    text-shadow: none;
}

.header-btn {
    padding-right: 15px;
}

.header-btn .btn-login {
    background-color: rgba(0, 45, 114, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.header-btn .btn-login:hover {
    background-color: #ffd700;
    color: #002D72;
    border-color: #ffd700;
}

/* Mobile Menu Toggle Button - Black */
.navbar-toggler {
    border: none;
    color: #000 !important;
    font-size: 26px;
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
    .site_header .navbar {
        padding: 10px 15px !important;
        border-radius: 25px !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo on left */
    .site_logo {
        order: 1;
        padding-left: 5px;
    }

    /* Menu button on right */
    .navbar-toggler {
        order: 2;
        margin-right: 0;
        margin-left: auto;
    }

    /* Hide desktop login button */
    .header-btn {
        display: none !important;
    }

    /* Dropdown takes full width below */
    .navbar-collapse {
        order: 3;
        width: 100%;
        flex-basis: 100%;
        background: rgba(10, 25, 47, 0.9) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        padding: 25px;
        border-radius: 20px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .main_menu_list {
        flex-direction: column;
        text-align: center;
    }

    .main_menu_list .nav-link {
        color: #fff !important;
        padding: 14px 20px !important;
        font-size: 17px;
    }

    .main_menu_list .nav-link:hover {
        color: #ffd700 !important;
    }

    /* Mobile Login Button in Dropdown */
    .mobile-login-btn {
        display: block !important;
        text-align: center;
        margin-top: 20px;
    }

    .mobile-login-btn a {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #ffd700, #c5a059);
        color: #0a192f;
        font-weight: 700;
        padding: 14px 35px;
        font-size: 16px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .mobile-login-btn a:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
    }
}

/* Hero Section Updates */
.hero_section {
    padding-top: 180px;
    background-size: cover;
    background-position: center;
}

.hero_title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero_text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Removing star decoration */
.decoration_item.icon_star_1,
.decoration_item.icon_star_2 {
    display: none !important;
}