@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Outfit', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

.hero-section {
    font-family: 'Inter', sans-serif;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.font-stylish {
    font-family: 'Poppins', sans-serif;
}

/* Custom Gradient Text */
.text-gradient {
    background: linear-gradient(90deg, #10b981 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Custom Styles */
.btn-outline-hover {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease-in-out, border-color 0.4s ease-in-out;
}

.btn-outline-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #0ea5e9 100%);
    z-index: -1;
    transition: width 0.4s ease-in-out;
}

.btn-outline-hover.btn-orange::before {
    background: linear-gradient(90deg, #f97316 0%, #f59e0b 100%);
}

.btn-outline-hover.btn-sky::before {
    background: linear-gradient(90deg, #0ea5e9 0%, #38bdf8 100%);
}

.btn-outline-hover:hover::before {
    width: 100%;
}

.btn-outline-hover:hover {
    color: white !important;
    border-color: transparent !important;
}

/* Custom Shape Divider */
.custom-shape-divider-bottom-1688537659 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1688537659 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1688537659 .shape-fill {
    fill: #f8fafc;
    /* Matching tailwind slate-50 */
}

/* Subtle Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Image Hover Zoom */
.hover-zoom-container {
    overflow: hidden;
}

.hover-zoom-container img {
    transition: transform 0.5s ease;
}

.hover-zoom-container:hover img {
    transform: scale(1.05);
}

/* Twinkle Animation */
@keyframes twinkle {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.6);
        filter: brightness(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
        filter: brightness(1.2);
    }
}

.animate-twinkle {
    animation: twinkle 4s ease-in-out infinite;
}

.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-500 {
    animation-delay: 0.5s;
}

.animation-delay-600 {
    animation-delay: 0.6s;
}

.animation-delay-700 {
    animation-delay: 0.7s;
}

.animation-delay-800 {
    animation-delay: 0.8s;
}

.animation-delay-900 {
    animation-delay: 0.9s;
}

.animation-delay-1000 {
    animation-delay: 1.0s;
}

.animation-delay-1500 {
    animation-delay: 1.5s;
}

.animation-delay-2000 {
    animation-delay: 2.0s;
}

.animation-delay-2500 {
    animation-delay: 2.5s;
}

.animation-delay-3000 {
    animation-delay: 3.0s;
}

.animation-delay-4000 {
    animation-delay: 4.0s;
}

/* Blob Animation */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 10s infinite;
}

/* Orbit Stats Animation */
.orbit-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 4rem auto;
    border-radius: 50%;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.orbit-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(16, 185, 129, 0.2);
    animation: orbit-spin 30s linear infinite;
}

.orbit-pos {
    position: absolute;
    width: 160px;
}

.orbit-pos-1 {
    top: -60px;
    left: 50%;
    margin-left: -80px;
}

.orbit-pos-2 {
    top: 50%;
    right: -80px;
    margin-top: -60px;
}

.orbit-pos-3 {
    bottom: -60px;
    left: 50%;
    margin-left: -80px;
}

.orbit-pos-4 {
    top: 50%;
    left: -80px;
    margin-top: -60px;
}

.orbit-item-content {
    animation: orbit-spin-reverse 30s linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 1rem;
    width: 100%;
}

.orbit-container:hover .orbit-ring,
.orbit-container:hover .orbit-item-content {
    animation-play-state: paused;
}

@keyframes orbit-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes orbit-spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}