@layer utilities {
    .glass {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.dark ::-webkit-scrollbar-track {
    background: #1e1e1e;
}
::-webkit-scrollbar-thumb {
    background: #088395; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6594B1; 
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    50% { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
    100% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Bouncing Arrow */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
.animate-bounce-slow {
    animation: bounce-slow 2s infinite;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}
.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Accordion transition */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

/* Loader */
.loader {
    border-top-color: transparent;
    -webkit-animation: spinner 1.5s linear infinite;
    animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Blob Animations */
@keyframes blob-bounce {
  0% { transform: translate(0, 0) inherit; }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.animate-blob {
  animation: blob-bounce 10s infinite alternate;
}
.animation-delay-2000 {
  animation-delay: 3s;
}
.animation-delay-4000 {
  animation-delay: 6s;
}

/* Timeline Custom line */
.process-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #088395, #6594B1, transparent);
    transform: translateX(-50%);
    z-index: 0;
}

@media (max-width: 768px) {
    .process-line::before {
        left: 52px;
        transform: none;
    }
}

/* Form inputs styling */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #088395;
    border-color: transparent;
}
