@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #00274c;
    /* Match logo navy */
    color: #e2e8f0;
}

.glass-nav {
    background: rgba(0, 39, 76, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    /* Brighter teal tint on hover */
    border-color: #13b19d;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3), 0 0 20px rgba(19, 177, 157, 0.2);
}

.hero-gradient {
    background: radial-gradient(circle at top right, rgba(19, 177, 157, 0.15), transparent 50%),
        radial-gradient(circle at bottom left, rgba(0, 39, 76, 0.5), transparent 50%);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-fancy {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Adjusted sparkle for light theme */
.btn-fancy::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.btn-fancy:hover::after {
    opacity: 1;
    left: 100%;
    top: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #001a33;
}

::-webkit-scrollbar-thumb {
    background: #13b19d;
    border-radius: 5px;
    border: 2px solid #001a33;
}

::-webkit-scrollbar-thumb:hover {
    background: #2dd4bf;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #13b19d #001a33;
}