/* Custom Software Development Page Specific Styles */
.service-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.custom-software-hero {
    background-image: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), 
                      url('../assests/custom.jpg'); /* Replace with actual Custom Software Development hero image */
}

.service-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    width: 100%;
}

.service-hero-text {
    width: 50%;
    color: white;
}

.service-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.service-hero-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.service-details {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.service-details-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-details-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.service-details-content p {
    color: #aaa;
    line-height: 1.6;
    font-size: 1.1rem;
}

.service-applications {
    background-color: #0a0a0a;
    padding: 80px 0;
}

.service-applications h2 {
    text-align: center;
    color: white;
    font-size: 3rem;
    margin-bottom: 50px;
}

.applications-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.application-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), #7b1fa2);
    opacity: 0;
    transform: translateY(100%) skewY(-20deg);
    transition: transform 0.5s, opacity 0.5s;
    z-index: 0;
}

.application-card:hover::before {
    opacity: 1;
    transform: translateY(0) skewY(0);
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(200, 46, 214, 0.2);
}

.application-icon {
    color: var(--primary-color);
    font-size: 48px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.application-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.application-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Technologies Section Styles */
.technologies-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.technologies-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 50px;
}

.technologies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.technology-category {
    margin-bottom: 50px;
}

.technology-category h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tech-icon span {
    color: #aaa;
    font-size: 1rem;
}

/* Development Process Section Styles */
.dev-process-section {
    background-color: #0a0a0a;
    padding: 100px 0;
}

.dev-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dev-process-heading {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 50px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.dev-process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.timeline-item {
    flex: 1;
    margin: 0 10px;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.timeline-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.timeline-content {
    text-align: center;
}

.timeline-content h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.timeline-content p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .dev-process-timeline {
        flex-direction: column;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }
}