@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #1a7a7d 0%, #2B9B9E 50%, #1a7a7d 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.gradient-orange {
    background: linear-gradient(135deg, #F7941D 0%, #e67e00 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes blob {

    0%,
    100% {
        transform: translate(0px, 0px) scale(1);
    }

    25% {
        transform: translate(20px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(50px, 20px) scale(1.05);
    }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Input focus glow effect */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2B9B9E, #F7941D);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #F7941D, #2B9B9E);
}

/* Text shadow for better readability */
.drop-shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Pulse animation for CTA */
@keyframes pulse-shadow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(247, 148, 29, 0);
    }
}

.pulse-shadow {
    animation: pulse-shadow 2s infinite;
}

/* @keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
} */


/* ===== CONTENT AREA START ===== */


/* ===== CONTENT AREA END ===== */


