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

:root {
    --primary-color: #FFC107;
    /* Amber 500 */
    --accent-color: #FFA000;
    /* Amber 700 */
    --bg-dark: #050505;
    --text-light: #ffffff;
    --text-muted: #a3a3a3;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 12px;

    /* Bootstrap Overrides */
    --bs-primary: #FFC107;
    --bs-primary-rgb: 255, 193, 7;
    --bs-body-bg: #050505;
    --bs-body-color: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}


/* Glassmorphism Utilities */
.glass-navbar {
    background: rgba(11, 12, 16, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.glass-dropdown {
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-dropdown .dropdown-item {
    color: var(--text-light);
}

.glass-dropdown .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Typography & Text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-secondary {
    color: var(--text-muted) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.02em;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    /* Offset for fixed navbar */
    position: relative;
    overflow: hidden;
}

/* Subtle background glow behind hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(11, 12, 16, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-image-container img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Icon Box */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.glass-card:hover .icon-box {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* Custom Colors */
.text-purple {
    color: #a855f7;
}

.bg-purple {
    background-color: #a855f7;
}

/* Footer Links */
.hover-white:hover {
    color: white !important;
}

/* Step List */
.step-number {
    width: 32px;
    height: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Mobile Navbar tweaks */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(11, 12, 16, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        border: 1px solid var(--glass-border);
    }
}
/* Button Overrides */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #000; /* Black text on yellow button */
    font-weight: 600;
}
.btn-primary:hover {
    background-color: #ffca28; /* Lighter Amber */
    border-color: #ffca28;
    color: #000;
}
.btn-outline-light:hover {
    color: #000;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
