/* Designed and developed by Aditya Panigrahi */

/* UI/UX Design Page Styles */

/* Custom gradient background for UI/UX design */
.mobile-hero-section {
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(0, 0, 0, 0.02) 40px,
            rgba(0, 0, 0, 0.02) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(0, 0, 0, 0.02) 40px,
            rgba(0, 0, 0, 0.02) 41px
        ),
        linear-gradient(135deg, #fefefe 0%, #fafafa 50%, #f8f8f8 100%);
    min-height: 70vh !important;
    padding: 40px 0 !important;
    border-radius: 20px;
}

/* Enhanced hover effects for design-focused elements */
.mobile-hero-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-mockup-img {
    max-width: 60%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-hero-image:hover .mobile-mockup-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.mobile-hero-image:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Enhanced typography for design content */
.mobile-hero-content .about-lead {
    font-family: var(--text-md-medium-font-family);
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.mobile-hero-content .about-points li {
    font-family: var(--text-md-medium-font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #555;
    transition: color 0.3s ease;
}

.mobile-hero-content .about-points li:hover {
    color: #333;
}

.mobile-hero-content .about-points i {
    color: #ec4899;
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.mobile-hero-content .about-points li:hover i {
    transform: scale(1.2);
}

/* Design Process Section with UI/UX specific styling */
.development-process-section {
    background: linear-gradient(135deg, #fefefe 0%, #fafafa 50%, #f8f8f8 100%);
    padding: 80px 0;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
}

.process-header {
    margin-bottom: 60px;
}

.process-service-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.process-service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.process-service-card-content {
    display: flex;
    height: 100%;
}

.process-service-picture {
    flex: 0 0 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 200px;
    background: rgba(248, 249, 250, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.process-service-picture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(236, 72, 153, 0.1) 50%, transparent 70%);
}

.process-service-picture i {
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.process-service-card:hover .process-service-picture i {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.process-service-details {
    flex: 1;
    padding: 40px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-service-title {
    font-family: var(--text-md-medium-font-family);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
}

.process-service-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #f472b6);
    border-radius: 2px;
}

.process-service-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-service-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.process-service-step:hover {
    background-color: rgba(236, 72, 153, 0.05);
    border-color: rgba(236, 72, 153, 0.1);
    transform: translateX(5px);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(236, 72, 153, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.process-service-step:hover .step-icon::before {
    transform: translateX(100%);
}

.process-service-step:hover .step-icon {
    background: rgba(236, 72, 153, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.step-icon i {
    font-size: 16px;
    color: #ec4899;
    transition: transform 0.3s ease;
}

.process-service-step:hover .step-icon i {
    transform: scale(1.2);
}

.step-info h5 {
    font-family: var(--text-md-medium-font-family);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.process-service-step:hover .step-info h5 {
    color: #ec4899;
}

.step-info p {
    font-family: var(--text-md-medium-font-family);
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.process-service-step:hover .step-info p {
    color: #555;
}

/* UI Design card specific styling */
.process-service-card:nth-child(2) .step-icon {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.process-service-card:nth-child(2) .process-service-step:hover {
    background-color: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.1);
}

.process-service-card:nth-child(2) .process-service-step:hover .step-icon {
    background: rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.process-service-card:nth-child(2) .step-icon i {
    color: #10b981;
}

.process-service-card:nth-child(2) .process-service-step:hover .step-info h5 {
    color: #10b981;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .mobile-hero-section {
        padding: 30px 0 !important;
    }
    
    .mobile-mockup-img {
        max-width: 70%;
    }
    
    .process-service-card-content {
        flex-direction: column;
    }
    
    .process-service-picture {
        flex: none;
        padding: 30px 20px;
        min-height: 150px;
    }
    
    .process-service-details {
        padding: 30px 20px;
    }
    
    .process-service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .mobile-hero-section {
        padding: 20px 0 !important;
    }
    
    .development-process-section {
        padding: 60px 0;
    }
    
    .process-service-card {
        margin-bottom: 20px;
    }
    
    .process-service-title {
        font-size: 1.3rem;
    }
    
    .step-info h5 {
        font-size: 1rem;
    }
    
    .step-info p {
        font-size: 13px;
    }
    
    .process-service-steps {
        gap: 15px;
    }
    
    .process-service-step {
        padding: 12px;
    }
}

@media (max-width: 575.98px) {
    .mobile-mockup-img {
        max-width: 100%;
    }
    
    .process-service-picture {
        padding: 25px 15px;
    }
    
    .process-service-details {
        padding: 25px 15px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
    }
    
    .step-icon i {
        font-size: 14px;
    }
}

/* Custom animations for design elements */
.process-service-card {
    /* Animation removed */
}

/* Enhanced focus states for accessibility */
.process-service-step:focus-within {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}

.step-icon:focus {
    outline: 2px solid #ec4899;
    outline-offset: 2px;
}
