::-webkit-scrollbar {
    display: none;
}

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(255, 255, 255, 0.3), rgba(209, 213, 219, 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(255, 255, 255, 0.8), rgba(209, 213, 219, 0.4));
    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: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.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;
}
