/* ==========================================================================
   Mobile Responsive CSS for About Page
   ========================================================================== */

/* Mobile Logo Styles */
@media (max-width: 768px) {
	/* Side Panel Logo Mobile Styles */
	.side-panel-logo {
		padding: 20px 25px;
		text-align: center;
		border-bottom: 1px solid rgba(233, 236, 239, 0.5);
		background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	}

	.side-panel-logo img {
		height: 50px !important;
		width: auto !important;
		max-width: 200px;
		filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
		transition: all 0.3s ease;
	}

	/* Enhanced mobile logo interaction */
	.side-panel-logo:hover img {
		transform: scale(1.05);
		filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
	}

	/* Header Logo Mobile Styles - Show logo same as desktop */
	.header__area-menubar-left {
		display: block !important; /* Show logo container on mobile */
		order: 1;
		text-align: left; /* Align to left like desktop */
		padding: 0 !important; /* Remove all padding to fit to top */
		margin: 0 !important; /* Remove all margins */
		background: transparent;
		position: absolute; /* Position absolutely to control exact placement */
		top: 0; /* Fit exactly to top */
		left: 0; /* Fit exactly to left */
		z-index: 1001;
	}

	.header__area-menubar-left-logo {
		display: block !important; /* Show logo on mobile same as desktop */
	}

	.header__area-menubar-left-logo img {
		display: block !important;
	    top: -120px;
		right: 10px;
		width: 280px !important; /* Increased size for better visibility */
		height: 280px !important;
		position: relative !important;
		margin: 0 !important; /* Reset margins to fit exactly like desktop */
		padding: 0 !important;
		filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3)) drop-shadow(0 3px 6px rgba(0,0,0,0.2)) !important;
		transition: all 0.3s ease !important;
	}

	.header__area-menubar-left-logo:hover img {
		transform: translateY(-2px) !important;
	}

	/* Adjust header layout for mobile with logo */
	.header__area {
		padding: 0 !important;
		margin: 0 !important;
		position: relative;
		width: 100%;
	}

	.header__area-menubar {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: flex-start !important; /* Align to top */
		padding: 0 !important;
		margin: 0 !important;
		min-height: 180px !important; /* Match logo height */
		position: relative;
		width: 100%;
	}

	/* Perfect hamburger positioning for mobile */
	.header__area-menubar-right {
		position: absolute !important;
		top: 15px !important; /* Moved slightly higher for better alignment */
		right: 15px !important; /* Moved slightly closer to edge for better balance */
		z-index: 1002 !important;
		display: flex !important;
		align-items: center !important;
	}

	/* Brand/Partner Logo Mobile Styles */
	.brand__showcase-item img,
	.partner-logo img,
	.client-logo img {
		max-width: 100%;
		height: auto;
		filter: grayscale(0) !important;
		transition: all 0.3s ease;
	}

	.brand__showcase-item:hover img,
	.partner-logo:hover img,
	.client-logo:hover img {
		transform: scale(1.05);
		filter: grayscale(0) brightness(1.1) !important;
	}

	/* ==========================================================================
	   Mobile Styles for Centrepoint Advantage Section
	   ========================================================================== */
@media (max-width: 768px) {
	.centrepoint__advantage {
		padding: 40px 15px !important;
	}

	.centrepoint__advantage-title {
		text-align: center;
		margin-bottom: 30px;
	}

	.centrepoint__advantage-title .subtitle {
		font-size: 14px;
		letter-spacing: 1px;
	}

	.centrepoint__advantage-title h2 {
		font-size: 26px;
		line-height: 32px;
		margin-bottom: 15px;
		padding: 0 10px;
	}

	.centrepoint__advantage-title p {
		font-size: 15px;
		line-height: 22px;
		padding: 0 15px;
	}

	/* Convert complex layout to mobile-friendly stack */
	.advantage__left-section,
	.advantage__right-section {
		width: 100% !important;
		margin-bottom: 25px;
		padding: 20px 15px !important;
	}

	.advantage__left-section {
		order: 2;
	}

	.advantage__right-section {
		order: 1;
		position: relative;
	}

	/* Hide divider on mobile */
	.advantage__divider {
		display: none !important;
	}

	/* Hide the original center image in left section on mobile */
	.advantage__left-section .advantage__center-image {
		display: none !important;
	}
	
	/* Show and style the mobile center image */
	.mobile-center-image {
		display: block !important;
		text-align: center;
		margin: 20px auto;
		padding: 0 20px;
		order: 3;
		width: 100%;
	}
	
	/* Special positioning to ensure it appears after Proven Proficiency card */
	.advantage__left-section .mobile-center-image {
		margin-top: 25px;
		margin-bottom: 25px;
	}
	
	.mobile-center-image-wrapper {
		width: 160px;
		height: 160px;
		margin: 0 auto;
		border-radius: 15px;
		overflow: hidden;
		border: 3px solid #000000;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		position: relative;
		background: #f8f9fa;
	}
	
	.mobile-center-image-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.3s ease;
	}
	
	.mobile-center-image-wrapper:hover img {
		transform: scale(1.05);
	}

	/* Mobile layout for positioned items */
	.position-absolute {
		position: static !important;
		margin-bottom: 20px;
		width: 100% !important;
	}

	/* Specific ordering for mobile advantage cards */
	.advantage__left-section .position-absolute:nth-child(2) {
		order: 1; /* Global Brands */
	}
	
	.advantage__left-section .position-absolute:nth-child(3) {
		order: 2; /* Proven Proficiency */
	}
	
	.mobile-center-image {
		order: 3; /* Center image appears after Proven Proficiency */
	}
	
	.advantage__left-section .position-absolute:nth-child(5) {
		order: 4; /* Our Values */
	}
	
	.advantage__left-section .position-absolute:nth-child(6) {
		order: 5; /* Our Products */
	}
	
	/* Make the position-relative container a flex container for proper ordering */
	.position-relative {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
	}

	.advantage__item {
		width: 100% !important;
		margin-bottom: 15px;
		padding: 15px !important;
	}

	.advantage__item h4 {
		font-size: 18px !important;
		margin-bottom: 10px !important;
	}

	.advantage__item p {
		font-size: 14px !important;
		line-height: 1.5 !important;
	}

	.advantage__item-icon {
		margin-bottom: 10px !important;
	}

	.advantage__item-icon i {
		font-size: 24px !important;
		margin-bottom: 5px !important;
	}

	/* Center image mobile styling - Hide original center image */
	.advantage__center-image {
		display: none !important;
	}

	.center-image-wrapper {
		width: 120px !important;
		height: 120px !important;
		margin: 0 auto;
		border-width: 2px !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.center-image-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 50%;
	}

	/* Content sections mobile styling */
	.content-section {
		margin-bottom: 25px;
	}

	.content-section h4 {
		font-size: 20px;
		margin-bottom: 15px;
		text-align: center !important;
	}

	.content-section p {
		font-size: 14px;
		line-height: 1.6;
		text-align: left !important;
		margin-bottom: 0;
		padding: 0 5px;
	}

	/* Improve spacing and sizing for better mobile experience */
	.row.align-items-stretch {
		min-height: auto !important;
		display: flex;
		flex-direction: column;
	}
	
	.advantage__left-section h3 {
		font-size: 20px;
		margin-bottom: 20px;
		padding: 0 10px;
	}
	
	.position-relative {
		min-height: auto !important;
		padding: 10px 0 !important;
	}
	
	/* Improve card styling for mobile */
	.advantage__item {
		border-radius: 10px !important;
		box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
		transition: all 0.3s ease;
		border-width: 1px !important;
	}
	
	.advantage__item:hover {
		transform: translateY(-3px);
		box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
	}
	
	/* Improve content section styling */
	.advantage__right-section {
		padding: 30px 20px !important;
	}
	
	.content-section.mb-5 {
		margin-bottom: 20px !important;
	}
	
	/* Improve responsiveness for small screens */
	@media (max-width: 576px) {
		.advantage__item {
			padding: 12px !important;
		}
		
		.advantage__item h4 {
			font-size: 16px !important;
		}
		
		.advantage__item p {
			font-size: 13px !important;
		}
		
		.advantage__item-icon i {
			font-size: 20px !important;
		}
		
		.center-image-wrapper {
			width: 100px !important;
			height: 100px !important;
		}
		
		.advantage__left-section h3 {
			font-size: 18px;
		}
		
		.content-section h4 {
			font-size: 18px;
		}
		
		/* Mobile center image responsive sizing */
		.mobile-center-image-wrapper {
			width: 140px;
			height: 140px;
		}
	}
	
	/* Fix responsive issues for very small screens */
	@media (max-width: 400px) {
		.centrepoint__advantage-title h2 {
			font-size: 22px;
			line-height: 28px;
		}
		
		.centrepoint__advantage-title p {
			font-size: 13px;
			line-height: 20px;
		}
		
		.advantage__item {
			padding: 10px !important;
			margin-bottom: 12px !important;
		}
		
		.advantage__item h4 {
			font-size: 15px !important;
		}
		
		.advantage__item p {
			font-size: 12px !important;
		}
		
		.advantage__item-icon i {
			font-size: 18px !important;
		}
		
		.center-image-wrapper {
			width: 80px !important;
			height: 80px !important;
		}
		
		.advantage__left-section h3 {
			font-size: 16px;
		}
		
		.content-section h4 {
			font-size: 16px;
		}
		
		.content-section p {
			font-size: 13px;
		}
		
		/* Mobile center image for small screens */
		.mobile-center-image-wrapper {
			width: 120px;
			height: 120px;
			border-radius: 12px;
		}
		
		.mobile-center-image {
			margin-top: 25px;
			padding: 0 15px;
		}
		
		.advantage__right-section {
			padding: 25px 15px !important;
		}
	}
	
	/* Ensure proper box-sizing for all elements */
	.advantage__item,
	.advantage__left-section,
	.advantage__right-section {
		box-sizing: border-box;
	}
	
	/* Improve focus accessibility */
	.advantage__item:focus,
	.advantage__item:hover {
		outline: 2px solid rgba(54, 180, 229, 0.5);
		outline-offset: 2px;
	}
	
	/* Reduce motion for accessibility */
	@media (prefers-reduced-motion: reduce) {
		.advantage__item {
			transition: none;
		}
		
		.advantage__item:hover {
			transform: none;
		}
	}

	/* Hide mobile center image on desktop */
	@media (min-width: 769px) {
		.mobile-center-image {
			display: none !important;
		}
	}

	/* Video section mobile styles */
	.video__two {
		padding: 30px 15px !important;
		min-height: 60vh !important;
		position: relative;
		overflow: hidden;
		background: #000000 !important;
	}
	
	.video-background {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 1 !important;
		overflow: hidden;
	}
	
	.video-background iframe {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		width: 177.77% !important;
		height: 177.77% !important;
		min-width: 177.77% !important;
		min-height: 177.77% !important;
		transform: translate(-50%, -50%) !important;
		object-fit: cover !important;
		pointer-events: none !important;
		border: none !important;
	}

	.video__content {
		position: relative;
		z-index: 3;
		text-align: center;
		padding: 20px 15px;
		max-width: 100%;
		margin: 0 auto;
	}
	
	.video__content h2 {
		font-size: 28px !important;
		line-height: 36px !important;
		margin-bottom: 20px !important;
		color: #ffffff;
		text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
		padding: 0 10px;
		font-weight: 700 !important;
		text-align: center;
		max-width: 90%;
		margin-left: auto;
		margin-right: auto;
	}

	.video__content p {
		font-size: 16px !important;
		line-height: 24px !important;
		margin-bottom: 25px !important;
		color: #ffffff;
		text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
		max-width: 85% !important;
		padding: 0 10px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
	
	/* Scroll slider mobile styles */
	.scroll__slider {
		padding: 15px 0;
		position: relative;
		z-index: 10;
		overflow: hidden;
		width: 100%;
	}
	
	.text-slide {
		width: 100%;
		overflow: hidden;
		position: relative;
		z-index: 11;
	}
	
	.sliders.text_scroll {
		position: relative;
		z-index: 12;
		animation: scroll 20s linear infinite;
		animation-direction: reverse;
		display: flex;
		width: fit-content;
		min-width: 100%;
	}
	
	.text_scroll ul {
		display: flex;
		flex-wrap: nowrap;
		width: fit-content;
		margin: 0;
		padding: 0;
		list-style: none;
		align-items: center;
	}
	
	.text_scroll ul li {
		font-size: 14px;
		padding: 0 15px;
		white-space: nowrap;
		display: flex;
		align-items: center;
		flex-shrink: 0;
	}
	
	.text_scroll ul li a {
		color: #ffffff;
		text-decoration: none;
		opacity: 0.9;
		transition: all 0.3s ease;
		padding: 8px 16px;
		border: 1px solid rgba(255,255,255,0.3);
		border-radius: 25px;
		display: block;
		background: rgba(255,255,255,0.1);
		backdrop-filter: blur(10px);
		font-weight: 500;
		font-size: 14px;
	}
	
	.text_scroll ul li a:hover {
		opacity: 1;
		background: rgba(255,255,255,0.2);
		border-color: rgba(255,255,255,0.5);
		transform: translateY(-2px);
		box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	}
	
	/* Enhanced scroll animation for mobile */
	@keyframes scroll {
		0% {
			transform: translateX(0%);
		}
		100% {
			transform: translateX(-50%);
		}
	}
	
	/* Improve video section for different screen sizes */
	@media (max-width: 576px) {
		.video__two {
			padding: 30px 15px !important;
			min-height: 60vh !important;
			background: #000000 !important;
		}
		
		.video-background {
			position: absolute !important;
			top: 0 !important;
			left: 0 !important;
			width: 100% !important;
			height: 100% !important;
			z-index: 1 !important;
			overflow: hidden;
		}
		
		.video-background iframe {
			position: absolute !important;
			top: 50% !important;
			left: 50% !important;
			width: 200% !important;
			height: 200% !important;
			min-width: 200% !important;
			min-height: 200% !important;
			transform: translate(-50%, -50%) !important;
			object-fit: cover !important;
			pointer-events: none !important;
			border: none !important;
		}
		
		.video__content {
			padding: 25px 20px;
		}
		
		.video__content h2 {
			font-size: 26px !important;
			line-height: 34px !important;
			margin-bottom: 18px !important;
			max-width: 95%;
		}
		
		.video__content p {
			font-size: 15px !important;
			line-height: 22px !important;
			margin-bottom: 20px !important;
			max-width: 90% !important;
		}
		
		.text_scroll ul li {
			font-size: 13px;
			padding: 0 12px;
		}
		
		.text_scroll ul li a {
			padding: 6px 14px;
			font-size: 13px;
			border-radius: 20px;
		}
	}
	
	@media (max-width: 400px) {
		/* Banner optimization for very small screens */
		.about__banner {
			min-height: 30vh !important;
			padding: 15px 10px;
		}

		.about__banner-content-title h1 {
			font-size: 24px !important;
			line-height: 30px !important;
			margin-bottom: 12px !important;
		}

		.about__banner-content-title p {
			font-size: 14px !important;
			line-height: 20px !important;
		}

		.video__two {
			padding: 25px 10px !important;
			min-height: 55vh !important;
			background: #000000 !important;
		}
		
		.video-background {
			position: absolute !important;
			top: 0 !important;
			left: 0 !important;
			width: 100% !important;
			height: 100% !important;
			z-index: 1 !important;
			overflow: hidden;
		}
		
		.video-background iframe {
			position: absolute !important;
			top: 50% !important;
			left: 50% !important;
			width: 220% !important;
			height: 220% !important;
			min-width: 220% !important;
			min-height: 220% !important;
			transform: translate(-50%, -50%) !important;
			object-fit: cover !important;
			pointer-events: none !important;
			border: none !important;
		}
		
		.video__content {
			padding: 20px 15px;
		}
		
		.video__content h2 {
			font-size: 24px !important;
			line-height: 32px !important;
			margin-bottom: 15px !important;
			max-width: 100%;
			padding: 0 5px;
		}
		
		.video__content p {
			font-size: 14px !important;
			line-height: 20px !important;
			margin-bottom: 18px !important;
			max-width: 95% !important;
			padding: 0 5px;
		}
		
		.text_scroll ul li {
			font-size: 12px;
			padding: 0 10px;
		}
		
		.text_scroll ul li a {
			padding: 6px 12px;
			font-size: 12px;
			border-radius: 18px;
		}
		
		/* Accessibility improvements for video section */
		.video__content h2:focus,
		.video__content p:focus {
			outline: 2px solid rgba(255, 255, 255, 0.5);
			outline-offset: 2px;
		}
		
		/* Touch device optimizations */
		@media (hover: none) and (pointer: coarse) {
			.text_scroll ul li a {
				padding: 6px 12px;
			}
			
			.text_scroll ul li a:hover {
				background: rgba(255,255,255,0.15);
			}
		}
	}
	
	/* Reduce motion for accessibility */
	@media (prefers-reduced-motion: reduce) {
		.text_scroll ul {
			animation: none;
		}
		
		.video__two {
			transition: none;
		}
	}

	/* Banner mobile adjustments */
	.about__banner {
		min-height: 45vh !important;
		padding: 25px 20px;
	}

	.about__banner-content-title h1 {
		font-size: 36px !important;
		line-height: 44px !important;
		margin-bottom: 20px !important;
	}

	.about__banner-content-title p {
		font-size: 18px !important;
		line-height: 26px !important;
	}

	/* Scroll Down Button Mobile */
	.scroll-down-btn {
		position: absolute !important;
		bottom: 30px !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		z-index: 3 !important;
		cursor: pointer !important;
		padding: 15px !important;
		border-radius: 50% !important;
		background: rgba(54, 180, 229, 0.8) !important;
		transition: all 0.3s ease !important;
		animation: bounce 2s infinite !important;
	}

	.scroll-down-btn:hover {
		background: rgba(54, 180, 229, 1) !important;
		transform: translateX(-50%) scale(1.1) !important;
	}

	.scroll-arrow i {
		color: white !important;
		font-size: 1.5rem !important;
		display: block !important;
	}

	@keyframes bounce {
		0%, 20%, 50%, 80%, 100% {
			transform: translateX(-50%) translateY(0);
		}
		40% {
			transform: translateX(-50%) translateY(-10px);
		}
		60% {
			transform: translateX(-50%) translateY(-5px);
		}
	}

	/* Counter section mobile improvements */
	.counter__one-area {
		display: grid !important;
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
		gap: 15px !important;
		margin: 30px auto 0 auto !important;
		justify-items: center;
		max-width: 100%;
		padding: 0 10px;
	}

	.about__two-right-counter {
		flex: none !important;
		min-width: auto !important;
		padding: 15px 10px !important;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(10px);
		text-align: center;
		margin: 0;
		max-width: none;
		width: 100%;
		min-height: 80px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
	}

	.about__two-right-counter:hover {
		transform: translateY(-2px);
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	}

	.about__two-right-counter h2 {
		font-size: 1.6rem !important;
		margin-bottom: 5px !important;
		font-weight: 600;
		line-height: 1.2;
	}

	.about__two-right-counter p {
		font-size: 0.9rem !important;
		margin: 0;
		opacity: 0.9;
		line-height: 1.2;
	}

	/* About section mobile improvements */
	.about__two {
		padding: 40px 20px;
	}

	.about__two-left {
		text-align: center;
		margin-bottom: 30px;
	}

	.about__two-left .subtitle {
		font-size: 16px;
	}

	.about__two-left h2 {
		font-size: 28px;
		line-height: 36px;
		margin: 15px 0;
	}

	.about__two-left p {
		font-size: 16px;
		line-height: 24px;
	}

	.about__two-right img {
		max-width: 100%;
		height: auto;
		border-radius: 15px;
		margin-left: 0 !important;
		display: block;
		margin: 0 auto;
	}
}

/* Extra small screens */
@media (max-width: 480px) {
	/* Banner optimization for small screens */
	.about__banner {
		min-height: 35vh !important;
		padding: 20px 15px;
	}

	.about__banner-content-title h1 {
		font-size: 26px !important;
		line-height: 32px !important;
		margin-bottom: 15px !important;
	}

	.about__banner-content-title p {
		font-size: 15px !important;
		line-height: 22px !important;
	}

	.centrepoint__advantage-title h2 {
		font-size: 24px;
		line-height: 32px;
	}
	
	.video__content {
		padding: 20px 15px;
	}
	
	.video__content h2 {
		font-size: 25px !important;
		line-height: 33px !important;
		margin-bottom: 16px !important;
		max-width: 95%;
		font-weight: 700 !important;
	}
	
	.video__content p {
		font-size: 14px !important;
		line-height: 21px !important;
		margin-bottom: 18px !important;
		max-width: 90% !important;
	}
	
	.text_scroll ul li {
		font-size: 12px;
		padding: 0 10px;
	}
	
	.text_scroll ul li a {
		padding: 5px 12px;
		font-size: 12px;
		border-radius: 18px;
	}
	
	.video__two {
		padding: 25px 12px !important;
		min-height: 55vh !important;
		background: #000000 !important;
	}
	
	.video-background {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 1 !important;
		overflow: hidden;
	}
	
	.video-background iframe {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		width: 210% !important;
		height: 210% !important;
		min-width: 210% !important;
		min-height: 210% !important;
		transform: translate(-50%, -50%) !important;
		object-fit: cover !important;
		pointer-events: none !important;
		border: none !important;
	}
	
	/* Very small screens */
}

@media (max-width: 360px) {
	/* Banner optimization for extra small screens */
	.about__banner {
		min-height: 25vh !important;
		padding: 12px 8px;
	}

	.about__banner-content-title h1 {
		font-size: 22px !important;
		line-height: 28px !important;
		margin-bottom: 10px !important;
	}

	.about__banner-content-title p {
		font-size: 13px !important;
		line-height: 19px !important;
	}

	.scroll-down-btn {
		bottom: 20px !important;
	}

	.video__content {
		padding: 15px 10px;
	}
	
	.video__content h2 {
		font-size: 22px !important;
		line-height: 30px !important;
		margin-bottom: 12px !important;
		max-width: 100%;
		padding: 0 5px;
	}
	
	.video__content p {
		font-size: 13px !important;
		line-height: 19px !important;
		margin-bottom: 15px !important;
		max-width: 100% !important;
		padding: 0 5px;
	}
	
	.text_scroll ul li {
		font-size: 11px;
		padding: 0 8px;
	}
	
	.text_scroll ul li a {
		padding: 4px 10px;
		font-size: 11px;
		border-radius: 16px;
	}
	
	.video__two {
		padding: 20px 8px !important;
		min-height: 50vh !important;
		background: #000000 !important;
	}
	
	.video-background {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 1 !important;
		overflow: hidden;
	}
	
	.video-background iframe {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		width: 250% !important;
		height: 250% !important;
		min-width: 250% !important;
		min-height: 250% !important;
		transform: translate(-50%, -50%) !important;
		object-fit: cover !important;
		pointer-events: none !important;
		border: none !important;
	}
}

.video__content h2 {
	font-size: 28px !important;
	line-height: 36px !important;
}

.about__banner-content-title h1 {
	font-size: 28px !important;
	line-height: 36px !important;
}

.about__banner-content-title p {
	font-size: 16px !important;
	line-height: 24px !important;
}

.center-image-wrapper {
	width: 120px !important;
	height: 120px !important;
}

.content-section h4 {
	font-size: 18px;
}

.content-section p {
	font-size: 14px;
}

/* Extra small counter adjustments */
.counter__one-area {
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)) !important;
	gap: 10px !important;
	padding: 0 5px;
}

/* ==========================================================================
   Enhanced Mobile Experience Excellence Section
   ========================================================================== */

/* Additional mobile optimizations for Experience Excellence */
@media (max-width: 768px) {
	/* Better container alignment */
	.video__two .container {
		padding: 0 10px;
		max-width: 100%;
	}
	
	.video__two .row {
		margin: 0;
	}
	
	.video__two .col-xl-8,
	.video__two .col-lg-10 {
		padding: 0 15px;
		max-width: 100%;
		flex: 0 0 100%;
	}
	
	/* Ensure scroll slider works on mobile */
	.scroll__slider {
		background: rgba(0,0,0,0.2);
		backdrop-filter: blur(5px);
		padding: 20px 0;
		margin-top: 20px;
	}
	
	/* Enhanced text scroll for mobile */
	.sliders.text_scroll {
		animation-duration: 15s;
		animation-timing-function: linear;
		animation-iteration-count: infinite;
		animation-direction: reverse;
		will-change: transform;
	}
	
	/* Ensure smooth scrolling on mobile devices */
	.text_scroll ul {
		animation: none;
		transform: none;
	}
	
	/* Ensure video background covers full area */
	.video__two {
		background: #000000 !important;
	}
	
	.video-background {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		z-index: 1 !important;
		overflow: hidden !important;
	}
	
	.video-background iframe {
		position: absolute !important;
		top: 50% !important;
		left: 50% !important;
		width: 177.77% !important;
		height: 177.77% !important;
		min-width: 177.77% !important;
		min-height: 177.77% !important;
		transform: translate(-50%, -50%) !important;
		object-fit: cover !important;
		pointer-events: none !important;
		border: none !important;
		background: #000000;
	}
	
	/* Improve text readability and spacing */
	.video__content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 200px;
	}
	
	/* Enhanced text shadow for better readability */
	.video__content h2 {
		text-shadow: 2px 2px 6px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.5) !important;
		letter-spacing: 0.5px;
	}
	
	.video__content p {
		text-shadow: 1px 1px 4px rgba(0,0,0,0.8), 0 0 8px rgba(0,0,0,0.4) !important;
		letter-spacing: 0.3px;
	}
}

/* Portrait orientation optimization */
@media (max-width: 768px) and (orientation: portrait) {
	.video__two {
		min-height: 65vh !important;
	}
	
	.video__content {
		padding: 30px 20px;
	}
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
	.video__two {
		min-height: 80vh !important;
		background: #000000 !important;
	}
	
	.video-background iframe {
		width: 300% !important;
		height: 300% !important;
		min-width: 300% !important;
		min-height: 300% !important;
	}
	
	.video__content {
		padding: 25px 15px;
	}
	
	.video__content h2 {
		font-size: 24px !important;
		line-height: 32px !important;
	}
	
	.video__content p {
		font-size: 14px !important;
		line-height: 20px !important;
	}
}

/* Fix for very wide mobile screens */
@media (max-width: 768px) and (min-aspect-ratio: 16/9) {
	.video-background iframe {
		width: 400% !important;
		height: 400% !important;
		min-width: 400% !important;
		min-height: 400% !important;
	}
}

/* Fix for very tall mobile screens */
@media (max-width: 768px) and (max-aspect-ratio: 9/16) {
	.video-background iframe {
		width: 300% !important;
		height: 300% !important;
		min-width: 300% !important;
		min-height: 300% !important;
	}
}

/* Ensure text scroll animation works on all mobile devices */
@media (max-width: 768px) {
	/* Force animation on mobile */
	.sliders.text_scroll {
		animation: scroll 15s linear infinite reverse !important;
		-webkit-animation: scroll 15s linear infinite reverse !important;
	}
	
	/* Prefixed animation for better browser support */
	@-webkit-keyframes scroll {
		0% { -webkit-transform: translateX(0%); transform: translateX(0%); }
		100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
	}
	
	/* Ensure the duplicate content is properly structured */
	.text_scroll ul li:nth-child(n+4) {
		opacity: 1;
		display: flex;
	}
}

/* Reduce motion for accessibility while keeping basic functionality */
@media (prefers-reduced-motion: reduce) {
	.sliders.text_scroll {
		animation-duration: 40s !important;
		animation-timing-function: ease-in-out !important;
	}
}

.about__two-right-counter {
	min-height: 70px;
	padding: 12px 8px !important;
}

.about__two-right-counter h2 {
	font-size: 1.4rem !important;
}

.about__two-right-counter p {
	font-size: 0.8rem !important;
}

/* Extra small about section adjustments */
.about__two-left h2 {
	font-size: 24px;
	line-height: 32px;
}

.about__two-left p {
	font-size: 15px;
	line-height: 22px;
}
	
/* Extra small logo adjustments */
.side-panel-logo {
	padding: 15px 20px;
}
	
.side-panel-logo img {
	height: 45px !important;
	max-width: 180px;
}
	
/* Extra small brand logo adjustments */
.brand__showcase-item img,
.partner-logo img,
.client-logo img {
	max-width: 80px;
	height: auto;
}
}
