::-webkit-scrollbar {
    display: none;
}

:root {
    --primary-color: #043852;
    --primary-dark: #032840;
    --primary-light: #0a5a7a;
}

body {
    font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
    background-color: #0a0a0f;
    color: #E0E0E0;
    overflow-x: hidden;
}

h1 {
    font-weight: 500;
}

h2 {
    font-weight: 400;
}

.gradient-border {
    border: 1px solid transparent;
    background: linear-gradient(#0D0D1A, #0D0D1A) padding-box, linear-gradient(to right, #FFFFFF, #9CA3AF) border-box;
}

.gradient-border-hover:hover {
    background: linear-gradient(#1A1A2E, #1A1A2E) padding-box, linear-gradient(to right, #FFFFFF, #9CA3AF) border-box;
}

.gradient-text {
    background: linear-gradient(90deg, #FFFFFF, #D1D5DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.accordion-item.open .accordion-content {
    max-height: 200px;
}

.accordion-item.open .accordion-toggle .fa-plus {
    transform: rotate(45deg);
}

/* Stars Background Animation */
.stars {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
    opacity: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateBigCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateSmallCircle {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes drift {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 10px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(-20px, -10px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.framer-v5tokv {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.framer-q5ecxp {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateBigCircle 60s linear infinite;
}

.framer-1mwerlq {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(4, 56, 82, 0.4), rgba(4, 56, 82, 0.1));
    filter: blur(60px);
    top: 50%;
    left: 50%;
    animation: rotateSmallCircle 40s linear infinite;
}

.blue-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(4, 56, 82, 0.6), rgba(4, 56, 82, 0.2));
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.rotating-icon {
    position: absolute;
    animation: rotate 20s linear infinite;
    opacity: 0.5;
}

.drifting-icon {
    position: absolute;
    animation: drift 15s ease-in-out infinite;
    opacity: 0.6;
}

/* Scroll Animation Styles */
.scroll-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Once visible, keep visible */
.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in-delay-1 {
    transition-delay: 0.1s;
}

.scroll-fade-in-delay-2 {
    transition-delay: 0.2s;
}

.scroll-fade-in-delay-3 {
    transition-delay: 0.3s;
}

.scroll-fade-in-delay-4 {
    transition-delay: 0.4s;
}

.scroll-fade-in-delay-5 {
    transition-delay: 0.5s;
}

/* Hamburger Menu Styles */
#hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 51;
}

/* Hide hamburger on desktop (md: 768px and above) */
@media (min-width: 768px) {
    #hamburger {
        display: none !important;
    }
}

#hamburger .hamburger-line {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger Active State */
#hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

#hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

#hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 40;
}

#mobile-menu.hidden {
    display: none !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

