.tech-solutions {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

.tech-header {
    flex: 1;
    text-align: left;
    margin-top: 250px;
}

.tech-solutions .section-label {
    color: #34C7F5;
    font-size: 16px;
    font-weight: 600;
}



.section-label {
    position: relative;
    display: inline-block;
    color: #34C7F5;
}

.tech-solutions .section-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #1D7AC0, #34C7F5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 700;
    margin: -2px 0;
    text-align: left;
    margin-bottom: 10px;
    color: #333;
    animation: glow 3s ease-in-out infinite;
}

.section-desc{
    color: #1b1b1b !important;
}

.tech-solutions .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1D7AC0, #34C7F5);
    transform-origin: left;
    transition: transform 0.3s ease;
    transform: scaleX(0);
}

.tech-solutions .section-title:hover::after {
    transform: scaleX(1);
}

.capabilities-grid .capability-card {
    background: #FAFCFF;
    border: 1px solid #E8E8E8;
    box-shadow: 0px 4px 8px rgba(3, 7, 18, 0.1);
    border-radius: 1px;
    padding: 40px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.capability-card .icon {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.capability-card:hover {
    box-shadow: 0 16px 24px rgba(3, 7, 18, 0.1);
    transform: translateY(-10px);
}

.capability-card h3, .marketing-card h3, .about-card h3{
    position: relative;
    background: linear-gradient(90deg, #1D7AC0, #34C7F5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(52, 199, 245, 0.1);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.capability-card:nth-child(1), .capability-card:nth-child(3) {
    margin-top: 20px;
    animation-delay: 0.1s;
}

.capability-card:nth-child(2), .capability-card:nth-child(4) {
    margin-bottom: 20px;
}

.capability-card:hover .icon {
    transform: scale(1.1);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .tech-solutions {
        max-width: 900px;
        padding: 50px 20px;
        gap: 30px;
    }

    .tech-header {
        margin-top: 200px;
    }

    .capabilities-grid {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .tech-solutions {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 40px 15px;
    }

    .tech-header {
        flex: none;
        text-align: center;
        margin-top: 0;
        width: 100%;
    }

    .tech-solutions .section-title {
        text-align: center;
        font-size: 24px;
    }

    .capabilities-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .capability-card:nth-child(1), .capability-card:nth-child(3) {
        margin-top: 0;
    }

    .capability-card:nth-child(2), .capability-card:nth-child(4) {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .tech-solutions {
        padding: 30px 10px;
    }

    .tech-solutions .section-label {
        font-size: 14px;
    }

    .tech-solutions .section-title {
        font-size: 22px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .capability-card {
        padding: 30px 10px 10px 10px;
    }

    .capability-card .icon {
        width: 50px;
        height: 50px;
    }

    .capability-card p {
        font-size: 14px;
    }
}