/* Base Styles using Inter font */
body {
    font-family: 'Inter', sans-serif;
    color: #475569;
    /* Slate 600 */
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1e293b;
    /* Slate 800 */
    letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link {
    font-weight: 500;
    color: #64748b !important;
    margin-right: 0.2rem;
    font-size: 0.9rem;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.nav-link:hover {
    color: #2563eb !important;
    /* Primary Blue */
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    /* Offset fixed navbar */
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

/* Hero Badge */
.bg-primary-subtle {
    background-color: #dbeafe !important;
    color: #1d4ed8 !important;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Hero Visuals */
.hero-image-container {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: #bfdbfe;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: blob-float 8s infinite ease-in-out;
}

@keyframes blob-float {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.float-card {
    background: white;
    border-radius: 12px;
    position: absolute;
    z-index: 2;
}

.main-card {
    width: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.float-1 {
    top: 20%;
    right: 10%;
    animation: float-y 4s infinite ease-in-out;
}

.float-2 {
    bottom: 25%;
    left: 5%;
    animation: float-y 5s infinite ease-in-out reverse;
}

@keyframes float-y {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Buttons */
.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}


.btn-outline-dark {
    border-width: 2px;
    font-weight: 600;
}

/* Custom Backgrounds */
.bg-gradient-blue {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}