/*
Theme Name: Main Theme
Author: Sonew
Description: Main website theme
Version: 1.0
*/


body {
    font-family: 'Open Sans', sans-serif;
}
.hero-gradient {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}
.nav-link:hover {
    color: #000;
}
.solution-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
.floating {
    animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.hero-gradient {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}
.hero-highlight {
    position: relative;
    z-index: 1;
}
.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: rgba(59, 130, 246, 0.4);
    z-index: -1;
    transform: skewY(-2deg);
}
.hero-image-container {
    perspective: 1000px;
}
.hero-image {
    transform-style: preserve-3d;
    transform: rotateY(-5deg) rotateX(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
}
.scroll-down {
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.solution-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.gradient-bg {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}
.feature-icon {
    transition: all 0.3s ease;
}
.solution-card:hover .feature-icon {
    transform: scale(1.1);
}
.learn-more {
    position: relative;
}
.learn-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}
.solution-card:hover .learn-more::after {
    width: 100%;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
/* Mobile menu styles */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}