/* Acer-inspired styling enhancements */

/* Hero section enhancements */
.moxoai-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.moxoai-banner-content {
    padding-top: 60px;
}

/* Clean, modern typography */
.moxoai-suptitle {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Enhanced accent color for tech feel */
.moxoai-accent {
    color: #8c0df5;
    font-weight: 600;
}

/* Card hover effects */
.moxoai-service-card-sm {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.moxoai-service-card-sm:hover {
    transform: translateY(-8px);
    border-color: rgba(140, 13, 245, 0.3);
    box-shadow: 0 20px 40px rgba(140, 13, 245, 0.15);
}

/* Modern section spacing */
section {
    position: relative;
    overflow: hidden;
}

/* Enhanced image frames */
.moxoai-img-frame {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.moxoai-img-frame:hover {
    transform: scale(1.02);
}

/* Clean button styling */
.moxoai-button {
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(140, 13, 245, 0.3);
}

.moxoai-button:hover {
    box-shadow: 0 6px 25px rgba(140, 13, 245, 0.4);
}

/* Link styling */
.moxoai-link {
    transition: all 0.3s ease;
}

.moxoai-link:hover {
    opacity: 0.8;
}

/* Grid improvements */
.moxoai-services-grid {
    gap: 0;
}

.moxoai-services-grid-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Text improvements */
.moxoai-text-lg {
    line-height: 1.8;
    opacity: 0.9;
}

/* Responsive video frames */
@media screen and (max-width: 992px) {
    .moxoai-banner-content .moxoai-img-frame {
        margin-top: 60px;
    }
}

/* Enhanced gradient overlay */
.moxoai-gradient {
    background: linear-gradient(135deg, rgba(140, 13, 245, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Professional spacing */
.moxoai-mb-30 {
    margin-bottom: 30px;
}

/* Clean section dividers */
.moxoai-divider {
    opacity: 0.1;
}

/* Enhanced animation frames */
.moxoai-animation-frame {
    opacity: 0.6;
}

/* Modern card design */
.moxoai-service-card-sm {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
}

/* Professional color scheme */
.moxoai-light-soft {
    opacity: 0.7;
}

/* Smooth transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced focus states */
a:focus,
button:focus {
    outline: 2px solid rgba(140, 13, 245, 0.5);
    outline-offset: 4px;
}

/* Modern scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(140, 13, 245, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(140, 13, 245, 0.7);
}
