/* =========================================
   Hero Contact Section Background Updates
========================================= */
.hero-contact-section {
    background-image: url('../assets/images/get-quote.webp');
    background-position: center center;
}

.cunsoltation-main {
    background-image: url('../assets/images/startup.webp');
}

/* Hero Contact Content Max Width */
.hero-contact-content {
    max-width: 900px;
}

/* Industries Feature Card 2 Layout */
.industries-feature-card-2 {
    justify-content: flex-start;
    gap: 30px;
}

/* =========================================
   Tech Stack Grid Adjustments
========================================= */
.tech-stack-main {
    grid-template-columns: repeat(2, 1fr);
}

.grid-tech {
    grid-template-columns: repeat(4, 1fr);
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 1320px) {
    .tech-stack-main {
        display: flex;
        flex-wrap: wrap;
    }
    .tech-card {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .grid-tech {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .grid-tech {
        grid-template-columns: repeat(1, 1fr);
    }
}
