body {
    background-color: #fbfcfe;
    color: #0f172a;
}

/* Deep Mesh Gradient */
.mesh-gradient {
    background-color: #0c4a6e;
    background-image:
        radial-gradient(at 0% 0%, hsla(202,100%,20%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(190,100%,30%,1) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(202,100%,20%,1) 0, transparent 50%),
        radial-gradient(at 0% 100%, hsla(190,100%,30%,1) 0, transparent 50%);
}

/* Glass Effects */
.glass {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.glass-dark {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.2) 0%, rgba(2, 132, 199, 0.2) 100%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
    background-color: #0ea5e9 !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #0c4a6e !important;
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 90;
    transition: left 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav a {
    color: white;
    font-size: 1.5rem;
    margin: 1rem 0;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: #0ea5e9;
}

.mobile-nav .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
