.glassmorphism {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.hover-glow:hover {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
    }
}


.clouds-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('assets/images/cloud.png') repeat-x;
    background-size: cover;
    background-position: top center;
    animation: moveClouds 70s linear infinite;
    opacity: 0.15;
    /* subtle overlay effect */
    z-index: 1;
}

@keyframes moveClouds {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.glow {
    text-shadow: 0 0 3px rgba(0, 102, 255, 0.5), 0 0 8px rgba(0, 102, 255, 0.3);
}

.animate-scroll {
    animation: scroll 40s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #2D3073;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #1d205a;
  }

  /* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2D3073 #f1f1f1;
  }
  
  