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

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

.primary-bg {
    background: rgba(61, 84, 184, 0.9);
    padding: 64px 0;
}

/* =========================================
   Stats Grid
========================================= */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.stat-icon-circle i {
    font-size: 2rem;
    color: var(--background);
}

/* Hover Effects for Stats */
.stat-item:hover .stat-icon-circle {
    background: var(--background);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-item:hover .stat-icon-circle i {
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--background);
}

/* =========================================
   Industries Feature Card 2 (Additional Styling)
========================================= */
.industries-feature-card-2 {
    justify-content: flex-start;
    gap: 30px;
}

/* =========================================
   Team Grid
========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 auto;
}

/* Individual Team Card */
.team-card {
    background: var(--background);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 450px;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Team Card Image */
.team-card .img-box {
    height: 50%; /* 50% image height */
    overflow: hidden;
}

.team-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Card Text Content */
.team-card .content-box {
    padding: 20px;
    height: 50%; /* 50% text area */
    display: flex;
    flex-direction: column;
}

.team-card h3 {
    font-size: 18px;
    color: #444444;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.team-card p {
    font-size: 16px;
    line-height: 24px;
}

/* =========================================
   Responsive Adjustments
========================================= */
@media (max-width: 1320px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .team-card p {
        font-size: 14px;
    }
    .team-card {
        height: max-content;
    }
    .reverse {
        flex-direction: column-reverse !important;
    }
}

@media (max-width: 800px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-label {
        font-size: 14px;
    }
    .stat-icon-circle {
        width: 60px;
        height: 60px;
    }
    .stat-icon-circle i {
        font-size: 22px;
    }
}

@media (max-width: 660px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .heighlight-item p {
        font-size: 12px;
    }
}
