

/* Heading */
.hiring-never-been-easy h2 {
    font-weight: 700;
    color: #000;
    margin-bottom: 14px;
    font-family: ProximaNova-Bold;
    text-align: center;
}
.cta-wrap {
	text-align: center;
}
.hiring-never-been-easy .cta-wrap {
	margin-top: 70px;
}
/* ===== Section Wrapper ===== */
.hiring-never-been-easy {
    background: #f7fbff;
}

.hiring-never-been-easy .section-sub {
	max-width: 760px;
	margin: 0 auto 50px;
	font-size: 16px;
	line-height: 1.6;
	color: #000;
	text-align: center;
}
/* ===== Cards Grid ===== */
.hire-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px;
}

/* ===== Individual Card ===== */
.hire-card {
	border-radius: 20px;
	padding: 20px 50px;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	height: 280px;
}


.hire-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

/* ===== Icon Wrapper ===== */
.hire-card img {
	width: 80px;
	height: 80px;
	object-fit: contain;
	margin-bottom: 18px;
}

/* ===== Card Title ===== */
.hire-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

/* ===== Card Text ===== */
.hire-card .card-text {
	font-size: 15px;
	line-height: 1.6;
	color: #000;
	text-align: center;
}

/* ===== Soft Background Colors (Image jaisa) ===== */
.hire-card:nth-child(1) {
    background: linear-gradient(180deg, #EDE9FF 0%, rgba(255, 255, 255, 0) 139.64%);
}

.hire-card:nth-child(2) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) -3.93%, #D8FFDF 95.89%);

}

.hire-card:nth-child(3) {
    background: linear-gradient(180deg, #FFF2DA 0%, rgba(255, 255, 255, 0) 128.04%);

}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hire-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .hire-card {
        height: 100%;
    }
}

@media (max-width: 640px) {
    .hiring-never-been-easy {
        padding: 60px 0;
    }

    .hire-cards {
        grid-template-columns: 1fr;
    }

    .hiring-never-been-easy h2 {
        font-size: 28px;
    }

    
}

@media (max-width: 500px) {
.hire-card-title {
	font-size: 18px;
	font-weight: 600;
	color: #000;
	margin-bottom: 10px;
	text-align: center;
}
}