/* Custom Utilities */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
}

/* Modern Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #26767F 0%, #2DD4BF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Background */
.hero-section {
    background: radial-gradient(circle at top right, #132e32 0%, #0F172A 40%, #020617 100%);
}

/* Glassmorphism Card (Refined) */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

/* Modal Animation */
.modal {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* KEYFRAME ANIMATIONS */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-delay {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delay 7s ease-in-out infinite;
    animation-delay: 1s;
}

.pulse-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #26767F;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: pulse-ring 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}