	/**
 * Main CSS for satyendra UK theme
 * This file contains styles specific to the main section of the satyendra UK WordPress theme.
 * It ensures a cohesive design and responsive layout for the main content across all devices.
 */
	:root {
		--spl-bg: #d7e1fa;
		--spl-blue: #2c2c94;
		--spl-red: #e61a28;
		--spl-dark: #333333;
	}

	/*$$$$$$$$$$$$$$$$$$$$$$$$/*HOMEPAGE MAIN CSS *?$$$$$$$$$$$$$$$$$$$$$$$ /
	/* /////////////////////////////////////////
  hero section Homepage 
  ///////////////////////////////////////////*/
	/* Hero Section Main Container */
	.spl_uk_home_hero {
		background-color: var(--spl-bg);
		display: flex;
		align-items: center;
		padding: 140px 0;
		overflow: hidden;
		/* Important for AOS horizontal entrance */
	}

	/* Text Content Prefixing */
	.spl_uk_home_hero_title {
		color: var(--spl-blue);
		font-weight: 400;
		line-height: 1.1;
		font-size: clamp(2rem, 2.5vw, 2.5rem);
		margin-bottom: 20px;
	}

	@media (max-width:450px) {
		.spl_uk_home_hero_title {
			font-size: 1.8rem !important;
		}
	}

	.spl_uk_home_hero_title span {
		color: var(--spl-red);
		text-transform: uppercase;
		font-size: 4rem;
		font-weight: 700;
	}

	.spl_uk_home_hero_subtitle {
		color: #2d3092;
		font-weight: 500;
		font-size: clamp(1rem, 2vw, 1.25rem);
		max-width: 450px;
		margin-bottom: 0;
	}

	/* Image Section Prefixing */
	.spl_uk_home_hero_img_container {
		text-align: right;
	}

	/* Your image */
	.spl_uk_home_hero_main_img {
		max-width: 100%;
		height: auto;
		animation: floatZoom 15s ease-in-out infinite;
	}

	/* Animation keyframes */
	@keyframes floatZoom {
		0% {
			transform: scale(1) translateY(0px);
		}

		25% {
			transform: scale(1.05) translateY(-10px);
		}

		50% {
			transform: scale(1.1) translateY(0px);
		}

		75% {
			transform: scale(1.05) translateY(10px);
		}

		100% {
			transform: scale(1) translateY(0px);
		}
	}

	/* Responsive Breakpoints */
	@media (max-width: 991.98px) {
		.spl_uk_home_hero {
			text-align: center;
			padding: 60px 0;
		}

		.spl_uk_home_hero_subtitle {
			margin: 0 auto;
		}

		.spl_uk_home_hero_img_container {
			margin-top: 50px;
			text-align: center;
		}
	}

	/* /////////////////////////////////////////
        hero section Homepage 
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 2 Homepage 
     ///////////////////////////////////////////*/
	.spl_uk_home_2 {
		margin-top: -60px;
		padding-bottom: 90px;
	}

	.spl_uk_home_2_bg1 {
		background-color: #f0f0f000;
	}

	.spl_uk_home_2_bg2 {
		background-color: #e3e3e300;
	}

	.spl_cert_card {
		padding: 30px 20px;
		/* border-radius: 15px; */
		text-align: center;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-around;
		/* border: 1px solid #eee; */
		transform: scale(1);
		opacity: 1;
		/* box-shadow: 0 5px 15px rgba(0,0,0,0.02); */
		transition: border-color 0.3s ease;
	}

	.spl_cert_img {
		margin-bottom: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.spl_cert_img img {
		max-width: 140px;
		max-height: 100%;
		object-fit: contain;
		border: 3px solid #f0f0f0;
		border-radius: 50%;
	}

	.spkfew_not_boirder_spl_image {
		border: none !important;
		border-radius: 0 !important;
	}

	.spl_cert_card p {
		font-size: 10px;
		font-weight: 700;
		color: var(--spl-blue);
		margin: 0;
		line-height: 1.4;
		text-transform: uppercase;
	}

	/* Hover state if user stops scrolling and interacts */
	.spl_cert_card:hover {
		border-color: var(--spl-red);
	}

	@media (max-width: 767px) {
		.spl_cert_card {
			padding: 20px 10px;
		}

		.spl_cert_img {
			height: 70px;
		}
	}

	/* /////////////////////////////////////////
        Section 2 Homepage End
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 3 Homepage 
     ///////////////////////////////////////////*/
	.spl_uk_home_three_section {
		background-color: #f9f5f3;
		padding: 90px 0;
		overflow: hidden;
	}

	/* Video Container with the Green Frame */
	.spl_uk_home_three_video_container {
		position: relative;
		padding: 5px;
		border: 4px solid #9fb69d;
		/* The specific frame color from your image */
		line-height: 0;
		display: block;
	}

	.spl_uk_home_three_video_wrapper {
		position: relative;
		width: 100%;
		overflow: hidden;
	}

	.spl_uk_home_three_video_wrapper video {
		width: 100%;
		height: 400px;
		display: block;
		object-fit: cover;
	}

	/* Custom Play Button Overlay */
	.spl_uk_home_three_play_overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.1);
		/* Subtle darkening */
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		z-index: 2;
		transition: background 0.3s ease;
	}

	.spl_uk_home_three_play_overlay:hover {
		background: rgba(0, 0, 0, 0.2);
	}

	.spl_uk_home_three_play_circle {
		width: 80px;
		height: 80px;
		background: rgba(255, 255, 255, 0.9);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: transform 0.3s ease;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	}

	.spl_uk_home_three_play_overlay:hover .spl_uk_home_three_play_circle {
		transform: scale(1.1);
	}

	.spl_uk_home_three_play_icon {
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 15px 0 15px 25px;
		border-color: transparent transparent transparent var(--spl-blue);
		margin-left: 6px;
	}

	/* Text Styling */
	.spl_uk_home_three_title {
		color: var(--spl-blue);
		font-weight: 600;
		font-size: 2.2rem;
		margin-bottom: 25px;
	}

	.spl_uk_home_three_content p {
		color: var(--spl-dark);
		line-height: 1.8;
		font-size: 1rem;
		margin-bottom: 20px;
	}

	.spl_uk_home_three_content strong {
		color: var(--spl-dark);
		font-weight: 800;
		display: block;
		margin-bottom: 12px;
	}

	@media (max-width: 991px) {
		.spl_uk_home_three_section {
			padding: 60px 0;
		}

		.spl_uk_home_three_content {
			margin-top: 40px;
		}

		.spl_uk_home_three_play_circle {
			width: 60px;
			height: 60px;
		}
	}

	/* /////////////////////////////////////////
        Section 3 Homepage End
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 4 Homepage
     ///////////////////////////////////////////*/
	.spl_uk_home_4_section {
		padding: 140px 0;
		background-color: #ffffff;
		overflow: hidden;
	}

	/* Header Styling */
	.spl_uk_home_4_header {
		text-align: center;
		margin-bottom: 50px;
	}

	.spl_uk_home_4_title {
		color: var(--spl-blue);
		font-weight: 700;
		font-size: clamp(1.8rem, 4vw, 2.5rem);
		max-width: 1000px;
		margin: 0 auto 20px;
		line-height: 1.2;
	}

	.spl_uk_home_4_highlight {
		color: var(--spl-red);
		font-weight: 600;
		font-size: 1.1rem;
		margin-bottom: 20px;
	}

	.spl_uk_home_4_description {
		color: #6c6c6c;
		max-width: 1100px;
		margin: 0 auto;
		font-size: 1rem;
		line-height: 1.7;
	}

	/* Product Card Styling */
	.spl_uk_home_4_card {
		height: 450px;
		display: flex;
		border-radius: 12px;
		overflow: hidden;
		flex-direction: column;
		transition: transform 0.3s ease;
		border: 1px solid #f0f0f0;
	}

	.spl_uk_home_4_card:hover {
		transform: translateY(-10px);
	}

	.spl_uk_home_4_img_box {
		background-color: #e5e4e5;
		/* Light grey background for images */
		padding: 15px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.spl_uk_home_4_img_box img {
		max-width: 100%;
		max-height: 220px;
		object-fit: contain;
	}

	.spl_uk_home_4_info {
		background-color: var(--spl-blue);
		padding: 30px 20px;
		text-align: center;
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.spl_uk_home_4_card_title {
		color: #ffffff;
		font-size: 1.3rem;
		font-weight: 700;
		margin-bottom: 20px;
		line-height: 1.3;
	}

	/* "Know More" Button Styling */
	.spl_uk_home_4_btn {
		background-color: #ffffff;
		color: var(--spl-blue);
		text-decoration: none;
		padding: 10px 30px;
		font-weight: 700;
		font-size: 0.9rem;
		border-radius: 8px;
		/* Square edges as per image */
		display: inline-block;
		transition: all 0.3s ease;
	}

	.spl_uk_home_4_btn:hover {
		background-color: var(--spl-red);
		color: #ffffff;
	}

	@media (max-width: 991px) {
		.spl_uk_home_4_section {
			padding: 60px 0;
		}

		.spl_uk_home_4_img_box {
			min-height: 250px;
		}
	}
	.spl_uk_home_4_slider .swiper-pagination {
    position: relative;
    margin-top: 25px;
}

.spl_uk_home_4_slider .swiper-pagination-bullet {
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease;
    margin: 0 5px !important;
}

.spl_uk_home_4_slider .swiper-pagination-bullet-active {
    width: 50px;
    background: #2c2c94;
}

.spl_uk_home_4_slider .swiper-pagination-bullet:hover {
    background: #2c2c94;
    opacity: 0.7;
}

	/* /////////////////////////////////////////
        Section 4 Homepage End
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 5 Homepage End
     ///////////////////////////////////////////*/
	.spl_uk_home_5_wrapper {
		position: relative;
		/* Replace with your actual single large factory image */
		background: url('https://www.sppack.co.uk/wp-content/uploads/2026/03/vgbg.png') center/cover no-repeat fixed;
		display: flex;
		flex-direction: column;
		padding-top: 300px;
		padding-bottom: 300px;
	}

	.div_blue_section_5 {
		background: var(--spl-blue);
		padding: 50px 0;
	}

	/* Red Box positioned at the top left */
	.spl_uk_home_5_red_box {
		background-color: #ce142b;
		color: #ffffff;
		padding: 50px;
		margin-left: calc(-50vw + 50%);
		padding-left: calc(50vw - 50%);
		z-index: 2;
	}

	.reekd_section_red_box_mini {
		background-color: #ce142b;
	}

	.spl_uk_home_5_red_box p {
		margin: 0;
	}

	.spl_uk_home_5_red_box h2 {
		font-weight: 700;
		font-size: clamp(1.8rem, 3vw, 2.8rem);
		line-height: 1.1;
		margin-bottom: 20px;
	}

	/* Blue Overlay Section using a Gradient to blend with the BG image */
	.spl_uk_home_5_blue_overlay {
		color: #ffffff;
		margin-top: auto;
		/* Pushes the blue area to the bottom */
	}

	.spl_uk_home_5_stat_item {
		display: flex;
		align-items: center;
		margin-bottom: 35px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		padding-bottom: 20px;
	}

	.spl_uk_home_5_stat_icon {
		width: 75px;
		margin-right: 20px;
		filter: brightness(0) invert(1);
		/* Makes icons white */
	}

	.spl_uk_home_5_stat_text h4 {
		font-weight: 800;
		font-size: 3.2rem;
		color: #fff;
		margin: 0;
	}

	.spl_uk_home_5_stat_text p {
		font-weight: 600;
		font-size: 16px;
		color: #fff;
		margin: 0;
	}

	.spl_uk_home_5_description {
		font-size: 16px;
		line-height: 1.5;
		color: #fff;
		text-align: justify;
	}

	.div_grey_below_section_5 {
		background-color: #f7f6f8;
	}

	.div_grey_below_section_5 p {
		font-weight: 600;
		font-size: 18px;
		color: #6c6c6c;
		text-align: center;
		margin: 0;
	}

	/* /////////////////////////////////////////
        Section 5 Homepage End
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 6 Homepage 
     ///////////////////////////////////////////*/
	.spl_uk_home_6 {
		padding: 140px 0 100px 0;
		overflow: hidden;
		/* Prevents scrollbars during GSAP entrance */
	}

	.spl_uk_home_6_header h2 {
		color: var(--spl-blue);
		font-weight: 700;
		font-size: 36px;
		margin-bottom: 20px;
	}

	.spl_uk_home_6_header p {
		text-align: center;
	}

	/* Each Column Box */
	.spl_uk_item {
		overflow: hidden;
		height: 100%;
		/* Fixed height ensures a perfect grid */
		position: relative;
		background: #fff;
	}

	.spl_img_side {
		height: 100%;
		width: 100%;
		overflow: hidden;
	}

	.spl_img_side img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}

	/* Hover Effect for Images */
	.spl_uk_item:hover .spl_img_side img {
		transform: scale(1.1);
	}

	.spl_uk_content {
		height: 100%;
		padding: 20px;
		color: #fff;
		display: flex;
		flex-direction: column;
		justify-content: center;
		position: relative;
		z-index: 2;
		transition: background 0.3s ease;
	}

	@media (max-width:600px) {
		.spl_uk_content {
			display: block;
			padding: 40px 20px;
		}
	}

	/* Colors using your variables */
	.spl_bg_red .spl_uk_content {
		background-color: var(--spl-red);
	}

	.spl_bg_blue .spl_uk_content {
		background-color: var(--spl-blue);
	}

	/* Add a subtle overlay on hover for colored boxes */
	.spl_interactive:hover .spl_uk_content {
		filter: brightness(1.1);
	}

	.spl_uk_content h3 {
		font-size: 35px;
		font-weight: 600;
		line-height: 1.2;
		margin: 0;
		margin-left: auto;
		margin-right: auto;
		pointer-events: none;
		/* Allows mouse to "pass through" to the box for GSAP */
	}

	.know_more {
		color: #fff !important;
		text-decoration: none;
		font-size: 14px;
		position: absolute;
		bottom: 25px;
		right: 25px;
		text-transform: uppercase;
		letter-spacing: 1px;
		font-weight: 500;
	}

	@media (max-width:600px) {
		.know_more {
			display: none !important;
		}
	}

	.know_more:hover {
		color: #fff;
		text-decoration: none;
	}

	.spl_view_more_btn {
		background-color: var(--spl-blue);
		color: #fff !important;
		padding: 12px 35px;
		text-decoration: none;
		display: inline-block;
		font-weight: 600;
		transition: all 0.3s ease;
	}

	.spl_view_more_btn:hover {
		background-color: var(--spl-dark);
		color: #fff;
		transform: translateY(-3px);
	}

	/* Responsive fixes */
	@media (max-width: 767px) {
		.spl_uk_home_6_header h2 {
			font-size: 28px;
		}
	}

	/* /////////////////////////////////////////
        Section 6 Homepage End
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 7 Homepage 
     ///////////////////////////////////////////*/
	.spl_uk_home_7 {
		padding: 80px 0 140px 0;
		background: #fff;
	}

	.spl_h7_header h2 {
		color: var(--spl-blue);
		font-weight: 700;
		font-size: 38px;
	}

	.spl_h7_view_more {
		color: var(--spl-blue) !important;
		font-weight: 600;
		text-decoration: none;
	}

	/* plants  */
	.plants .img-wrap {
		overflow: hidden;
		height: 100%;
		position: relative;
	}

	.plants .img-wrap img {
		height: 100%;
		width: 100%;
		object-fit: cover;
		position: absolute;
		inset: 0;
	}

	.plants .img-wrap .text {
		position: absolute;
		text-align: center;
		inset: 0;
		top: 50%;
		z-index: 3;
		font-size: 18px;
		height: 35px;
		color: #fff;
		font-weight: 600;
		display: flex;
		background: #ff0000;
		align-items: center;
		justify-content: center;
		transition: all .3s linear;
		opacity: 1;
	}

	@media (max-width:800px) {
		.plants .img-wrap .text {
			height: 65px;
			font-size: 16px;
		}

		.mb-sjsabfjkasbfs {
			margin-bottom: 20px;
		}
	}

	/* /////////////////////////////////////////
        Section 7 Homepage End
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 8 Homepage 
     ///////////////////////////////////////////*/
	.spl_uk_home_offer {
		padding-bottom: 100px !important;
	}

	.spl_offer_title {
		color: var(--spl-blue);
		font-weight: 800;
		font-size: 32px;
		letter-spacing: 1px;
	}

	.spl_offer_list {
		max-width: 800px;
		margin: 0 auto;
	}

	.spl_offer_item {
		display: flex;
		align-items: center;
		padding: 15px 0;
		border-bottom: 1px solid #e0e0e0;
		text-align: left;
	}

	.spl_offer_item:last-child {
		border-bottom: none;
	}

	.spl_q {
		color: var(--spl-blue);
		font-weight: 900;
		font-size: 10px;
		margin-right: 15px;
		min-width: 25px;
	}

	.spl_offer_item p {
		color: var(--spl-blue);
		font-weight: 700;
		font-size: 20px;
		margin: 0;
	}

	@media (max-width: 767px) {
		.spl_offer_title {
			font-size: 24px;
		}

		.spl_offer_item p {
			font-size: 16px;
		}

		.spl_q {
			margin-right: 15px;
		}
	}

	.spl_separator_lines {
		width: 100%;
		display: block;
		line-height: 0;
		text-align: center;
		/* Prevents unwanted spacing between lines */
	}

	.h3_line_seperator {
		text-align: center;
		z-index: 9999999;
		position: relative;
		background: linear-gradient(180deg, #fff 0%, #fff 50%, #fbfbfb 100%);
		display: inline-block;
		top: 50px;
		padding: 10px 20px;
		font-weight: 800;
		font-size: 30px;
		color: var(--spl-blue);
	}

	@media (max-width:600px) {
		.h3_line_seperator {
			font-size: 20px !important;
		}
	}

	.line_item {
		width: 100%;
		height: 10px;
		/* Matches the slim profile in the image */
		display: block;
	}

	.line_blue {
		background-color: var(--spl-blue);
		/* #2c2c94 */
	}

	.line_red {
		background-color: var(--spl-red);
		/* #e61a28 */
	}

	/* Ensure no padding/margin from parent containers interferes */
	.spl_separator_lines {
		margin-top: 0;
		margin-bottom: 0;
	}

	/* /////////////////////////////////////////
        Section 8 Homepage End
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ HOmepage CSS END  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/*$$$$$$$$$$$$$$$$$$$$$$$$ Career CSS Start  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/* /////////////////////////////////////////
        Section 1 Career 
     ///////////////////////////////////////////*/
	.spl_uk_career_1 {
		width: 100%;
		overflow: hidden;
	}

	.career_banner_wrapper {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.career_bg_img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		filter: brightness(0.5);
	}

	@media (max-width:990px) {
		.career_bg_img {
			object-fit: cover !important;
		}
	}

	.career_badge_overlay {
		position: absolute;
		z-index: 2;
	}

	.career_red_box {
		background-color: var(--spl-red);
		padding: 10px 60px;
		border-radius: 4px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	}

	.career_red_box h1 {
		color: #ffffff;
		font-size: 24px;
		font-weight: 800;
		letter-spacing: 2px;
		text-transform: uppercase;
	}

	/* Responsive adjustment for Mobile */
	@media (max-width: 768px) {
		.career_banner_wrapper {
			height: 300px;
		}

		.career_red_box {
			padding: 10px 40px;
		}

		.career_red_box h1 {
			font-size: 28px;
		}
	}

	/* /////////////////////////////////////////
        Section 1 Career End 
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 2 Career  
     ///////////////////////////////////////////*/
	.spl_uk_career_2 {
		background-color: #ffffff;
		padding-top: 100px;
		padding-bottom: 50px;
	}

	/* Title with Lines on either side */
	.career_title_wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		text-align: center;
	}

	.career_title_wrapper::before,
	.career_title_wrapper::after {
		content: "";
		height: 2.5px;
		background-color: var(--spl-blue);
		/* #2c2c94 */
		flex: 1;
		max-width: 300px;
	}

	.career_main_title {
		color: var(--spl-blue);
		font-weight: 700;
		font-size: 48px;
		margin-bottom: 0;
		white-space: nowrap;
	}

	.career_sub_text {
		font-size: 24px;
		color: #333;
	}

	.career_description {
		font-size: 18px;
		line-height: 1.8;
		color: #555;
		margin: 0 auto;
	}

	.career_call_to_action {
		color: var(--spl-red);
		/* #e61a28 */
		font-weight: 700;
		font-size: 22px;
	}

	/* Brand Dual Lines */
	.career_dual_lines {
		width: 100%;
		overflow: hidden;
	}

	.career_line {
		height: 3px;
		width: 100%;
	}

	.career_line.line_blue {
		background-color: var(--spl-blue);
	}

	.career_line.line_red {
		background-color: var(--spl-red);
	}

	@media (max-width: 768px) {
		.career_main_title {
			font-size: 28px;
		}

		.career_title_wrapper::before,
		.career_title_wrapper::after {
			max-width: 50px;
		}
	}

	/* /////////////////////////////////////////
        Section 2 Career End 
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 3 Career End 
     ///////////////////////////////////////////*/
	.spl_career_form {
		padding: 40px;
		border-radius: 8px;
		max-width: 900px;
		margin: 0 auto;
	}

	.spl_uk_career_form_section {
		padding-bottom: 100px;
	}

	.spl_uk_career_form_section .container .row .asddsgddsggsdgdgdd {
		background-color: #f2f1f1;
		border-top-right-radius: 12px;
		border-top-left-radius: 12px;
		padding: 0;
	}

	.spl_career_form .form_title {
		font-weight: 700;
		color: #333;
		font-size: 28px;
	}

	.spl_career_form label {
		display: block;
		font-weight: 700;
		color: #333;
		margin-bottom: 5px;
		font-size: 16px;
	}

	/* Bottom Line Input Style */
	.spl_career_form input[type="text"],
	.spl_career_form input[type="email"],
	.spl_career_form input[type="tel"],
	.spl_career_form textarea {
		width: 100%;
		border: none;
		border-bottom: 1.5px solid #ccc;
		padding: 5px 0;
		outline: none;
		background: transparent;
		transition: border-color 0.3s ease;
	}

	.spl_career_form input:focus,
	.spl_career_form textarea:focus {
		border-bottom-color: var(--spl-blue);
		/* #2c2c94 */
	}

	/* File Upload Styling */
	.file_upload_wrapper input[type="file"] {
		display: block;
		margin-bottom: 5px;
		padding-bottom: 10px;
		width: 100%;
		font-size: 14px;
		border-bottom: 1.5px solid #ccc;
	}

	/* Submit Button */
	.spl_submit_btn {
		background-color: var(--spl-blue) !important;
		color: #fff !important;
		padding: 12px 45px !important;
		border: none !important;
		border-radius: 6px !important;
		font-weight: 700 !important;
		text-transform: uppercase;
		letter-spacing: 1px;
		transition: all 0.3s ease;
	}

	.spl_submit_btn:hover {
		background-color: var(--spl-red) !important;
		/* Transitions to brand red */
		transform: translateY(-2px);
	}

	/* Acceptance/Checkbox styling */
	.wpcf7-list-item {
		margin-left: 0 !important;
	}

	.wpcf7-acceptance input {
		margin-right: 10px;
	}

	.lbael_acceptance .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label {
		color: #848282 !important;
		font-weight: 600;
	}

	.lbael_acceptance .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label a {
		color: #848282 !important;
		font-weight: 600;
	}

	.career_factory_card {
		position: relative;
		border-bottom-left-radius: 12px;
		border-bottom-right-radius: 12px;
		overflow: hidden;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	}

	.spl_uk_career_showcase {
		position: relative;
		width: 100%;
		height: 40vh;
		overflow: hidden;
		background-size: cover !important;
		background-attachment: fixed !important;
		border-bottom-left-radius: 12px;
		border-bottom-right-radius: 12px;
	}

	/* /////////////////////////////////////////
        Section 3 Career End 
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ Career CSS END  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/*$$$$$$$$$$$$$$$$$$$$$$$$ CSR CSS  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/* /////////////////////////////////////////
        Section 1 CSR 
     ///////////////////////////////////////////*/
	.spl_uk_csr_1 {
		position: relative;
		height: 60vh;
		/* Adjust height as needed */
		width: 100%;
		overflow: hidden;
		display: flex;
		align-items: center;
	}

	.spl_uk_csr_1 .hero-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		/* Replace with your image path */
		background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://www.sppack.co.uk/wp-content/uploads/2026/03/csr_page_banner.png');
		background-size: cover;
		background-position: center;
		z-index: 1;
	}

	.spl_uk_csr_1 .red-banner-wrapper {
		position: absolute;
		top: 40%;
		/* Adjusts the vertical position of the bar */
		left: 0;
		width: 100%;
		background-color: var(--spl-red);
		/* Industrial Red */
		padding: 15px 0;
		z-index: 2;
		box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
	}

	.spl_uk_csr_1 .banner-text {
		color: #ffffff;
		font-weight: 700;
		text-transform: uppercase;
		font-size: 2rem;
		margin: 0;
		letter-spacing: 1px;
		text-align: center;
	}

	/* Responsive adjustments */
	@media (max-width: 768px) {
		.spl_uk_csr_1 .banner-text {
			font-size: 1.5rem;
		}

		.spl_uk_csr_1 {
			height: 40vh;
		}
	}

	/* /////////////////////////////////////////
        Section 1 CSR End 
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 2 CSR 
     ///////////////////////////////////////////*/
	.spl_uk_csr_2_wrapper {
		padding: 120px 0 80px 0;
	}

	.spl_uk_csr_2_title {
		color: #d3122a;
		font-weight: 800;
		letter-spacing: 1px;
		margin-bottom: 40px;
		font-size: 2.5rem;
	}

	.spl_uk_csr_2_quote_container {
		position: relative;
		max-width: 1000px;
		margin: 0 auto;
		padding-top: 20px;
	}

	.spl_uk_csr_2_icon {
		position: absolute;
		left: 0;
		top: -10px;
		font-size: 60px;
		color: var(--spl-blue);
		line-height: 1;
		font-weight: bold;
	}

	.spl_uk_csr_2_line {
		width: 0;
		/* Animated via GSAP */
		height: 4px;
		background-color: var(--spl-red);
		position: absolute;
		top: 15px;
		left: 60px;
		right: 0;
	}

	/* The curved edge on the right */
	.spl_uk_csr_2_line::after {
		content: '';
		position: absolute;
		right: -35px;
		top: 0;
		width: 40px;
		height: 100px;
		border-right: 4px solid var(--spl-red);
		border-top: 4px solid var(--spl-red);
		border-top-right-radius: 50px;
	}

	.spl_uk_csr_2_quote {
		font-size: 1.5rem;
		font-weight: 700;
		color: #333;
		margin-top: 25px;
		margin-bottom: 10px;
		line-height: 1.6;
	}

	.spl_uk_csr_2_quote_2 {
		position: absolute;
		right: -7%;
		transform: rotate(181deg);
		bottom: -10px;
		font-size: 60px;
		color: var(--spl-blue);
		line-height: 1;
		font-weight: bold;
	}

	.spl_uk_csr_2_author {
		font-weight: 700;
		color: #333;
		font-size: 1.1rem;
	}

	/* /////////////////////////////////////////
        Section 2 CSR END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 3 CSR 
     ///////////////////////////////////////////*/
	.spl_uk_csr_3_section {
		padding: 120px 0;
		overflow: hidden;
	}

	.spl_uk_csr_3_title {
		color: var(--spl-blue);
		/* Deep blue from image */
		font-weight: 800;
		font-size: 2.8rem;
		letter-spacing: -0.5px;
	}

	.spl_uk_csr_3_desc p {
		color: #444;
		font-size: 1.1rem;
		line-height: 1.8;
		font-weight: 500;
	}

	/* Necessary for the SplitText "Reveal" effect */
	.spl_uk_csr_3_desc div {
		overflow: hidden;
	}

	.spl_uk_csr_3_img_container {
		border-radius: 8px;
		overflow: hidden;
	}

	.spl_uk_csr_3_img_container img {
		width: 100%;
		height: auto;
		display: block;
	}

	@media (max-width: 991px) {
		.spl_uk_csr_3_title {
			font-size: 2.2rem;
			text-align: center;
		}

		.spl_uk_csr_3_desc {
			text-align: center;
		}
	}

	/* /////////////////////////////////////////
        Section 3 CSR END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 4 CSR
     ///////////////////////////////////////////*/
	.spl_uk_csr_4_section {
		padding: 120px 0 !important;
	}

	.spl_uk_csr_4_header {
		background-color: var(--spl-red);
		color: #fff;
		text-align: center;
		padding: 60px 20px 120px 20px;
		/* Extra bottom padding for overlap */
		border-radius: 8px;
	}

	.spl_uk_csr_4_header h2 {
		font-weight: 800;
		font-size: 2.5rem;
		letter-spacing: 1px;
	}

	.spl_uk_csr_4_cards_row {
		margin-top: -80px;
		position: relative;
		z-index: 5;
	}

	.spl_uk_csr_4_card {
		background: #eeeeee;
		padding: 20px 20px 0px 20px;
		height: 100%;
		transition: transform 0.3s ease;
		border: none;
		border-radius: 8px;
	}

	.spl_uk_csr_4_card:hover {
		transform: translateY(-10px);
	}

	.spl_uk_csr_4_icon_box {
		background: #fff;
		width: 120px;
		height: 120px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 auto 25px auto;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}

	.spl_uk_csr_4_icon_box:hover img {
		transform: scale(1.2);
	}

	.spl_uk_csr_4_icon_box img {
		width: 60px;
		height: auto;
	}

	.spl_uk_csr_4_value {
		font-weight: 800;
		color: #333;
		font-size: 1.5rem;
		margin-bottom: 10px;
	}

	.spl_uk_csr_4_label {
		color: #555;
		font-weight: 600;
		font-size: 1rem;
		line-height: 1.4;
	}

	@media (max-width: 768px) {
		.spl_uk_csr_4_header h2 {
			font-size: 1.8rem;
		}

		.spl_uk_csr_4_cards_row {
			margin-top: -60px;
		}
	}

	/* /////////////////////////////////////////
        Section 4 CSR END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 5 CSR
     ///////////////////////////////////////////*/
	.spl_uk_csr_5_section {
		padding: 100px 0;
	}

	.spl_uk_csr_5_card {
		height: 100%;
		display: flex;
		flex-direction: column;
		transition: transform 0.3s ease;
	}

	.spl_uk_csr_5_card:hover {
		transform: translateY(-5px);
	}

	/* Diagonal Cut Effect */
	.spl_uk_csr_5_img {
		width: 100%;
		height: 250px;
		overflow: hidden;
		clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 25%);
		background-color: #fff;
	}

	.spl_uk_csr_5_img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-top-right-radius: 8px;
	}

	.spl_uk_csr_5_content {
		padding: 30px;
		flex-grow: 1;
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border-bottom-left-radius: 8px;
		border-bottom-right-radius: 8px;
	}

	.spl_uk_csr_5_content p {
		color: #fff;
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 20px;
		font-weight: 500;
	}

	.spl_uk_csr_5_line {
		width: 80%;
		height: 1px;
		background-color: rgba(255, 255, 255, 0.6);
	}

	/* Background Variations */
	.blue_bg .spl_uk_csr_5_content {
		background-color: var(--spl-blue);
		/* Dark Corporate Blue */
	}

	.red_bg .spl_uk_csr_5_content {
		background-color: var(--spl-red);
		/* Industrial Red */
	}

	.spl_uk_csr_5_item {
		margin-top: 40px;
	}

	/* /////////////////////////////////////////
        Section 5 CSR END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 6 CSR
     ///////////////////////////////////////////*/
	.spl_uk_csr_6_section {
		padding: 80px 0;
		background-color: #fff;
	}

	.spl_uk_csr_6_title {
		color: #1a237e;
		/* Deep blue from design */
		font-weight: 800;
		font-size: 2.2rem;
		margin-bottom: 50px;
		letter-spacing: 1px;
	}

	/* Diamond Image Container */
	.spl_uk_csr_6_diamond_wrapper {
		margin: 0 auto;
		position: relative;
		width: 70%;
	}

	.spl_uk_csr_6_diamond::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		transform: rotate(45deg);
		top: 0;
		box-shadow:
			10px 20px 16px 0px rgba(0, 0, 0, 0.25), -15px -15px 30px rgba(255, 255, 255, 1);
		background-color: transparent;
		border-bottom-right-radius: 30px;
	}

	.spl_uk_csr_6_diamond img {
		object-fit: cover;
	}

	.spl_uk_csr_6_info {
		max-width: 280px;
		margin: 40px auto 0;
	}

	.spl_uk_csr_6_name {
		color: var(--spl-blue);
		font-weight: 700;
		font-size: 16px;
		text-transform: uppercase;
		line-height: 1.4;
		margin-bottom: 12px;
		padding-top: 30px;
	}

	.spl_uk_csr_6_designation {
		background-color: #ffebee;
		/* Light pink banner */
		color: #333;
		font-size: 13px;
		font-weight: 600;
		padding: 10px;
		display: inline-block;
		text-transform: uppercase;
	}

	@media (max-width: 768px) {
		.spl_uk_csr_6_diamond_wrapper {
			width: 150px;
			height: 150px;
		}
	}

	/* /////////////////////////////////////////
        Section 6 CSR END
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ CSR CSS END  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/*$$$$$$$$$$$$$$$$$$$$$$$$ PRODUCT CSS START  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/* /////////////////////////////////////////
        Section 1 product
     ///////////////////////////////////////////*/
	/* SECTION */
	.spl_uk_product_section_1 {
		position: relative;
		height: 420px;
		overflow: hidden;
	}

	/* BACKGROUND IMAGE */
	.spl_uk_product_section_1 .spl_uk_bg {
		position: absolute;
		inset: 0;
	}

	.spl_uk_product_section_1 .spl_uk_bg img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	/* BLUE OVERLAY BAR */
	.spl_uk_product_section_1 .spl_uk_overlay {
		position: absolute;
		top: 35%;
		left: 0;
		width: 100%;
		background: rgba(35, 52, 143, 0.9);
	}

	/* CONTENT */
	.spl_uk_product_section_1 .spl_uk_content {
		text-align: center;
		color: #fff;
		position: relative;
	}

	/* TITLE */
	.spl_uk_product_section_1 h1 {
		font-size: 48px;
		font-weight: 700;
		margin-bottom: 10px;
	}

	/* BREADCRUMB */
	.spl_uk_product_section_1 p {
		margin: 0;
		font-size: 18px;
	}

	/* DIAGONAL LINES */
	.spl_uk_product_section_1 .spl_uk_overlay::before,
	.spl_uk_product_section_1 .spl_uk_overlay::after {
		content: "";
		position: absolute;
		top: 0;
		width: 4px;
		height: 100%;
		background: rgba(255, 255, 255, 0.8);
		transform: skewX(25deg);
	}

	.spl_uk_product_section_1 .spl_uk_overlay::before {
		left: 35%;
	}

	.spl_uk_product_section_1 .spl_uk_overlay::after {
		left: 65%;
	}

	/* RESPONSIVE */
	@media(max-width:768px) {
		.spl_uk_product_section_1 {
			height: 300px;
		}

		.spl_uk_product_section_1 h1 {
			font-size: 32px;
		}
	}

	/* /////////////////////////////////////////
        Section 1 product END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        Section 2 product
     ///////////////////////////////////////////*/
	/* SECTION */
	.spl_uk_product_main_1 {
		padding: 100px 0;
		background: #f4f4f4;
	}

	/* CARD */
	.uk-card {
		position: relative;
		height: 100%;
		overflow: hidden;
	}

	/* IMAGE */
	.uk-inner img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: scale(1.4);
	}

	/* BG REVEAL */
	.bg-reveal {
		position: absolute;
		inset: 0;
		transform: scaleX(0);
		transform-origin: left;
		z-index: 1;
	}

	.red .bg-reveal {
		background: var(--spl-red);
	}

	.blue .bg-reveal {
		background: var(--spl-blue);
	}

	/* TEXT */
	.uk-content {
		position: relative;
		z-index: 2;
		color: #fff;
		font-size: 35px;
		padding: 20px;
		font-weight: 700;
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
	}

	.spl_product_kps_anchor_mink_product_link {
		position: absolute;
		bottom: 0;
		right: 0;
		font-size: 16px;
		text-decoration: none;
		color: #fff;
		font-weight: 500;
		opacity: 0.7;
		padding: 7px 14px;
	}

	.spl_product_kps_anchor_mink_product_link:hover {
		color: #fff !important;
		opacity: 1;
		transform: scale(1.2);
	}

	/* CLIP START */
	.uk-card {
		clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
	}

	@media (min-width:1300px) {
		.spl_uk_product_main_1 .container .row .col-lg-3 {
			padding: 0 !important;
		}
	}

	/* /////////////////////////////////////////
        Section 2 product END
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ PRODUCT CSS START  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/*$$$$$$$$$$$$$$$$$$$$$$$$ BLOG CSS START  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/* /////////////////////////////////////////
        BLOGS PAGE FULL CSS
     ///////////////////////////////////////////*/
	/* 1:1 STYLING PRESERVED */
	.spl_uk_blog_card {
		transition: transform 0.3s ease;
		background: #efefef;
		padding: 10px;
	}

	.spl_uk_blog_card:hover {
		transform: translateY(-5px);
	}

	.spl_uk_blog_card img {
		height: 220px;
		object-fit: cover;
		transition: scale 0.5s ease;
	}

	.spl_uk_blog_card:hover img {
		scale: 1.05;
	}

	.spl_uk_search_group input {
		border-right: none;
		padding: 12px 20px;
	}

	.filter-btn {
		background: #f8f9fa;
		border: 1px solid #eee;
		padding: 8px 25px;
		font-size: 0.75rem;
		font-weight: 700;
		transition: 0.3s;
		cursor: pointer;
	}

	.filter-btn.active,
	.filter-btn:hover {
		background: #fff;
		border-color: #333;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	}

	.texttfsd-primary {
		color: var(--spl-blue) !important;
	}

	.texttfsd-danger {
		color: var(--spl-red) !important;
	}

	.spl_uk_filters {
		background-color: #efefef;
		padding: 10px;
		border-radius: 5px;
	}

	.asfasfsafasfsaffheywrywyre {
		background: #efefef;
		padding: 5px 10px;
		border-radius: 6px;
	}

	.spl_header_main_sjfe_headinhfg {
		background-color: var(--spl-red);
		padding: 10px 60px;
		border-radius: 4px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		color: #ffffff;
		font-size: 24px;
		font-weight: 800;
		letter-spacing: 2px;
		text-transform: uppercase;
	}

	.spl_uk_blog_main {
		padding: 100px 0;
	}

	.card-title-blogsd {
		font-weight: 600 !important;
		font-size: 18px;
	}

	.card-text-sngdsnkds {
		color: #1E1E1E;
	}

	/* Pagination Styling */
	.spl_blog_pagination ul {
		display: flex;
		gap: 8px;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.spl_blog_pagination a,
	.spl_blog_pagination span {
		display: block;
		padding: 8px 16px;
		background: #f1f1f1;
		border-radius: 6px;
		text-decoration: none;
		font-weight: 600;
		color: #333;
		transition: all 0.3s ease;
	}

	.spl_blog_pagination a:hover,
	.spl_blog_pagination .current {
		background: var(--spl-red);
		color: #fff;
	}

	#blogLoader {
		display: none;
	}

	/* /////////////////////////////////////////
        BLOGS PAGE FULL CSS END
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ BLOG CSS START  END *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/*$$$$$$$$$$$$$$$$$$$$$$$$ CONTACT CSS START  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/* /////////////////////////////////////////
        CONTACT PAGE FULL CSS 
     ///////////////////////////////////////////*/
	.simple_conatct_page_line_blue {
		height: 2px;
		width: 85%;
		background-color: var(--spl-blue);
		margin-top: 50px;
	}

	.spl_uk_contact_form_section {
		padding: 100px 0;
	}

	.spl_uk_contact_form_section .text-primary {
		color: var(--spl-blue) !important;
	}

	.spl_uk_contact_form_section i {
		font-size: 25px !important;
	}

	.rotatee-e--34fjr-80 {
		transform: rotate(90deg);
	}

	.spl_uk_contact_form_section .text-danger {
		color: var(--spl-red) !important;
	}

	.spl_uk_contact_wrapper {
		background-color: #f1f4f7 !important;
		border-radius: 8px;
	}

	/* CF7 Form Field Customization */
	.spl_uk_cf7_container .wpcf7-form-control {
		width: 100%;
		padding: 15px 18px;
		border: 0px solid #e2e8f0;
		border-radius: 5px;
		margin-bottom: 15px;
		background-color: #ffffff;
		font-size: 14px;
	}

	.spl_uk_cf7_container textarea.wpcf7-form-control {
		height: 150px;
	}

	.spl_uk_cf7_container .wpcf7-submit {
		background-color: var(--spl-blue) !important;
		color: #ffffff !important;
		padding: 10px 20px;
		border: none;
		font-size: 15px;
		width: auto !important;
		border-radius: 4px;
		font-weight: 600;
		transition: background 0.3s;
		cursor: pointer;
	}

	.spl_uk_cf7_container .wpcf7-submit:hover {
		background-color: var(--spl-red) !important;
	}

	/* Placeholder Styling */
	.spl_uk_cf7_container ::placeholder {
		color: #94a3b8;
		opacity: 1;
	}

	.dsannf_spl_contact_llabell {
		color: #949494;
		font-weight: 600;
	}

	/* /////////////////////////////////////////
        CONTACT PAGE FULL CSS END
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ CONTACT CSS START END  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/*$$$$$$$$$$$$$$$$$$$$$$$$ INFRASTRUCTURE CSS START START  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/* /////////////////////////////////////////
        INFRASTRUCTURE Section 1
     ///////////////////////////////////////////*/
	/* Container Prefix */
	.spl_uk_infrastruture_section_1 {
		position: relative;
		width: 100%;
		height: 400px;
		/* Standard height for this type of hero banner */
		display: flex;
		overflow: hidden;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
	}

	.spl_uk_infrastruture_section_1 .spl_uk_infra_main_title {
		font-size: 4.5rem;
		/* Bold, high-impact heading */
		line-height: 0.9;
	}

	.spl_uk_infrastruture_section_1 .spl_uk_infra_tagline {
		font-size: 1.5rem;
		letter-spacing: 1px;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	/* Responsive adjustments */
	@media (max-width: 991px) {
		.spl_uk_infrastruture_section_1 .spl_uk_infra_main_title {
			font-size: 3.5rem;
		}
	}

	@media (max-width: 767px) {
		.spl_uk_infrastruture_section_1 {
			height: 300px;
			text-align: center;
		}

		.spl_uk_infrastruture_section_1 .spl_uk_infra_tagline {
			justify-content: center;
		}

		.spl_uk_infrastruture_section_1 .spl_uk_infra_main_title {
			font-size: 2.5rem;
		}
	}

	/* /////////////////////////////////////////
            INFRASTRUCTURE Section 1 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        INFRASTRUCTURE 2 Section 
     ///////////////////////////////////////////*/
	/* Prefix: spl_uk_infrastructure_section_2 */
	.spl_uk_infrastructure_section_2 {
		padding: 120px 0;
	}

	.spl_uk_gsap_fade {
		color: var(--spl-red);
	}

	.dsnasdlkndlkgnsdlkgnsdlgkndslgn {
		color: #323232;
		font-size: 28px;
	}

	.dsnasdlkndlkgnsdlkgnsdlgkndslgn span {
		color: #292929;
		font-weight: 700;
	}

	.spl_uk_infrastructure_section_2 .spl_uk_blue_line {
		width: 60%;
		height: 2px;
		background-color: var(--spl-blue);
	}

	.spl_uk_infrastructure_section_2 .spl_uk_infra_img_container {
		position: relative;
		z-index: 1;
	}

	/* Red Square behind image */
	.spl_uk_infrastructure_section_2 .spl_uk_infra_red_box {
		width: 100px;
		height: 100px;
		background-color: #870014;
		filter: brightness(0.8);
		opacity: 0.8;
		top: -15px;
		left: -15px;
		z-index: 9;
	}

	/* Blue Badge Overlay */
	.spl_uk_infrastructure_section_2 .spl_uk_infra_tech_badge {
		top: -20px;
		display: flex;
		align-items: center;
		background-color: var(--spl-blue);
		padding: 20px;
		max-width: 350px;
		z-index: 3;
		margin: 0 auto;
		position: relative;
	}

	.spl_uk_infra_desc p {
		color: #323232;
	}

	.spl_uk_tech_icon img {
		width: 100px !important;
	}

	.spl_uk_infrastructure_section_2 .z-index-2 {
		z-index: 2;
	}

	/* /////////////////////////////////////////
            INFRASTRUCTURE Section 2 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        INFRASTRUCTURE 3 Section 
     ///////////////////////////////////////////*/
	/* Prefix: spl_uk_infra_section_3 */
	.spl_uk_infra_section_3 {
		padding: 80px 0;
	}

	.spl_uk_infra_section_3 .container {
		/* Blue overlay + Background Image */
		background: linear-gradient(#2b3285d9, #2b3285d9),
			url('https://www.sppack.co.uk/wp-content/uploads/2026/03/infra-section-3.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		padding: 50px;
		border-radius: 12px;
	}

	.spl_uk_infra_section_3 .text_blue {
		color: var(--spl-blue);
		/* Brand Blue */
	}

	.spl_uk_unit_card {
		transition: transform 0.3s ease-in-out;
	}

	.spl_uk_unit_card:hover {
		transform: translateY(-10px);
	}

	.spl_uk_unit_img img {
		height: 180px;
		width: 100%;
		object-fit: cover;
	}

	.spl_uk_infra_section_3 .spl_uk_infra_swiper {
		padding: 50px 0;
	}

	/* Base Dot Styling */
	.spl_uk_infra_section_3 .swiper-pagination-bullet {
		width: 12px;
		height: 12px;
		background: #ffffff;
		opacity: 0.5;
		transition: all 0.3s ease;
	}

	/* Active Dot Styling */
	.spl_uk_infra_section_3 .swiper-pagination-bullet-active {
		opacity: 1;
		width: 30px;
		/* Expands active dot for better UX */
		border-radius: 10px;
		background: #ffffff;
	}

	/* Ensure dots stay within the blue section */
	.spl_uk_infra_section_3 .swiper-pagination {
		bottom: 10px !important;
	}

	/* /////////////////////////////////////////
            INFRASTRUCTURE Section 3 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        INFRASTRUCTURE 4 Section 
     ///////////////////////////////////////////*/
	.spl_uk_infra_section_4 {
		padding: 30px 0 80px 0;
	}

	.spl_uk_infra_section_4 .spl_uk_img_reveal_box {
		perspective: 1000px;
		/* Adds depth for the rotation */
		display: inline-block;
	}

	.spl_uk_main_round_img {
		border-radius: 50%;
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
		will-change: transform, opacity;
	}

	.spl_uk_infra_section_4 .spl_uk_main_round_img {
		border-radius: 50%;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}

	.spl_uk_country_tag {
		background-color: #eeeeee;
		/* Light grey background */
		padding: 8px 18px;
		border-radius: 8px;
		/* Pill shape */
		display: flex;
		align-items: center;
		gap: 10px;
		transition: background 0.3s ease;
	}

	.spl_uk_country_tag img {
		width: 24px;
		height: auto;
		border-radius: 2px;
	}

	.spl_uk_country_wrapper {
		margin: 30px 0
	}

	.spl_uk_country_tag span {
		font-size: 14px;
		font-weight: 700;
		color: #333333;
		letter-spacing: 0.5px;
	}

	/* Hover effect for a premium feel */
	.spl_uk_country_tag:hover {
		background-color: #e0e0e0;
	}

	/* /////////////////////////////////////////
            INFRASTRUCTURE Section 4 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        INFRASTRUCTURE  5 Section 
     ///////////////////////////////////////////*/
	/* Section */
	.spl_uk_infra_section_5 {
		padding: 80px 0;
	}

	/* Heading */
	.spl_uk_infra_section_5_heading {
		color: var(--spl-blue);
		font-weight: 800;
		margin-bottom: 50px;
	}

	/* Card */
	.spl_uk_infra_section_5_card {
		background: #f5f5f5;
		border-radius: 12px;
		overflow: hidden;
		height: 100%;
	}

	/* Header */
	.spl_uk_infra_section_5_header {
		padding: 20px;
		color: #fff;
		font-weight: 700;
	}

	/* Color Variants */
	.spl_uk_infra_section_5_card.blue .spl_uk_infra_section_5_header {
		background: var(--spl-blue);
	}

	.spl_uk_infra_section_5_card.red .spl_uk_infra_section_5_header {
		background: var(--spl-red);
	}

	/* Body */
	.spl_uk_infra_section_5_body {
		padding: 25px;
		text-align: center;
		height: 100%;
	}

	/* Section Titles */
	.spl_uk_infra_section_5_body h5 {
		color: var(--spl-red);
		margin: 20px 0 10px;
		font-weight: 700;
		position: relative;
	}

	/* Lines */
	.spl_uk_infra_section_5_body h5::before,
	.spl_uk_infra_section_5_body h5::after {
		content: "";
		height: 2px;
		width: 75px;
		background: #ccc;
		display: inline-block;
		margin: 0 10px;
		vertical-align: middle;
	}

	/* Text */
	.spl_uk_infra_section_5_body p {
		font-size: 15px;
		color: #323232;
	}

	.spl_uk_infra_section_5_header h4 {
		font-size: 15px !important;
		text-transform: uppercase;
		margin-bottom: 0px !important;
		font-weight: 700;
	}

	/* Capacity */
	.spl_uk_infra_section_5_capacity {
		margin-top: 20px;
		font-weight: 700;
		color: var(--spl-blue)
	}

	/* /////////////////////////////////////////
            INFRASTRUCTURE Section 5 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
        INFRASTRUCTURE 6 Section 
     ///////////////////////////////////////////*/
	/* Section Wrapper */
	.spl_uk_infra_Section_6 {
		padding: 80px 0;
	}

	.spl_uk_infra_Section_6_swiper_class {
		padding: 40px 20px 120px;
	}

	.spl_uk_infra_Section_6_swiper_class .swiper-wrapper .swiper-slide {
		transform: scale(0.95) !important;
	}

	/* Card */
	.spl_uk_infra_Section_6_card {
		position: relative;
		width: 260px;
		margin: auto;
	}

	/* Inner */
	.spl_uk_infra_Section_6_inner {
		background: #fff;
		border-radius: 14px;
		padding: 5px;
		height: 225px;
		text-align: center;
		position: relative;
		z-index: 2;
	}

	.spl_uk_infra_Section_6_inner img {
		width: 100%;
		height: 160px;
		object-fit: cover;
		border-radius: 10px;
	}

	.spl_uk_infra_Section_6_inner p {
		font-size: 15px;
		font-weight: 700;
		margin-top: 10px;
	}

	/* U Border */
	.spl_uk_infra_Section_6_border {
		position: absolute;
		bottom: -15px;
		right: -5%;
		width: 110%;
		height: 50%;
		border: 15px solid;
		border-top: none;
		border-radius: 0 0 30px 30px;
		display: flex;
		justify-content: center;
	}

	/* Colors */
	.spl_blue {
		border-color: var(--spl-blue);
	}

	.spl_red {
		border-color: var(--spl-red);
	}

	/* Notch */
	.spl_uk_infra_Section_6_border::after {
		content: "";
		position: absolute;
		bottom: -10px;
		width: 50px;
		height: 30px;
		background: inherit;
		border-radius: 0 0 10px 10px;
	}

	/* Number */
	.spl_uk_infra_Section_6_border span {
		position: absolute;
		bottom: -40px;
		font-weight: 800;
		color: #fff;
		padding: 5px 50px;
		border-radius: 6px;
	}

	.spl_blue span {
		background: #2f3e9e;
	}

	.spl_red span {
		background: #e11d2e;
	}

	/* Pagination */
	.spl_uk_infra_Section_6 .swiper-pagination-bullet {
		background: #999;
		opacity: 1;
	}

	.spl_uk_infra_Section_6 .swiper-pagination-bullet-active {
		background: #333;
	}

	.spl_uk_blue_title {
		color: var(--spl-blue) !important;
		font-weight: 700;
		text-transform: uppercase;
		font-size: 2.75rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}

	.spl_uk_blue_title::before,
	.spl_uk_blue_title::after {
		content: "";
		height: 2px;
		background-color: var(--spl-blue);
		flex-grow: 1;
	}

	/* /////////////////////////////////////////
            INFRASTRUCTURE Section 6  END
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ INFRASTRUCTURE CSS START END  *?$$$$$$$$$$$$$$$$$$$$$$$ */


	/*$$$$$$$$$$$$$$$$$$$$$$$$ ABOUT CSS START  *?$$$$$$$$$$$$$$$$$$$$$$$ */
	/* /////////////////////////////////////////
            ABOUT Section 1 START
     ///////////////////////////////////////////*/
	.together-text-block {
		position: relative;
		height: 70vh;
		overflow: hidden;
		background: #fff;
	}

	/* IMAGE */
	.parallax-img {
		position: absolute;
		inset: 0;
		z-index: 1;
	}

	.parallax-img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	/* TEXT LAYER (HIDDEN INITIALLY) */
	.together-text {
		position: absolute;
		inset: 0;
		z-index: 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #00000070;
		mix-blend-mode: normal;
		opacity: 0;
	}

	/* TEXT */
	.together-mask-text {
		font-size: 90px;
		font-weight: 800;
		line-height: 1.3;
		text-align: center;
		color: #fff;
	}

	.together-mask-text span {
		font-size: 60px;
		color: #fff;
	}

	/* /////////////////////////////////////////
            ABOUT Section 1 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
            ABOUT Section 2 START
     ///////////////////////////////////////////*/
	/* Prefix: spl_uk_about_section_2 */
	.spl_uk_about_section_2 {
		margin-top: 25px;
		background: #f9f5f3;
		padding: 80px 0;
	}

	.spl_uk_about_section_2 .text_blue {
		color: var(--spl-blue);
	}

	.spl_uk_about_section_2 .spl_uk_quote_icon {
		width: 80px;
		opacity: 0.6;
		/* Light watermark effect */
		z-index: -1;
	}

	.spl_uk_about_section_2 .spl_uk_quote_left {
		top: -20px;
		left: -75px;
	}

	.spl_uk_about_section_2 .spl_uk_quote_right {
		top: 75px;
		right: -30px;
		transform: rotate(180deg);
	}

	.spl_uk_about_section_2 .spl_uk_line {
		height: 2px;
		background-color: var(--spl-blue);
		flex-grow: 1;
		max-width: 200px;
	}

	.spl_uk_about_section_2 .spl_uk_about_desc p {
		font-size: 16px;
		color: #323232;
	}

	/* /////////////////////////////////////////
            ABOUT Section 2 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
            ABOUT Section 3 START
     ///////////////////////////////////////////*/
	/* Prefix: spl_uk_about_section_3 */
	.spl_uk_about_section_3 {
		padding: 80px 0;
	}

	.spl_uk_about_section_3 .spl_uk_chairman_img_wrap {
		position: relative;
		margin: 30px;
	}

	/* Pink decorative square */
	.spl_uk_about_section_3 .spl_uk_pink_bg {
		width: 50vw;
		height: 250px;
		background-color: #f8c8c8;
		top: 50%;
		left: -50vw;
		transform: translateY(-50%);
		z-index: 0;
	}

	/* Red L-shaped frame */
	.spl_uk_about_section_3 .spl_uk_red_frame {
		width: 35%;
		height: 100%;
		border-left: 15px solid var(--spl-red);
		border-bottom: 15px solid var(--spl-red);
		border-top: 15px solid var(--spl-red);
		top: 0;
		transform: scale(1.075);
		z-index: 1;
	}

	.spl_uk_about_section_3 .spl_uk_chairman_img_wrap img {
		box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
	}

	/* Typography & Accents */
	.spl_uk_about_section_3 .spl_uk_title_line {
		height: 2px;
		background: var(--spl-blue);
		/* Brand Blue */
	}

	.spl_uk_about_section_3 .spl_uk_bottom_accent {
		height: 12px;
		width: 100%;
		background-color: var(--spl-blue);
		/* Solid blue bottom bar */
	}

	.spl_uk_about_section_3 .spl_uk_message_text p {
		font-size: 16px;
		color: #323232;
	}

	/* /////////////////////////////////////////
            ABOUT Section 3 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
            ABOUT Section 4 START
     ///////////////////////////////////////////*/
	/* Prefix: spl_uk_about_section_4 */
	.spl_uk_about_section_4 .text_blue {
		color: var(--spl-blue);
	}

	/* Watermark Styling */
	.spl_uk_about_section_4 .spl_uk_mission_watermark {
		opacity: 0.05;
		/* Very faint as seen in image */
		width: 400px;
		z-index: 1;
		pointer-events: none;
	}

	.spl_uk_about_section_4 .spl_uk_mission_watermark img {
		width: 100%;
		height: auto;
	}

	/* Header Line Styling */
	.spl_uk_about_section_4 .spl_uk_header_line {
		height: 2px;
		background-color: #292929;
		opacity: 0.9;
	}

	.spl_uk_about_section_4 .spl_uk_header_text h2 {
		letter-spacing: 2px;
		line-height: 0.9;
		font-size: 4rem;
		display: block;
		font-weight: 800;
		text-transform: uppercase;
	}

	.spl_uk_about_section_4 .spl_uk_mission_content p {
		font-size: 16px;
		color: #323232;
	}

	/* /////////////////////////////////////////
            ABOUT Section 4 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
            ABOUT Section 5 START
     ///////////////////////////////////////////*/
	/* Prefix: spl_uk_about_section_5 */
	.spl_uk_about_section_5 .bg_blue {
		background-color: var(--spl-blue);
		/* Deep Brand Blue */
	}

	.spl_uk_about_section_5 .spl_uk_stat_icon {
		height: 80px;
		width: auto;
	}

	.spl_uk_about_section_5 .spl_uk_stat_col {
		border-right: 2px solid rgba(255, 255, 255, 0.8);
		/* Vertical Divider */
	}

	/* Remove border on mobile and last item */
	@media (max-width: 767px) {
		.spl_uk_about_section_5 .spl_uk_stat_col {
			border-right: none;
			border-bottom: 1px solid rgba(255, 255, 255, 0.2);
			padding: 20px 0;
		}
	}

	.spl_uk_about_section_5 h2 {
		font-size: 3rem;
		letter-spacing: 1px;
	}

	/* /////////////////////////////////////////
            ABOUT Section 5 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
            ABOUT Section 6 START
     ///////////////////////////////////////////*/
	/* Prefix: spl_uk_about_section_6 */
	.spl_uk_about_section_6 {
		padding: 100px 0;
		margin-bottom: 80px;
	}

	.spl_uk_about_section_6 .spl_uk_team_banner .container {
		background-size: cover !important;
		background-position: center !important;
		padding: 120px 0;
		color: #fff;
	}

	.spl_uk_about_section_6 .spl_uk_badge_wrap {
		background-color: var(--spl-red);
		display: inline-block;
		padding: 12px 35px;
		margin-bottom: 35px;
	}

	.spl_uk_about_section_6 .spl_uk_badge_wrap h2 {
		margin: 0;
		font-size: 2rem;
	}

	.spl_uk_about_section_6 .spl_uk_desc {
		font-size: 18px
	}

	/* Box Overlap Logic */
	.spl_uk_about_section_6 .spl_uk_feature_row {
		margin-bottom: -20%;
		/* Pulls boxes into next section */
		position: relative;
		z-index: 10;
	}

	.spl_uk_about_section_6 .spl_uk_card {
		padding: 25px;
		height: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		transition: transform 0.3s ease;
	}

	.spl_uk_about_section_6 .spl_uk_card img {
		width: 65px;
		margin-bottom: 20px;
		filter: brightness(0) invert(1);
	}

	.spl_uk_about_section_6 .spl_uk_card p {
		font-weight: 700;
		text-transform: uppercase;
		margin: 0;
		font-size: 20px;
	}

	.spl_uk_about_section_6 .bg_red {
		background-color: var(--spl-red);
	}

	.spl_uk_about_section_6 .bg_blue {
		background-color: var(--spl-blue);
	}

	.spl_uk_about_section_6 .spl_uk_card:hover {
		transform: translateY(-10px);
	}

	/* /////////////////////////////////////////
            ABOUT Section 6 END
     ///////////////////////////////////////////*/
	/* /////////////////////////////////////////
            ABOUT Section 7 START
     ///////////////////////////////////////////*/
	 /* Prefix: spl_uk_about_section_7 */
	.spl_uk_evolution_title_wrap {
       display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 90px;
}

.spl_uk_evolution_title {
    font-size: 60px;
    font-weight: 800;
    color: var(--spl-blue); /* Blue color */
    letter-spacing: 2px;
    margin: 0;
    white-space: nowrap;
}

.spl_uk_line {
    flex: 1;
    height: 3px;
    background: var(--spl-red); /* Red color */
    max-width: 200px;
}
@media (max-width: 576px) {
    .spl_uk_evolution_title {
        font-size: 22px;
    }
    .spl_uk_line {
        max-width: 80px;
    }
}

.spl_uk_about_section_7 .spl_uk_circle_wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.spl_uk_about_section_7 .spl_uk_half_ring {
       position: absolute;
    top: -20px;
    left: -20px;
    width: 220px;
    height: 120px;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    border: 20px solid;
    border-bottom: 0;
}

.spl_uk_about_section_7 .spl_uk_icon_circle {
    width: 100%; height: 100%;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.spl_uk_about_section_7 .spl_uk_icon_circle img {
       box-shadow: 0 5px 10px rgba(0,0,0,0.4);
    width: 130px;
    padding: 15px;
    border-radius: 50%;
}

.spl_uk_about_section_7 .spl_uk_pointer {
       position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid;
    z-index: 1;
}
.spl_uk_evolution_item {
	padding: 20px 0;
}
/* Colors */
.spl_uk_about_section_7 .spl_red { border-color: var(--spl-red); color: var(--spl-red); }
.spl_uk_about_section_7 .spl_blue { border-color: var(--spl-blue); color: var(--spl-blue); }

.spl_uk_about_section_7 .spl_uk_nav { color: #333; }
.spl_uk_about_section_7 .spl_uk_nav::after { font-size: 20px; font-weight: bold; }
	/* /////////////////////////////////////////
            ABOUT Section 7 END
     ///////////////////////////////////////////*/
	/*$$$$$$$$$$$$$$$$$$$$$$$$ ABOUT CSS START END  *?$$$$$$$$$$$$$$$$$$$$$$$ */