:root {
    --bg-color: #00010A;
    --text-color: #ffffff;
    --primary-color: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: rgba(10, 26, 47, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.z-10 {
    z-index: 10;
}

.relative {
    position: relative;
}

/* Stars Animation */
.static-star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: pulse-star infinite ease-in-out;
}

@keyframes pulse-star {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.shooting-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    filter: blur(1px);
    animation: shoot-star infinite ease-out;
    opacity: 0;
}

.shooting-star-trail {
    position: absolute;
    top: 50%;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    width: 0;
    transform-origin: right;
    transform: translateY(-50%);
    animation: shoot-trail infinite ease-out;
}

@keyframes shoot-star {
    0% {
        transform: translate(0, 0) rotate(-45deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translate(-150px, 100px) rotate(-45deg);
        opacity: 0;
    }
}

@keyframes shoot-trail {
    0% {
        width: 0;
    }

    10% {
        width: 60px;
    }

    100% {
        width: 0;
    }
}

/* Custom Utilities */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-white-60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hover-text-white:hover {
    color: #ffffff !important;
}

.text-gradient-cyan {
    background: linear-gradient(to right, #7EC8E3, #00C8FF, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-dark {
    background: linear-gradient(to bottom, rgba(0, 1, 10, 0.5), rgba(10, 26, 47, 0.7), #00010A);
}

.btn-gradient-cyan {
    background: linear-gradient(to right, #7EC8E3, #00C8FF);
    border: none;
    color: #000;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient-cyan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #00C8FF, #7EC8E3);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-gradient-cyan:hover::before {
    opacity: 1;
}

.btn-outline-cyan {
    border-color: rgba(126, 200, 227, 0.5);
    color: #fff;
}

.btn-outline-cyan:hover {
    border-color: #7EC8E3;
    background: rgba(126, 200, 227, 0.1);
    color: #fff;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.neural-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-in-out infinite;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }

    50% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: -1000;
        opacity: 0;
    }
}

.scroll-indicator {
    width: 24px;
    height: 40px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    animation: scrollBounce 1.5s infinite ease-in-out;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

.group-hover-translate-x:hover {
    transform: translateX(4px);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* About & Products Styles */
.bg-gradient-about {
    background: linear-gradient(to bottom, #00010A, rgba(10, 26, 47, 0.2), #00010A);
}

.bg-gradient-products {
    background: linear-gradient(to bottom, #00010A, rgba(10, 26, 47, 0.3), #00010A);
}

.bg-cyan-5 {
    background-color: rgba(126, 200, 227, 0.05);
}

.bg-cyan-10 {
    background-color: rgba(0, 200, 255, 0.1);
}

.bg-info-10 {
    background-color: rgba(126, 200, 227, 0.1);
}

.bg-glass-card {
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.6), rgba(0, 1, 10, 0.6));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(126, 200, 227, 0.2);
}

.bg-dark-glass {
    background-color: rgba(10, 26, 47, 0.4);
}

.bg-gradient-glow {
    background: linear-gradient(to right, rgba(126, 200, 227, 0.2), rgba(0, 200, 255, 0.2));
}

.bg-gradient-cyan-rev {
    background: linear-gradient(to right, #00C8FF, #7EC8E3);
}

.hover-lift:hover {
    transform: translateY(-4px);
    border-color: rgba(126, 200, 227, 0.3) !important;
}

.hover-border-cyan:hover {
    border-color: rgba(0, 200, 255, 0.5) !important;
}

.group-hover-opacity-20:hover {
    opacity: 0.2;
}

.group:hover .group-hover-opacity-20 {
    opacity: 0.2;
}

.animate-pulse-slow {
    animation: pulseSlow 8s infinite ease-in-out;
}

@keyframes pulseSlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

.w-96 {
    width: 24rem;
}

.h-96 {
    height: 24rem;
}

.space-y-2> :not([hidden])~ :not([hidden]) {
    margin-top: 0.5rem;
}

/* Competitors, Contact & Footer Styles */
.bg-dark-20 {
    background-color: rgba(10, 26, 47, 0.2);
}

.bg-dark-30 {
    background-color: rgba(10, 26, 47, 0.3);
}

.bg-dark-50 {
    background-color: rgba(0, 1, 10, 0.5);
}

.bg-gradient-divider {
    background: linear-gradient(to right, transparent, rgba(0, 200, 255, 0.5), transparent);
}

.animate-scale-x {
    animation: scaleX 1.5s ease-out forwards;
    transform-origin: center;
}

@keyframes scaleX {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.bg-gradient-cyan-fade {
    background: linear-gradient(135deg, rgba(126, 200, 227, 0.05), transparent);
}

.bg-gradient-cyan-rev-fade {
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.05), transparent);
}

.bg-dark-glass-border {
    background-color: rgba(10, 26, 47, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(126, 200, 227, 0.2);
}

.border-info-10 {
    border-color: rgba(126, 200, 227, 0.1) !important;
}

.border-info-20 {
    border-color: rgba(126, 200, 227, 0.2) !important;
}

.border-info-30 {
    border-color: rgba(126, 200, 227, 0.3) !important;
}

.hover-border-info-30:hover {
    border-color: rgba(126, 200, 227, 0.3) !important;
}

.hover-translate-x:hover {
    transform: translateX(4px);
}

.bg-gradient-advantage {
    background: linear-gradient(135deg, rgba(126, 200, 227, 0.1), rgba(0, 200, 255, 0.1));
}

.placeholder-white-40::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hover-opacity-90:hover {
    opacity: 0.9;
}

.hover-scale-sm:hover {
    transform: scale(1.02);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
}

.hover-bg-info-10:hover {
    background-color: rgba(0, 200, 255, 0.1);
}

/* Background Utilities */
.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

/* Alert Messages */
.alert-success {
    background-color: rgba(0, 200, 255, 0.2);
    border: 1px solid #00C8FF;
    color: #00C8FF;
}

.alert-error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.z-100 {
    z-index: 100;
}

/* Contact Form Expansion */
.contact-form-expanded {
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-form-expanded {
        padding: 2rem;
    }
}

/* Form Control Overrides */
.form-control:focus {
    background-color: rgba(0, 1, 10, 0.5);
    border-color: rgba(0, 200, 255, 0.5);
    color: white;
    box-shadow: none;
}

.navbar-logo {
    height: 60px; /* Increased from 40px to 60px */
    width: auto;
    transition: height 0.3s ease;
}

/* Adjust navbar height to accommodate larger logo */
.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

#header {
    min-height: 80px; /* Ensure navbar can accommodate larger logo */
}