/* Base hero */
.hero-section {
	background-size: cover;
	background-position: center;
	padding: 0; /* spacing container per control karega */
	position: relative;
	/* no display:flex here */
}

/* Spacing inside container (works across sizes) */
.hero-section .container-xxl {
	padding-top: clamp(48px, 8vh, 120px);
	padding-bottom: clamp(48px, 9vh, 140px);
}

/* Typography */
.hero-title {
	font-weight: 500;
	line-height: 1.1;
	color: #000;
	font-size: clamp(32px, 4vw, 56px);
}

.hero-sub {
	display: inline-block;
	font-size: clamp(14px, 1.2vw, 18px);
	font-weight: 500;
	margin-top: 10px;
	color: #333;
	text-decoration: none;
}

/* Search */
.search-form input {
	border-radius: 12px;
	padding: 12px;
	border: 1px solid #ddd;
}
.padding-top-85px {
	padding-top: 85px;
}
.search-form button.btn-search-hero {
	border-radius: 12px;
	font-weight: 700;
	background: #1d2b44;
	color: #fff;
	transition: transform 0.25s ease, background-color 0.25s ease;
}
.search-form button.btn-search-hero:hover {
	background-color: #ff4d4d;
	transform: translateY(-2px);
}

/* Browse links */
.browse-links a {
	font-size: 16px;
	color: #000;
	text-decoration: none;
	font-weight: 400;
}
.browse-links a:hover {
	text-decoration: underline;
}

.hero-dropdown-menu li a:hover {
	background-color: #1d2b44;
	color: #fff;
	text-decoration: none;
}

/* Suggestions hover */
#locationSuggestions .list-group-item:hover {
	background-color: #1d2b44;
	color: #fff;
}

/* Center column layout */
.center-content {
	align-items: stretch;
}

/* Industries box — fluid, no hard min-width */
.industries-box {
	width: 100%;
	max-width: 420px; /* grow up to this on large screens */
	border-radius: 24px;
	/* border: 1px solid #0d2d45; */
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	padding: 24px 16px;
	text-align: center;
}

.industries-box h4 {
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 700;
	margin-bottom: 14px;
}

/* Industry buttons */
.industry-btn {
	display: block;
	background: #ff5a5a;
	color: #fff;
	padding: 10px 12px;
	margin: 8px auto;
	border-radius: 20px;
	text-decoration: none;
	font-size: 14px;
	transition: transform 0.2s ease, background 0.2s ease;
	max-width: 240px;
}
.industry-btn:hover {
	background: #d93b3b;
	transform: translateY(-1px);
}

/* Right content placeholder */
.right-content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Breakpoints */

/* ≥992px (lg) — ensure columns breathe */
@media (min-width: 992px) {
	.center-content {
		gap: 1.5rem;
	}
}

/* ≥1200px (xl) */
@media (min-width: 1200px) {
	.center-content {
		gap: 2rem;
	}
	.industries-box {
		max-width: 460px;
	}
	.browse-links {
		text-align: left;
	}
}

/* ≥1400px (xxl) — big laptops/monitors */
@media (min-width: 1400px) {
	.hero-section .container-xxl {
		padding-top: 9vh;
		padding-bottom: 10vh;
	}
	.hero-title {
		font-size: clamp(44px, 3.2vw, 64px);
	}
	.industries-box {
		max-width: 500px;
	}
}

/* Tablets */
@media (max-width: 991.98px) {
	.browse-links {
		justify-content: flex-start;
	}
}

/* Mobiles */
@media (max-width: 575.98px) {
	.hero-title {
		font-size: clamp(28px, 8vw, 36px);
	}
	.industries-box {
		padding: 16px 12px;
		border-radius: 16px;
		max-width: 100%;
	}
	.industry-btn {
		font-size: 13px;
		max-width: 220px;
	}
}
