/* Import base styles from motion graphics */
@import url('motion-graphics-style.css');

/* UI/UX Design Services Hero Section Specific Styles */
.uiux-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uiux-illustration {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.uiux-illustration:hover {
    transform: scale(1.02);
}

/* Override hero title for UI/UX page */
.motion-hero-section .hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
}

/* UI/UX specific color adjustments */
.motion-hero-section .demo-button {
    background: #F5C842;
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.motion-hero-section .demo-button:hover {
    background: #F39C12;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 200, 66, 0.3);
}

.motion-hero-section .demo-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.motion-hero-section .demo-button:hover i {
    transform: translateX(4px);
}

/* UI/UX Services Section */
.uiux-services-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
    max-width: 600px;
}

.see-examples-btn {
    background: #F5C842;
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.see-examples-btn:hover {
    background: #F39C12;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 200, 66, 0.3);
}

.see-examples-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.see-examples-btn:hover i {
    transform: translateY(2px);
}

.uiux-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.uiux-service-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #F0F0F0;
}

.uiux-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.uiux-service-card .service-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.uiux-service-card .service-icon-img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.uiux-service-card .service-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.uiux-service-card .service-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .uiux-illustration {
        max-width: 350px;
    }
    
    .motion-hero-section .hero-title {
        font-size: 36px;
    }
    
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .services-title {
        margin-bottom: 0;
        font-size: 28px;
    }
    
    .see-examples-btn {
        align-self: flex-start;
    }
    
    .uiux-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .uiux-service-card {
        padding: 24px 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .uiux-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}