/* ── INDUSTRIES GRID STYLING ── */
.ind-grid-section {
    padding: 100px 0;
    background: var(--white);
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Standard Industry Card */
.ind-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ind-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: var(--blue-light);
}

.ind-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: var(--sh-sm);
    transition: all 0.3s ease;
}

.ind-card:hover .ind-icon {
    background: var(--blue);
    color: var(--white);
}

.ind-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.ind-card p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.ind-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}


/* ── SPECIAL CTA CARD STYLING ── */
.ind-card-cta {
    /* Background & Shape */
    background: linear-gradient(135deg, #00143c 0%, #004a99 100%);
    border-radius: 15px;
    padding: 40px 30px;

    /* Layout */
    display: flex !important;
    /* Forces visibility */
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none !important;
    height: 100%;
    min-height: 320px;
    /* Matches the height of standard cards */

    /* Animation */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    z-index: 5;
}

.ind-card-cta:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 20, 60, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Icon in CTA Card */
.ind-icon-white {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ind-card-cta:hover .ind-icon-white {
    background: #ffffff;
    color: #004a99;
    transform: rotate(360deg);
}

/* Typography in CTA Card */
.ind-card-cta h4 {
    font-family: 'Manrope', sans-serif;
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.ind-card-cta p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* CTA Link/Button Text */
.cta-btn-link {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ind-card-cta:hover .cta-btn-link {
    background: #ffffff;
    color: #00143c;
}


/* Responsive Grid */
@media (max-width: 1199px) {
    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }

    .ind-grid-section {
        padding: 60px 0;
    }
}