@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

@import url("https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/regular/style.css");
@import url("https://cdn.jsdelivr.net/npm/@phosphor-icons/web@2.1.1/src/fill/style.css");

:root {
	/* Colors */
	--primary: #0a2540;
	--primary-light: #204b7b;
	--accent: #00d4ff;
	--accent-hover: #00b8e6;
	--bg-color: #f8fafc;
	--surface: #ffffff;
	--text-main: #1e293b;
	--text-muted: #64748b;
	--border: #e2e8f0;
	/* Typography */
	--font-main: 'Outfit', sans-serif;
	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 1rem;
	--space-4: 1.5rem;
	--space-5: 2rem;
	--space-6: 3rem;
	--space-8: 4rem;
	--space-12: 6rem;
	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-glow: 0 0 20px rgba(0, 212, 255, 0.4);
	/* Transitions */
	--transition-fast: 0.15s ease-in-out;
	--transition-normal: 0.3s ease-in-out;
	--transition-slow: 0.5s ease-in-out;
}

/* Base Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	background-color: var(--bg-color);
	color: var(--text-main);
	line-height: 1.6;
	padding-top: 80px;
	/* offset for fixed header */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	background: none;
}

/* Layout Utilities - Bootstrap overrides */
.container {
	max-width: 1200px;
}

/* Typography Utilities */
.text-center {
	text-align: center !important;
}

.text-primaryy {
	color: var(--primary) !important;
}

.text-accent {
	color: var(--accent) !important;
}

.text-muted {
	color: var(--text-muted) !important;
}

.text-sm {
	font-size: 0.875rem !important;
}

.text-lg {
	font-size: 1.125rem !important;
}

.text-xl {
	font-size: 1.25rem !important;
}

.text-2xl {
	font-size: 1.5rem !important;
}

.text-3xl {
	font-size: 1.875rem !important;
}

.text-4xl {
	font-size: 2.25rem !important;
}

.font-bold {
	font-weight: 700 !important;
}

.font-semibold {
	font-weight: 600 !important;
}

.section {
	padding: var(--space-12) 0;
}

/* Header & Nav */
.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 50;
	border-bottom: 1px solid var(--border);
	transition: var(--transition-normal);
}

	.header .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 80px;
	}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary);
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

	.logo span {
		color: var(--accent);
	}

.nav-links {
	display: flex;
	gap: var(--space-4);
	list-style: none;
	align-items: center;
}

.mobile-nav-overlay {
	display: none
}

@media (max-width: 1024px) {

	.nav-links,
	.lang-switcher {
		display: none;
	}

	.mobile-menu-btn {
		display: block;
		color: var(--primary);
	}

	.mobile-nav-overlay {
		display: block;
		position: fixed;
		top: 80px;
		left: 0;
		width: 100%;
		height: calc(100vh - 80px);
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 2rem;
		gap: 1.5rem;
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
		transition: all 0.3s ease-in-out;
		z-index: 40;
		overflow-y: auto;
	}

		.mobile-nav-overlay.open {
			transform: translateY(0);
			opacity: 1;
			pointer-events: auto;
		}

		.mobile-nav-overlay a {
			font-size: 1.25rem;
			font-weight: 600;
			color: var(--primary);
			text-transform: uppercase;
		}
}

@media (min-width: 1025px) {
	.mobile-menu-btn {
		display: none;
	}
}

.nav-links a {
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--text-muted);
	transition: var(--transition-fast);
	position: relative;
}

	.nav-links a:hover,
	.nav-links a.active {
		color: var(--primary);
	}

	.nav-links a::after {
		content: ('');
		position: absolute;
		width: 0;
		height: 2px;
		bottom: -4px;
		left: 0;
		background-color: var(--accent);
		transition: var(--transition-fast);
	}

	.nav-links a:hover::after,
	.nav-links a.active::after {
		width: 100%;
	}

.lang-switcher a {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--text-muted);
	padding: 0 5px;
}

	.lang-switcher a.active {
		color: var(--primary);
	}

/* Buttons */
.btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: var(--space-3) var(--space-6) !important;
	border-radius: 9999px !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	transition: var(--transition-normal) !important;
	gap: var(--space-2) !important;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
	color: white !important;
	box-shadow: var(--shadow-md) !important;
	border: none !important;
}

	.btn-primary:hover {
		transform: translateY(-2px) !important;
		box-shadow: var(--shadow-lg), var(--shadow-glow) !important;
	}

.btn-secondary {
	background: transparent !important;
	color: var(--primary) !important;
	border: 2px solid var(--primary) !important;
}

	.btn-secondary:hover {
		background: var(--primary) !important;
		color: white !important;
	}

.btn-outline {
	background: transparent !important;
	color: white !important;
	border: 2px solid white !important;
}

	.btn-outline:hover {
		background: white !important;
		color: var(--primary) !important;
	}

/* Slider Component (Hero) */
.hero-slider-wrapper {
	position: relative;
	width: 100%;
	height: calc(85vh + 80px);
	min-height: 680px;
	overflow: hidden;
	margin-top: -80px;
	/* pull up into body padding area */
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity var(--transition-slow);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
}

	.hero-slide.active {
		opacity: 1;
		z-index: 2;
	}

	.hero-slide::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(to right, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.4) 100%);
	}

.hero-content {
	position: relative;
	z-index: 10;
	max-width: 800px;
	color: white;
	transform: translateY(20px);
	opacity: 0;
	transition: all var(--transition-slow);
	transition-delay: 0.2s;
}

.hero-slide.active .hero-content {
	transform: translateY(0);
	opacity: 1;
}

.hero-content h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: var(--space-4);
}

	.hero-content h1 span {
		color: var(--accent);
	}

.hero-content p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: var(--space-6);
	max-width: 600px;
}

.hero-slider-controls {
	position: absolute;
	bottom: var(--space-8);
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

.hero-slider-dots {
	display: flex;
	gap: 8px;
}

.hero-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid white;
	cursor: pointer;
	transition: var(--transition-fast);
}

	.hero-dot.active {
		background: var(--accent);
		border-color: var(--accent);
		width: 30px;
		border-radius: 10px;
	}

.hero-arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: var(--transition-fast);
}

	.hero-arrow:hover {
		background: var(--accent);
		color: var(--primary);
		border-color: var(--accent);
	}


/* Reference Logo Marquee */
.marquee-container {
	overflow: hidden;
	width: 100%;
	padding: var(--space-6) 0;
	background: white;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	position: relative;
}

	/* Fading edges */
	.marquee-container::before,
	.marquee-container::after {
		content: "";
		position: absolute;
		top: 0;
		width: 100px;
		height: 100%;
		z-index: 2;
	}

	.marquee-container::before {
		left: 0;
		background: linear-gradient(to right, white, transparent);
	}

	.marquee-container::after {
		right: 0;
		background: linear-gradient(to left, white, transparent);
	}

.marquee-content {
	display: flex;
	/*width: max-content;*/
	align-items: center;
	gap: var(--space-8);
	/*animation: scrollLeft 30s linear infinite;*/
	justify-content: center;
}

	.marquee-content img {
		height: 60px;
		object-fit: contain;
		filter: grayscale(100%);
		opacity: 0.6;
		transition: var(--transition-fast);
	}

		.marquee-content img:hover {
			filter: grayscale(0%);
			opacity: 1;
		}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* Accordion (FAQ) */
.accordion {
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: var(--space-3);
	background: white;
}

.accordion-header {
	width: 100%;
	padding: var(--space-4);
	text-align: left;
	background: white;
	border: none;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

	.accordion-header.active {
		background: var(--bg-color);
		color: var(--accent-hover);
	}

	.accordion-header i {
		transition: transform var(--transition-fast);
	}

.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--transition-normal);
	background: white;
}

.accordion-panel-inner {
	padding: var(--space-4);
	color: var(--text-muted);
	border-top: 1px solid var(--border);
}

/* Document Cards */
.doc-card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: var(--space-6);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	box-shadow: var(--shadow-sm);
	transition: var(--transition-normal);
	text-decoration: none;
}

	.doc-card:hover {
		box-shadow: var(--shadow-md);
		border-color: var(--accent);
		transform: translateY(-3px);
	}

.doc-card-info {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

	.doc-card-info i {
		font-size: 2.5rem;
		color: #ef4444;
	}

	/* PDF Red */
	.doc-card-info h4 {
		font-size: 1.125rem;
		color: var(--primary);
		font-weight: 600;
	}

	.doc-card-info p {
		font-size: 0.875rem;
		color: var(--text-muted);
	}

.doc-download-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bg-color);
	color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	transition: var(--transition-fast);
}

.doc-card:hover .doc-download-btn {
	background: var(--primary);
	color: white;
}

/* Subpage Header */
.page-header {
	padding: calc(var(--space-12) + 80px) 0 var(--space-8);
	background: var(--primary);
	color: white;
	text-align: center;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5), transparent), url('https://images.unsplash.com/photo-1574689049597-7e6dde0ec6ef?q=80&w=2670&auto=format&fit=crop');
	/* Aesthetic placeholder */
	background-size: cover;
	background-position: center;
	background-blend-mode: multiply;
}

	.page-header h1 {
		font-size: clamp(2.5rem, 4vw, 3.5rem);
		color: var(--accent);
		margin-bottom: var(--space-2);
	}

	.page-header p {
		font-size: 1.25rem;
		opacity: 0.9;
		max-width: 700px;
		margin: 0 auto;
	}

/* Features Card (from original) */
.feature-card {
	background: var(--surface);
	padding: var(--space-4);
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
	transition: var(--transition-normal);
	border: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

.jstfy {
	text-align: justify !important;
	font-size: 12px;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 212, 255, 0.1);
	border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: rgba(0, 212, 255, 0.1);
	color: var(--primary);
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: var(--space-4);
	margin: 0 auto 1.5rem;
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: var(--space-2);
	color: var(--primary);
}

/* Footer */
.footer {
	background-color: var(--primary);
	color: white;
	padding: var(--space-8) 0 var(--space-4);
	margin-top: auto;
}

.footer-grid {
	margin-bottom: var(--space-8);
}

.footer h3 {
	font-size: 1.25rem;
	margin-bottom: var(--space-4);
	color: var(--accent);
}

.footer ul {
	list-style: none;
}

	.footer ul li {
		margin-bottom: var(--space-2);
	}

		.footer ul li a {
			color: rgba(255, 255, 255, 0.7);
			transition: var(--transition-fast);
		}

			.footer ul li a:hover {
				color: white;
				padding-left: var(--space-1);
			}

.footer-bottom {
	text-align: center;
	padding-top: var(--space-4);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.875rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.social-icons {
	display: flex;
	gap: 1rem;
	font-size: 1.25rem;
}

	.social-icons a {
		color: rgba(255, 255, 255, 0.7);
		transition: var(--transition-fast);
	}

		.social-icons a:hover {
			color: var(--accent);
		}

/* Footer Contact CTA & Modal Styles */
.footer-contact-cta {
	margin-top: 1.5rem;
}

	.footer-contact-cta p {
		font-size: 0.9rem;
		color: rgba(255, 255, 255, 0.8);
		margin-bottom: 0.75rem;
		line-height: 1.4;
	}

.btn-contact-popup {
	background: white !important;
	color: var(--primary) !important;
	border: none !important;
	padding: 0.6rem 1.25rem !important;
	font-size: 0.9rem !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

	.btn-contact-popup:hover {
		background: var(--accent) !important;
		color: var(--primary) !important;
		transform: translateY(-2px) scale(1.02) !important;
	}

/* Modal Customization */
.modal-content {
	border-radius: 1.25rem;
	border: none;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.modal-header {
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	color: white;
	border-bottom: none;
	padding: 1.5rem;
}

.modal-title {
	font-weight: 700;
	letter-spacing: -0.02em;
}

.modal-body {
	padding: 2rem;
}

.form-label {
	font-weight: 600;
	color: var(--primary);
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
}

.modal-footer {
	border-top: 1px solid var(--border);
	padding: 1.25rem 2rem;
}

/* Application Gallery (New) */
.app-gallery-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: var(--transition-normal);
}

	.app-gallery-item:hover {
		transform: translateY(-5px);
	}

.app-gallery-img {
	width: 100%;
	aspect-ratio: 1/1;
	border-radius: 1.5rem;
	overflow: hidden;
	background: white;
	padding: 1.5rem;
	box-shadow: var(--shadow-md);
	margin-bottom: 1rem;
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-normal);
}

.app-gallery-item:hover .app-gallery-img {
	box-shadow: var(--shadow-lg), var(--shadow-glow);
	border-color: var(--accent);
}

.app-gallery-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.app-gallery-title {
	font-weight: 700;
	color: var(--primary);
	font-size: 0.95rem;
	text-align: center;
}

/* Comparison Table (New) */
.comparison-table-container {
	background: white;
	border-radius: 1.5rem;
	padding: 2rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border);
}

.comparison-table {
	margin-bottom: 0;
	vertical-align: middle;
}

	.comparison-table thead th {
		border-bottom: none;
		padding: 1.5rem 1rem;
		font-size: 1.1rem;
		font-weight: 800;
	}

	.comparison-table tbody td {
		padding: 1.25rem 1rem;
		border-bottom: 1px solid var(--border);
		font-size: 0.95rem;
	}

	.comparison-table tbody tr:last-child td {
		border-bottom: none;
	}

.highlight-cell {
	background-color: rgba(0, 212, 255, 0.05);
	border-left: 2px solid rgba(0, 212, 255, 0.2);
	border-right: 2px solid rgba(0, 212, 255, 0.2);
}

.comparison-table th.rounded-top-4 {
	border-top-left-radius: 1rem !important;
	border-top-right-radius: 1rem !important;
}

/* Brand name Shield part — thin weight like logo */
.bs-shield {
	font-weight: 300;
}

/* Utilities */
.accent-line {
	width: 60px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

/* Photo Gallery Section */
.photo-gallery-section {
	background: var(--bg-color);
	border-radius: 2rem;
	padding: 3rem 2rem;
	margin-top: 2rem;
	border: 1px solid var(--border);
}

.photo-gal-link {
	display: block;
	text-decoration: none;
}

.photo-gal-card {
	position: relative;
	border-radius: 1.25rem;
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: var(--shadow-md);
	background: #0a2540;
	cursor: pointer;
}

	.photo-gal-card img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transition: transform 0.45s ease, opacity 0.45s ease;
	}

	.photo-gal-card:hover img {
		transform: scale(1.08);
		opacity: 0.7;
	}

.photo-gal-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, rgba(10, 37, 64, 0.6), rgba(0, 212, 255, 0.25));
	opacity: 0;
	transition: opacity 0.35s ease;
}

.photo-gal-card:hover .photo-gal-overlay {
	opacity: 1;
}

.photo-gal-overlay i {
	font-size: 2.5rem;
	color: white;
	filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.8));
}

.photo-gal-overlay span {
	color: white;
	font-weight: 700;
	font-size: 0.95rem;
	text-align: center;
	padding: 0 1rem;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
	.photo-gallery-section {
		padding: 1.5rem 1rem;
	}
}

.home-about p {
	color: rgba(255,255,255,0.85);
}

.ado-img {
	max-width: 320px;
	width: 100%;
	object-fit: contain;
}

.gallery-card {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	background: white;
	border: 1px solid var(--border);
	height: 100%;
}

.gallery-image-container {
	position: relative;
	aspect-ratio: 4/3;
}

	.gallery-image-container img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

.gallery-label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
}

.gallery-text {
	padding: 1.5rem;
}

.barp-contact-grid {
	display: grid;
	gap: var(--space-8);
	margin-top: var(--space-8);
}

/*@media (min-width: 768px) {
	.barp-contact-grid {
		grid-template-columns: 1fr 1.2fr;
	}
}*/

.barp-contact-info {
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	color: white;
	padding: var(--space-8);
	border-radius: 1rem;
	box-shadow: var(--shadow-lg);
}

	.barp-contact-info h2 {
		font-size: 2rem;
		margin-bottom: var(--space-6);
		color: var(--accent);
	}

.barp-info-item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-4);
	margin-bottom: var(--space-6);
}

	.barp-info-item i {
		font-size: 2rem;
		color: var(--accent);
		margin-top: 4px;
	}

	.barp-info-item h4 {
		font-size: 1.25rem;
		margin-bottom: var(--space-1);
	}

	.barp-info-item p {
		color: rgba(255,255,255,0.8);
		line-height: 1.6;
	}

.barp-dept-grid {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.barp-dept-card {
	background: rgba(0,0,0,0.2);
	padding: 1rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

	.barp-dept-card i {
		color: white;
		font-size: 1.5rem;
		margin-top: 0;
	}

	.barp-dept-card h5 {
		font-size: 1rem;
		font-weight: 600;
		margin-bottom: 0.25rem;
	}

	.barp-dept-card a {
		color: var(--accent);
		font-size: 0.875rem;
		text-decoration: underline;
	}

.barp-contact-form {
	background: white;
	padding: var(--space-8);
	border-radius: 1rem;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
}

	.barp-contact-form h2 {
		font-size: 2rem;
		color: var(--primary);
		margin-bottom: var(--space-6);
	}

.barp-form-group {
	margin-bottom: var(--space-4);
}

	.barp-form-group label {
		display: block;
		margin-bottom: var(--space-2);
		font-weight: 500;
		color: var(--text-main);
	}

.barp-form-control {
	width: 100%;
	padding: var(--space-3);
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	font-family: inherit;
	font-size: 1rem;
	color: var(--text-main);
	background-color: var(--bg-color);
	transition: var(--transition-fast);
}

	.barp-form-control:focus {
		outline: none;
		border-color: var(--primary);
		box-shadow: 0 0 0 3px rgba(0,212,255,0.2);
		background-color: white;
	}

textarea.barp-form-control {
	resize: vertical;
	min-height: 120px;
}

.practical-card {
	background: rgba(0,0,0,0.3);
	border-radius: 3rem;
	overflow: hidden;
	position: relative;
	padding: 127px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,0.1);
	height: 450px;
}


	.practical-card i {
		font-size: 4rem;
		color: var(--accent);
		cursor: pointer;
		transition: transform 0.2s;
		z-index: 10;
	}

	.practical-card .practical-div {
		position: absolute;
		bottom: 0;
		width: 100%;
		padding: 1rem;
		background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
		z-index: 5;
	}


	.practical-card img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 0.5;
	}


.home-about-content {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(to right, var(--primary) 0%, var(--primary) 35%, rgba(10,37,64,0.85) 55%, rgba(10,37,64,0.35) 75%, transparent 100%), url('/assets/images/adomining-1bg.jpg') right center / cover no-repeat;
}

.home-about-main {
	position: relative;
	z-index: 1;
}

	.home-about-main h2 {
		color: var(--accent);
	}


	.home-about-main .div-line {
		width: 60px;
		height: 4px;
		background: var(--accent);
		margin-bottom: 1.5rem;
	}

.section-item {
	background-color: var(--bg-color);
}

	.section-item .text-center {
		margin-bottom: var(--space-8);
	}

	.section-item .text-3xl {
		margin-bottom: var(--space-2);
	}

.practical-content {
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	color: white;
}

	.practical-content p {
		opacity: 0.8;
		font-size: 1.125rem;
	}

	.practical-content a {
		white-space: nowrap;
	}

.mining-content {
	background-color: white;
}

.mining-underline {
	width: 60px;
	height: 4px;
	background: var(--accent);
	margin-bottom: 1.5rem;
}

.sss-content {
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	color: white;
}

.references-content {
	padding: var(--space-6) 0;
	background: white;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}


	.references-content h3 {
		text-transform: uppercase;
		letter-spacing: 0.1em;
	}

	.references-content img {
		height: 60px;
		object-fit: contain;
	}

.section-home {
	position: relative;
	overflow: hidden;
	background-color: var(--primary);
}
.section-home-cms{
	background-color: white;
}

.section-home-cms img{
	border-radius: 1rem; box-shadow: var(--shadow-lg);
}

.quality-content{
	background-color: var(--bg-color);
}

.section-about-cms{
	background-color: white;
}

.td-cls{
	background-color:#9aacc7 !important;
}

.applications-content{
	background-color: var(--bg-color);
}

.applications-content .div-line{
	width: 60px; height: 4px; background: var(--accent); margin: 1rem auto;
}

.section-global{
	background-color: var(--bg-color);
}

.section-global .div-line{
	width: 60px; height: 4px; background: var(--accent); margin-bottom: 2rem;
}

.section-global .flex-column{
	margin-right:10px;
}

.technical-line{
	width: 60px; height: 4px; background: var(--accent); margin-bottom: 2rem;
}

.sss-list-content .max-w-3xl{
	max-width: 800px; margin: 0 auto;
}

.contact-section{
	background: linear-gradient(135deg, var(--primary), var(--primary-light)); padding: 3rem 0;
}

.contact-section img{
	max-width: 200px; margin: 0 auto 1.5rem; display: block;
}

.contact-section .contact-main{
	display: inline-flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 2rem; padding: 0.75rem 1.75rem;
}

.contact-section .contact-main i{
	font-size: 1.5rem; color: var(--accent);
}

.contact-section .contact-main a{
	color: var(--accent); font-size: 1.1rem; font-weight: 700; text-decoration: none;
}
.section-contact .div-line{
	width: 60px; height: 4px; background: var(--accent); margin: 1rem auto;
}

.barp-contact-form{
	max-width: 900px; margin: 0 auto;
}

.barp-contact-form button{
	width: 100%; margin-top: 0.5rem;
}

.lang-switcher {
	position: relative;
	bottom: 9px;
}

.footer-icon-list{
	margin:10px 0 0 0;
}

    .footer-icon-list img {
        margin-right: 15px;
    }


@media (max-width: 768px) {
	.mobile-lang-switcher {
		display: block !important;
		margin-top: 30px !important;
		padding-bottom: 2rem;
	}

	.header .lang-switcher {
		display: none !important;		
	}

}

.practical-content p a{
	color:#00d4ff;
}
