/* BuildTeam specific styles */
.team-benefits {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: #4a6cf7;
}

.benefit-icon i {
    font-size: 2rem;
    color: #4a6cf7;
    transition: all 0.5s ease;
}

.benefit-card:hover .benefit-icon i {
    color: white;
}

/* Icon animations for benefit cards */
.benefit-card:nth-child(1) .benefit-icon {
    animation: pulse 2.5s infinite;
}

.benefit-card:nth-child(2) .benefit-icon i {
    animation: boltMove 3s ease-in-out infinite;
}

.benefit-card:nth-child(3) .benefit-icon {
    animation: glow 2.5s infinite;
}

.benefit-card:nth-child(4) .benefit-icon i {
    animation: spin 10s linear infinite;
}

.benefit-card:nth-child(5) .benefit-icon {
    animation: pulse 3s infinite;
}

.benefit-card:nth-child(6) .benefit-icon {
    animation: float 4s ease-in-out infinite;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

/* Dollar sign icon animation */
.benefit-card:nth-child(1) .benefit-icon i {
    animation: pulse 2s infinite;
}

/* Speed icon animation */
.benefit-card:nth-child(2) .benefit-icon i {
    animation: boltMove 2s ease-in-out infinite;
}

/* Shield icon animation */
.benefit-card:nth-child(3) .benefit-icon i {
    animation: pulse 2.5s infinite;
}

/* Cogs icon animation */
.benefit-card:nth-child(4) .benefit-icon i {
    animation: spin 8s linear infinite;
}

/* Calendar icon animation */
.benefit-card:nth-child(5) .benefit-icon i {
    animation: pulse 3s infinite;
}

/* Expand icon animation */
.benefit-card:nth-child(6) .benefit-icon i {
    animation: bounce 2s infinite;
}

/* Improved Process section animations */
.process-section {
    position: relative;
    margin: 80px 0;
    overflow: visible;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 60px;
    bottom: 60px;
    left: 25px;
    width: 4px;
    background: linear-gradient(to bottom, #4a6cf7 0%, #3a5bd8 100%);
    border-radius: 4px;
    z-index: 0;
    opacity: 0.6;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.process-step.animated {
    opacity: 1;
    transform: translateX(0);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 15px;
    height: 2px;
    background-color: #4a6cf7;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.process-step.animated::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a6cf7 0%, #3a5bd8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.4);
    z-index: 2;
}

.process-step:hover .step-number {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
    background-color: #3a5bd8;
}

.step-content {
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d3748;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition-delay: 0.2s;
}

.step-content p {
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transition-delay: 0.3s;
}

.process-step.animated .step-content h3,
.process-step.animated .step-content p {
    transform: translateY(0);
    opacity: 1;
}

/* Process step hover effects */
.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Add flow indicator dots between steps */
.process-step::after {
    content: '';
    position: absolute;
    left: -39px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4a6cf7;
    transform: translateY(-50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.4s;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.2);
}

.process-step.animated::after {
    transform: translateY(-50%) scale(1);
}

@keyframes processStepIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pricing cards specific styling */
.pricing {
    padding: 80px 20px;
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    position: relative;
    z-index: 1;
    opacity: 0;
}

.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(74, 108, 247, 0.05), transparent);
    transition: height 0.5s ease;
    z-index: -1;
}

.pricing-card:hover::after {
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-grid .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(2) { animation-delay: 0.3s; }
.pricing-grid .pricing-card:nth-child(3) { animation-delay: 0.5s; }

.pricing-header {
    background-color: transparent; /* Reset any background */
    color: white;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 80%);
    animation: rotate 10s linear infinite;
}

.pricing-header i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    position: relative;
    z-index: 1;
}

.pricing-card:hover .pricing-header i {
    transform: scale(1.3) rotate(15deg);
}

.pricing-header h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

/* Fix for Enterprise Team pricing card header */
.pricing-card:nth-child(4) .pricing-header {
    background-color: #805ad5;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-card:nth-child(4) .pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 80%);
    z-index: 0;
}

.pricing-card:nth-child(4) .pricing-header i,
.pricing-card:nth-child(4) .pricing-header h2,
.pricing-card:nth-child(4) .pricing-header p {
    position: relative;
    z-index: 2;
    color: white;
}

/* Rocket animation */
.pricing-card:nth-child(1) .pricing-header i {
    animation: float 3s ease-in-out infinite;
}

/* Building animation */
.pricing-card:nth-child(2) .pricing-header i {
    animation: pulse 3s infinite;
}

/* Crown animation */
.pricing-card:nth-child(3) .pricing-header i {
    animation: glow 2s infinite;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.pricing-desc {
    opacity: 0.9;
    font-size: 0.9rem;
}

.pricing-features {
    padding: 20px 25px;
}

.pricing-features p {
    margin: 15px 0;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: #4CAF50;
    margin-right: 10px;
}

.pricing-price {
    text-align: center;
    padding: 20px;
}

.pricing-price .price-badge, 
.pricing-price .special-badge {
    display: inline-block;
    background-color: #f8f9fa;
    color: #718096;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3748;
    display: block;
    margin: 10px 0;
}

.period {
    color: #718096;
    font-size: 0.9rem;
}

.pricing-card .cta-button {
    display: block;
    margin: 20px;
    text-align: center;
    padding: 12px 20px;
    background-color: #4a6cf7;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.pricing-card .cta-button:hover {
    background-color: #3a5bd8;
}

/* Alternating colors for team packages */
.pricing-card:nth-child(1) .pricing-header {
    background-color: #4a6cf7;
}

.pricing-card:nth-child(2) .pricing-header {
    background-color: #38b2ac;
}

.pricing-card:nth-child(3) .pricing-header {
    background-color: #805ad5;
}

/* Highlighted Subscription Card */
.highlight-card {
    border: 2px solid #4a6cf7;
    transform: translateY(-10px);
    position: relative;
}

.highlight-card::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a6cf7;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    letter-spacing: 1px;
}

.highlight-card .pricing-header {
    background: linear-gradient(135deg, #4a6cf7 0%, #3a5bd8 100%);
    padding-top: 40px;
}

.special-badge {
    display: inline-block;
    background-color: #fff;
    color: #4a6cf7;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.highlight-cta {
    background: linear-gradient(135deg, #4a6cf7 0%, #3a5bd8 100%);
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.4);
}

.highlight-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(74, 108, 247, 0.6);
}

/* Hero section with modern gradient background */
.hero {
    background: linear-gradient(135deg, #3f51b5 0%, #2196f3 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-text {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.hero-text h1 {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-text p {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    font-size: 1.2rem;
}

/* Testimonials section */
.testimonials {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.testimonials-grid .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { animation-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(3) { animation-delay: 0.5s; }

.testimonial-card:before {
    content: "\201C";
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(74, 108, 247, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-details h4 {
    margin: 0;
    color: #2d3748;
}

.author-details p {
    margin: 5px 0 0;
    color: #718096;
    font-size: 14px;
}

/* Contact section enhancements */
.contact {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #718096;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-button {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.5s ease;
    z-index: -1;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button i {
    margin-right: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-button:hover i {
    transform: scale(1.2);
}

.contact-methods .contact-button:nth-child(1) { animation-delay: 0.3s; }
.contact-methods .contact-button:nth-child(2) { animation-delay: 0.5s; }
.contact-methods .contact-button:nth-child(3) { animation-delay: 0.7s; }

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.discord {
    background-color: #5865F2;
    color: white;
}

.email {
    background-color: #4a6cf7;
    color: white;
}

.whatsapp {
    background-color: #25D366;
    color: white;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa;
    padding: 12px 20px;
    border-radius: 5px;
}

.response-time i {
    color: #4a6cf7;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 30px;
}

.inquiry-badge {
    display: inline-block;
    background-color: #4a6cf7;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.card-content > p {
    margin-bottom: 25px;
    color: #718096;
}

.contact-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
    transition: transform 0.3s ease;
    opacity: 0;
}

.contact-highlight:nth-child(1) { animation-delay: 0.3s; }
.contact-highlight:nth-child(2) { animation-delay: 0.5s; }

.contact-highlight i {
    color: #4a6cf7;
    margin-right: 12px;
}

.contact-highlight:hover {
    transform: translateX(5px);
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background-color: #4a6cf7;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0));
    transition: all 0.5s ease;
    z-index: -1;
}

.contact-cta:hover::before {
    left: 100%;
}

.contact-cta:hover {
    background-color: #3a5bd8;
}

.contact-cta i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.contact-cta:hover i {
    animation: shake 0.8s ease-in-out;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .process-step {
        padding-left: 50px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        transform: translateY(0);
        order: -1;
    }
    
    .process-section::before {
        left: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(74, 108, 247, 0.5); }
    50% { box-shadow: 0 0 20px rgba(74, 108, 247, 0.8); }
    100% { box-shadow: 0 0 5px rgba(74, 108, 247, 0.5); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes boltMove {
    0% { transform: translateX(-15px) rotate(-10deg); }
    50% { transform: translateX(15px) rotate(10deg); }
    100% { transform: translateX(-15px) rotate(-10deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation classes for scroll animations */
.animate-fade-in {
    animation: fadeIn 1s forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-up {
    animation: fadeSlideUp 1s forwards;
}

.animate-slide-left {
    animation: fadeSlideLeft 1s forwards;
}

.animate-slide-right {
    animation: fadeSlideRight 1s forwards;
}

.animate-pop {
    animation: pop 0.6s forwards;
}
