/* Base Styles */
body {
    background-color: #f8fafc;
    color: #334155;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Button Slide Effect */
.btn-slide {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background: rgba(255,255,255,0.2);
    transition: width 0.3s ease;
    z-index: -1;
}
.btn-slide:hover::before {
    width: 100%;
}

/* Scroll Reveal Animation */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.elementor-editor-active .reveal-up{opacity: 1}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Floating Animation */
.float-anim {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Hero Text Gradient */
.text-gradient-glow {
    background: linear-gradient(to right, #60a5fa, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}

/* Dot Pattern Background */
.bg-dot-pattern {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Toast Notification */
#toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}
.toast {
    background: white;
    border-left: 4px solid #1e40af;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show {
    transform: translateX(0);
}

/* Blob Animation for Hero */
.blob {
    position: absolute;
    filter: blur(70px);
    z-index: 0;
    opacity: 0.4;
}
.blob-1 { 
    top: -20%; 
    left: -20%; 
    width: 600px; 
    height: 600px; 
    background: linear-gradient(135deg, #3b82f6, #8b5cf6); 
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; 
    animation: morph 15s ease-in-out infinite;
}
.blob-2 { 
    bottom: -20%; 
    right: -20%; 
    width: 500px; 
    height: 500px; 
    background: linear-gradient(135deg, #1e3a8a, #3b82f6); 
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; 
    animation: morph 12s ease-in-out infinite alternate;
    animation-delay: 2s;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0) rotate(0deg); }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(30px, -30px) rotate(180deg); }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: translate(0, 0) rotate(360deg); }
}
/* body .elementor img {
 border: revert;
    border-radius: inherit;
    box-shadow: revert;
    max-width: none;
    height: -webkit-fill-available;
} */