:root {
    --primary: #0B1E4F;
    --primary-dark: #081633;
    --accent: #2F5BFF;
    --accent-glow: #4DA3FF;
    --text-main: #FFFFFF;
    --text-secondary: #C7CEDB;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(77, 163, 255, 0.2);
    border-color: rgba(77, 163, 255, 0.3);
}

.product-card-white {
    background: #ffffff !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.product-card-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb !important;
}

.product-card-white p {
    color: #1f2937 !important;
}

.product-card-white p.text-gray-500,
.product-card-white p.text-xs {
    color: #6b7280 !important;
}



/* Drop-up Panel Mechanics */
.drop-up-panel {
    position: fixed;
    bottom: -80%;
    left: 0;
    width: 100%;
    height: 85%;
    z-index: 100;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drop-up-panel.active {
    bottom: 0;
}

.drop-up-handle {
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.handle-bar {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Utilities */
.bg-glass-bg { background-color: var(--glass-bg); }
.border-glass-border { border-color: var(--glass-border); }

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px -10px rgba(47, 91, 255, 0.3);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Navbar */
#navbar {
    background: transparent;
    backdrop-filter: blur(0px);
}
#navbar.scrolled {
    background: var(--primary-dark);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* Animations */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(47, 91, 255, 0.2); }
    100% { box-shadow: 0 0 20px rgba(47, 91, 255, 0.6); }
}

.btn-glow:hover {
    animation: glow 1.5s infinite alternate;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Utilities */
.text-gradient {
    background: linear-gradient(135deg, #FFFFFF 0%, #C7CEDB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-hero-gradient {
    background: radial-gradient(circle at center, #1a2e66 0%, #0B1E4F 100%);
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-glow);
    transform: scale(1.02);
}

.btn-secondary {
    border: 1px solid var(--white);
    background: transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero Elements */
.hero-logo {
    transition: transform 0.5s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Scroll Hide */
.hide-on-panel {
    transition: opacity 0.4s ease;
}

.panel-active .hide-on-panel {
    opacity: 0;
    pointer-events: none;
}

/* Grid Layouts */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}

.group:hover .animate-marquee {
    animation-play-state: paused;
}

