@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: "Outfit", sans-serif;
}

@keyframes marquee {
    0% {
        transform: translateX(0%)
    }

    100% {
        transform: translateX(-50%)
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.nav-link {
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b83c35;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

@keyframes float {

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

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

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

.hero-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(184, 60, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 60, 53, 0.05) 0%, transparent 50%);
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    /* Star invisible */
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(5px);
    transition: all 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #1f2937;
    font-size: 0.813rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #fafafb;
    color: #f97316;
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 2px;
}

.stat-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glow:hover {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.service-card {
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-image {
    transition: transform 0.5s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-overlay {
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-backdrop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.mobile-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.faq-item.active .faq-toggle {
    background-color: #b83c35 !important;
    border-color: #b83c35;
}
