/* Floating Navigation Styles */

.glass-nav {
    background: rgb(83 103 149 / 21%);
     /* background: rgba(255, 255, 255, 0.1); */
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0px 0;
}

.glass-nav.scrolled {
    background: rgb(83 103 149 / 21%);
    padding: 0px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.navbar-brand .logo {
    height: 75px;
    transition: var(--transition);
}

.navbar-brand:hover .logo {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 15px;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 4px 8px;
    background: var(--glass-bg);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23022C82' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Off-Canvas Mobile Menu */
.offcanvas {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a237e 100%);
    color: white;
    width: 320px !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
}

.mobile-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.offcanvas-body {
    padding: 25px;
}

/* Mobile Navigation List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    margin: 5px 0;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Mobile Contact Info */
.mobile-contact-info {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info h6 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.contact-item i {
    width: 20px;
    margin-right: 15px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-item span {
    color: white;
    font-size: 0.9rem;
}

/* Mobile Social Links */
.mobile-social-links h6 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hide default navbar toggler */
.navbar-toggler {
    display: none !important;
}

/* Smooth scroll behavior removed for simpler navigation */