.content-section {
    padding: 100px 50px;
    color: white;
    text-align: center;
}

.content-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* LIQUID GLASS NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 22px;
    background: radial-gradient(circle at center, rgb(44, 46, 49), rgba(1, 4, 10, 0.65));
    border-bottom: 1px solid rgba(36, 38, 43, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    flex-wrap: wrap;
}

.navbar .d-flex {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.navbar > * {
    position: relative;
    z-index: 2;
}

.navbar-brand {
    margin-right: 40px; 
}

.nav-link.dropdown-toggle::after {
    display: none;
}

/* Liquid shimmer overlay */
.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(36, 38, 43, 0.4),
        transparent 60%);
    opacity: var(--shimmer-opacity, 0.4);
    mix-blend-mode: overlay;
    animation: liquidWave 10s ease-in-out infinite alternate;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/* Frosted glass edge effect */
.navbar::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg,
        rgba(36, 38, 43, 0.3) 0%,
        transparent 50%,
        rgba(1, 4, 10, 0.3) 100%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

/* Logo styling */
#navbar-logo {
    height: 45px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

#navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(36, 38, 43, 0.6));
}

/* Nav links with glass effect */
.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    padding: 10px 10px !important;
    margin-right: 5px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 14px;
    white-space: nowrap;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(36, 38, 43, 0.4),
        rgba(1, 4, 10, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.nav-link:hover::before,
.nav-link:focus::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link:focus {
    color: rgba(255, 255, 255, 1) !important;
    background: rgba(36, 38, 43, 0.5);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(36, 38, 43, 0.4);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(36, 38, 43, 0.6);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(36, 38, 43, 0.5);
}

/* LIQUID GLASS DROPDOWN MENUS */
.dropdown-menu {
    background: radial-gradient(circle at top, rgba(36, 38, 43, 0.95), rgba(1, 4, 10, 0.95));
    backdrop-filter: blur(25px) saturate(200%) contrast(120%) brightness(110%);
    -webkit-backdrop-filter: blur(25px) saturate(200%) contrast(120%) brightness(110%);
    border: 1px solid rgba(36, 38, 43, 0.5);
    border-radius: 15px;
    padding: 12px 8px;
    margin-top: 8px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(36, 38, 43, 0.4),
        0 0 30px rgba(1, 4, 10, 0.6);
    animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Dropdown glass shimmer */
.dropdown-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%,
        rgba(36, 38, 43, 0.4),
        transparent 70%);
    opacity: 0.5;
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: dropdownShimmer 4s ease-in-out infinite;
}

@keyframes dropdownShimmer {
    0%, 100% {
        transform: translateX(-10%) translateY(5%);
        opacity: 0.4;
    }
    50% {
        transform: translateX(10%) translateY(-5%);
        opacity: 0.6;
    }
}

.dropdown-item i{
    color:#00ff9d;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: rgba(255, 255, 255, 1);
    background: rgba(36, 38, 43, 0.6);
    backdrop-filter: blur(15px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(36, 38, 43, 0.5);
    transform: translateX(5px);
}

.icon-circle {
    width: 24px;
    text-align: center;
    opacity: 0.9;
}

/* Custom Buttons with glass effect */
.custom-btn {
    padding: 8px 10px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: none;
}

.custom-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(36, 38, 43, 0.4),
        rgba(1, 4, 10, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-btn:hover::before {
    opacity: 1;
}

.primary-btn {
    background: linear-gradient(135deg, rgba(36, 38, 43, 0.9), rgba(1, 4, 10, 0.9));
    color: rgb(11, 179, 245);
    backdrop-filter: blur(10px);
    box-shadow:
        0 6px 20px rgba(36, 38, 43, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(36, 38, 43, 0.5);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(36, 38, 43, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: white;
    border-color: #6DBFEC;
}

.green-btn {
    background: linear-gradient(135deg, rgba(36, 38, 43, 0.9), rgba(1, 4, 10, 0.9));
    color: #00ff9d;
    backdrop-filter: blur(10px);
    box-shadow:
        0 6px 20px rgba(36, 38, 43, 0.6),
        inset 0 1px 0 rgba(109, 191, 236, 0.2);
    border: 1px solid rgba(109, 191, 236, 0.3);
}

.green-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 25px rgba(36, 38, 43, 0.8),
        inset 0 1px 0 rgba(109, 191, 236, 0.3);
    color: #6DBFEC;
    border: 1px solid #00ff9d;
}

.outline-btn {
    background: rgba(36, 38, 43, 0.5);
    color: white;
    border: 2px solid rgba(36, 38, 43, 0.7);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(36, 38, 43, 0.4);
}

.outline-btn:hover {
    background: rgba(36, 38, 43, 0.7);
    border-color: #6DBFEC;;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(36, 38, 43, 0.5);
    color: white;
}

.arrow {
    transition: transform 0.3s ease;
}

.custom-btn:hover .arrow {
    transform: translate(3px, -3px);
}

/* Mobile toggle button */
.navbar-toggler {
    border: 2px solid rgba(36, 38, 43, 0.7);
    background: rgba(36, 38, 43, 0.5);
    backdrop-filter: blur(10px);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(36, 38, 43, 0.4);
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* Responsive adjustments */

@media (max-width: 1400px){
    .nav-link{
        padding: 6px 6px !important;
    }
}

@media (max-width: 1200px) and (min-width: 900px) {
    .navbar-nav {
        gap: 5px;
    }

}
