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

:root {
    --primary: #1d4ed8;
    --secondary: #f97316;
    --dark: #0f172a;
    --accent: #ff4500;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: radial-gradient(circle at top, rgba(30, 64, 175, 0.24) 0%, rgba(15, 23, 42, 0.96) 42%, #020617 100%);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.btn-glass-primary {
    cursor: pointer;
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glass-primary:hover {
    background: rgba(99, 102, 241, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.btn-glass-white {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-glass-white:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-highlight {
    background: linear-gradient(135deg, #ff7a1a 0%, var(--accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.22) 0%, rgba(15, 23, 42, 0.12) 42%, rgba(2, 6, 23, 0) 72%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-link {
    background: transparent;
    border: none;
    color: inherit;
    font: inherit;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #fdba74;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 8px;
}

.apply-button {
    background: var(--accent);
    border-color: rgba(255, 69, 0, 0.45);
}

.apply-button:hover {
    background: #e03d00;
    box-shadow: 0 10px 25px -5px rgba(255, 69, 0, 0.35);
}

.section-heading-dark {
    color: #000;
}

.accent-text,
.accent-icon {
    color: var(--accent);
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
    min-height: 100vh;
    background: radial-gradient(circle at top, rgba(30, 64, 175, 0.22) 0%, rgba(15, 23, 42, 0.94) 45%, #020617 100%);
}

.quote-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(99, 102, 241, 0.05), transparent);
}

#quote-box {
    max-width: 800px;
    margin: auto;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

#quote-text {
    font-size: 24px;
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
}

#quote-author {
    display: block;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}
