/* Section Start */

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

.section-start {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 0;
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-start::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.35);
	z-index: 0;
}

.start-content {
	position: relative;
	z-index: 1;
}

/* Card Styling */

.card-start-custom {
	border: none !important;
	border-radius: 12px !important;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.card-start-custom:hover {
	transform: translateY(-8px) !important;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16) !important;
}

.card-start-img {
	height: 220px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.card-start-custom:hover .card-start-img {
	transform: scale(1.05);
}

.card-body {
	padding: 35px 30px !important;
}

.card-start-title {
	font-size: 26px !important;
	font-weight: 700 !important;
	color: #1a3a52 !important;
	margin: 0 0 25px 0 !important;
	line-height: 1.3 !important;
	letter-spacing: -0.3px !important;
	text-align: center !important;
}

.card-start-link-text {
	color: #0fb3d8;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: color 0.3s ease;
}

.card-start-custom:hover .card-start-link-text {
	color: #0a8fab;
}

.card-start-link-text i {
	font-size: 11px;
	transition: transform 0.3s ease;
}

.card-start-custom:hover .card-start-link-text i {
	transform: translateX(3px);
}

a.text-decoration-none:hover {
	text-decoration: none !important;
}

/* Responsive */

@media (max-width: 768px) {
	.section-start {
		padding: 60px 0;
	}

	.card-start-img {
		height: 180px;
	}

	.card-body {
		padding: 25px !important;
	}

	.card-start-title {
		font-size: 20px !important;
		margin: 0 0 20px 0 !important;
	}

	.card-start-link-text {
		font-size: 12px;
	}
}

@media (max-width: 576px) {
	.section-start {
		padding: 40px 0;
	}

	.card-start-img {
		height: 160px;
	}

	.card-body {
		padding: 20px !important;
	}

	.card-start-title {
		font-size: 18px !important;
		margin: 0 0 18px 0 !important;
	}

	.card-start-link-text {
		font-size: 11px;
	}
}
