	/* --- SECTION SHARED STYLING --- */
	section.awards_sec.hiring_sec {
		padding: 50px 0;
		background-color: #fff;
		overflow-x: hidden;
		/* Prevents horizontal scroll from the full-width mobile box */
	}
	/* --- DESKTOP VIEW (Grid Layout) --- */
	.award_sec_child_c {
		display: flex;
		flex-wrap: nowrap;
		gap: 40px;
		margin-top: 40px;
		align-items: flex-start;
	}

	.award_item {
		flex: 1;
		display: flex;
		flex-direction: column;
		text-align: left;
	}

	.award_imc {
		height: 120px;
		display: flex;
		align-items: flex-end;
		margin-bottom: 20px;
	}

	.award_imc img {
		max-width: 180px;
		max-height: 100%;
		width: auto;
		height: auto;
		display: block;
	}

	.award_dashline {
		display: block;
		height: 2.5px;
		width: 38px;
		background-color: #ccc;
		margin-bottom: 20px;
	}

	.award_text {
		font-size: 22px;
		font-weight: 200;
		font-stretch: extra-condensed;
		font-style: normal;
		line-height: 1.4;
		letter-spacing: 0.27px;
		color: #000;

	}

	.hiring_title_award {
		font-size: 110px;
		font-weight: 400;
		font-stretch: 15%;
		font-style: normal;
		font-variation-settings: normal;
		line-height: 1;
		letter-spacing: 1.06px;
		color: #000;
		padding-top: 0;
	}

	/* --- MOBILE VIEW (Slider & Full Width) --- */
	@media (max-width: 768px) {

		section.awards_sec.hiring_sec {
			padding: 20px 0px 0px;
		}

		/* 1. Hide desktop grid */
		.award_sec_child_c {
			display: none !important;
		}

		.hiring_title_award {
			font-size: 68px;
			line-height: .93;
			letter-spacing: .55px;
			margin-top: 30px;
			padding-top: 0;
			font-weight: 500;
			color: #000;
		}


		/* 2. Full Width Black Background Fix */
		.mob_display_non2 {
			background-color: #000 !important;
			width: 100vw;
			position: relative;
			left: 50%;
			right: 50%;
			margin-left: -50vw;
			margin-right: -50vw;
			padding: 0px 0 30px;
			/* Vertical breathing room */
			box-sizing: border-box;
		}

		.award-container {
			width: 100%;
			height: 380px;
			overflow: hidden;
			touch-action: pan-y;
		}

		.award-flipper {
			position: relative;
			width: 100%;
			height: 100%;
		}

		.award-front,
		.award-back {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			padding: 0px 20px;
			box-sizing: border-box;
			background-color: #000;
			color: #fff;
			/* Target transform for sliding */
			transition: transform 0.5s ease-in-out;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}

		/* Slide Positions */
		.award-front {
			transform: translateX(0);
			z-index: 2;
		}

		.award-back {
			transform: translateX(100%);
			z-index: 1;
		}

		.award-flipper.is-rotated .award-front {
			transform: translateX(-100%);
		}

		.award-flipper.is-rotated .award-back {
			transform: translateX(0);
		}

		/* Typography */
		.award_text_mob p {
			font-size: 22px;
			color: #fff;
			margin-right: 0;
			padding: 0 10px;
			text-align: center;
		font-weight: 200;
		font-stretch: extra-condensed;
		font-style: normal;
		line-height: 1.4;
		letter-spacing: 0.27px;
			/* Space between text and image */
		}

		.award_mob_img img {
			max-width: 175px;
			width: 175px;
			height: auto;
			display: block;
		}

		/* 3. Visible Pagination Dots */
		.hiring_sec .slide-dots {
			display: flex;
			justify-content: center;
			align-items: center;
			padding-top: 20px;
		}

		.hiring_sec .dot {
			height: 12px;
			width: 12px;
			margin: 0 5px;
			background-color: transparent;
			border: 1.5px solid #777;
			/* Hollow circle */
			border-radius: 50%;
			display: inline-block;
			transition: background-color 0.5s ease;
		}

		.hiring_sec .dot.active {
			background-color: #fff;
			/* Solid circle */
			border-color: #fff;
		}
	}

	/* Desktop visibility toggle */
	@media (min-width: 769px) {
		.mob_display_non2 {
			display: none !important;
		}
	}