/* Color Variables tailored to Logo & Futuristic Dark Theme */
:root {
    --bg-dark: #0b0d12;
    --bg-card: rgba(22, 27, 38, 0.7);
    --brand-navy: #0B1B3D;
    --brand-graphite: #4A5568;
    --accent-glow: #2b6cb0;
    --accent-cyan: #319795;
    --text-primary: #e2e8f0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.bg-darker {
    background-color: #07080c;
}

/* Glassmorphism Navigation & Cards */
.glass-nav {
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(49, 151, 149, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(49, 151, 149, 0.1);
}

/* Accent Button & Styling */
.text-accent {
    color: var(--accent-cyan) !important;
}

.bg-accent-glow {
    background-color: rgba(49, 151, 149, 0.15);
    border: 1px solid rgba(49, 151, 149, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, #2b6cb0 0%, #319795 100%);
    color: #fff;
    border: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.btn-accent:hover {
    color: #fff;
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Typography Enhancements */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e0 50%, #319795 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.max-w-700 {
    max-width: 700px;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Parallax Dynamic Orbs Background Effect */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-navy);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-cyan);
    bottom: -150px;
    right: -100px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #2b6cb0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Glass Form Inputs */
.glass-input {
    background-color: rgba(15, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.glass-input:focus {
    background-color: rgba(15, 20, 30, 0.8);
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: 0 0 10px rgba(49, 151, 149, 0.25);
}

/* Gallery hover zoom */
.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}