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

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mobile-menu {
    transition: all 0.3s ease;
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: vibrate 3s infinite;
}

.hero-button .price {
    font-size: 1.2em;
    font-weight: 700;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    1%, 3%, 5%, 7%, 9% { transform: translateX(-2px); }
    2%, 4%, 6%, 8% { transform: translateX(2px); }
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle button {
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.theme-toggle button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

.dark-mode .text-gray-900 {
    color: #ffffff;
}

.dark-mode .text-gray-600 {
    color: #d1d5db;
}

.dark-mode .bg-white {
    background-color: #2d2d2d;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.currency-dropdown {
    position: relative;
    display: inline-block;
}

.currency-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.375rem;
}

.currency-dropdown:hover .currency-dropdown-content {
    display: block;
}

.currency-option {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #374151;
    transition: background-color 0.3s;
}

.currency-option:hover {
    background-color: #f3f4f6;
}

.dark-mode .currency-dropdown-content {
    background-color: #2d2d2d;
}

.dark-mode .currency-option {
    color: #d1d5db;
}

.dark-mode .currency-option:hover {
    background-color: #3d3d3d;
} 