/* --- Styles for IT Projects & Services Page --- */

/* Hero Section */
.hero-it-projects {
    padding: 6rem 2rem;

    display: flex;
    align-items: center;
    min-height: 85vh;
}

.hero-it-projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-it-projects-text {
    text-align: right;
}

.hero-it-projects-text h1 {
    font-size: 3.6em;
    color: #fff;
    margin-bottom: 1rem;
}

.hero-it-projects-text .subtitle {
    font-size: 1.4em;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 2rem;
}



/* Project Lifecycle Section */
.lifecycle-section {
    padding: 6rem 2rem;
}

.lifecycle-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.lifecycle-step {
    text-align: center;
    padding: 2rem;
}

.lifecycle-step .step-icon {
    font-size: 2.6em;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.lifecycle-step:hover .step-icon {
    transform: scale(1.1) translateY(-5px);
    background: #3b82f6;
    color: #fff;
}

.lifecycle-step h4 {
    font-size: 1.4em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.lifecycle-step p {
    color: #bbb;
}

/* Adding connecting lines */
.lifecycle-steps::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #3b82f6, #3b82f6 5px, transparent 5px, transparent 10px);
    z-index: -1;
}


/* Expertise Section */
.expertise-section {
    padding: 6rem 2rem;
    background-color: #0e2e6d;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.expertise-card i {
    font-size: 2.6em;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    display: block;
}

.expertise-card h5 {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.expertise-card span {
    color: #bbb;
    line-height: 1.6;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-it-projects-grid, .lifecycle-steps {
        grid-template-columns: 1fr;
    }
    .hero-it-projects-grid { text-align: center; }
    .hero-it-projects-image { order: -1; margin-bottom: 2rem; }
    .lifecycle-steps::after { display: none; }
}

@media (max-width: 768px) {
    .lifecycle-steps {
        grid-template-columns: 1fr;
    }
}