/**
 * Bridge Wireless Main Stylesheet
 * Includes animations, effects, and responsive enhancements
 */

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
	background-color: #F8F9FA;
}

/* Body Background */
body {
	background-color: #F8F9FA;
	margin: 0;
	padding: 0;
}

/* Main wrapper to prevent white gaps */
main {
	background-color: #F8F9FA;
}

/* Ensure no white gaps on scroll */
.group\/design-root {
	background-color: #F8F9FA;
}

/* Prevent horizontal overflow and white lines */
* {
	box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
}

/* H2 Color */
h2 {
	color: #0F234C;
}

h2.text-brand-blue {
	color: #0F234C !important;
}

h2.text-white {
	color: #ffffff !important;
}

/* H3 Color */
h3 {
	color: #1E234C;
}

h3.text-brand-blue,
h3.text-white {
	color: inherit;
}

/* Header Scroll Effect */
#main-header {
	transition: all 0.3s ease;
	background-color: #0A2540 !important;
	min-height: 64px;
	position: sticky;
	top: 0;
	z-index: 40;
	width: 100%;
	border: none !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
	margin: 0 !important;
	padding: 0 !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
	overflow: visible;
}

#main-header.scrolled {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	background-color: #0A2540 !important;
}

/* Ensure header container has no white background */
#main-header .container,
#main-header > div {
	background-color: transparent !important;
}

/* Ensure no white gaps around header */
#main-header * {
	background-color: transparent;
}

/* Override Tailwind shadow-md class to prevent white line */
#main-header.shadow-md {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
	-moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Extend header background to cover any white line below */
#main-header::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #0A2540;
	z-index: 41;
	pointer-events: none;
}

/* Ensure main content starts right after header with no gap */
main {
	margin-top: 0;
	padding-top: 0;
}

/* Hero section should start immediately after header */
.hero-section,
.hero-wrapper {
	margin-top: 0;
	padding-top: 0;
}

/* Logo Box Styling */
.logo-box {
	background-color: transparent;
	border: none;
	padding: 0;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: auto;
	width: auto;
	height: auto;
	max-height: 48px;
	max-width: 180px;
	overflow: hidden;
}

.logo-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
	height: auto;
	width: 100%;
}

.logo-text-bridge {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.1;
	font-family: 'Inter', sans-serif;
	display: block;
	white-space: nowrap;
}

.logo-text-wireless {
	font-size: 9px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: 'Inter', sans-serif;
	display: block;
	margin-top: 1px;
	white-space: nowrap;
}

.logo-link {
	text-decoration: none;
	display: flex;
	align-items: center;
	height: auto;
	width: auto;
}

.logo-link img {
	max-height: 40px;
	max-width: 180px;
	height: auto;
	width: auto;
	object-fit: contain;
}

/* Logo responsive adjustments */
@media (max-width: 1023px) {
	.logo-box {
		max-height: 44px;
		max-width: 160px;
	}
	
	.logo-text-bridge {
		font-size: 16px;
		line-height: 1.1;
	}
	
	.logo-text-wireless {
		font-size: 8px;
		letter-spacing: 0.8px;
		margin-top: 1px;
	}
	
	.logo-link {
		height: auto;
	}
	
	.logo-link img {
		max-height: 36px;
		max-width: 150px;
		width: auto;
	}
}

/* Mobile specific logo adjustments */
@media (max-width: 767px) {
	.logo-box {
		max-height: 40px;
		max-width: 140px;
	}
	
	.logo-text-bridge {
		font-size: 14px;
	}
	
	.logo-text-wireless {
		font-size: 7px;
		letter-spacing: 0.7px;
	}
	
	.logo-link img {
		max-height: 32px;
		max-width: 130px;
	}
	
	#main-header {
		padding-left: 1rem;
		padding-right: 1rem;
		min-height: 56px;
		height: auto;
	}
	
	#main-header .container {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* Desktop navigation menu styling */
#main-header #desktop-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	justify-content: flex-end;
	flex-wrap: nowrap;
	width: auto;
}

.nav-link {
	color: #ffffff !important;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.5rem 0;
	font-family: 'Inter', sans-serif;
	white-space: nowrap;
}

.nav-link:hover {
	color: #ffffff !important;
	opacity: 0.9;
}

.nav-link-active {
	border-bottom: 2px solid #00C49A;
	padding-bottom: 0.3rem;
}

/* Contact Us Button */
.contact-btn {
	background-color: #00A99D !important;
	color: #ffffff !important;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	max-width: none;
	width: auto;
	line-height: 1.2;
	font-family: 'Inter', sans-serif;
	white-space: nowrap;
}

.contact-btn:hover {
	background-color: #00968a !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 169, 157, 0.3);
}

/* Desktop: Single line contact button */
@media (min-width: 1024px) {
	.contact-btn {
		flex-direction: row;
		gap: 4px;
		padding: 10px 20px;
	}
	
	.contact-line1::after {
		content: ' ';
	}
	
	.contact-line2 {
		margin-left: 0;
	}
}

.contact-line1 {
	font-size: 14px;
	display: block;
}

.contact-line2 {
	font-size: 14px;
	display: block;
}

/* Ensure header text is white */
#main-header,
#main-header a:not(.nav-link):not(.contact-btn),
#main-header span:not(.logo-text-bridge):not(.logo-text-wireless):not(.contact-line1):not(.contact-line2),
#main-header button {
	color: #ffffff !important;
}

/* Navigation Drawer Menu Item Hover */
#nav-drawer li:hover {
	background-color: rgba(10, 37, 64, 0.1);
}

#nav-drawer.dark li:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

/* Navigation Drawer Active State */
#nav-drawer li a {
	display: block;
	width: 100%;
}

/* Smooth transitions for drawer */
#nav-drawer-overlay {
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
}

/* Hero Section Animations */
.hero-section {
	position: relative;
	overflow: hidden;
}

.hero-content {
	animation: fadeInUp 1s ease-out;
	position: relative;
	z-index: 2;
}

.hero-section .btn-primary {
	position: relative;
	z-index: 2;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(15, 35, 76, 0.8) 0%, rgba(0, 169, 157, 0.2) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	z-index: 1;
	pointer-events: none;
}

.hero-section:hover::before {
	opacity: 1;
}

/* Button Animations */
.btn-primary {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	display: inline-flex;
	width: auto;
	max-width: none;
	z-index: 10;
	cursor: pointer;
	pointer-events: auto;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 169, 157, 0.4);
}

.btn-primary:active {
	transform: translateY(0);
}

/* Feature Cards Animation */
.feature-card {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.feature-card.animate {
	opacity: 1;
	transform: translateY(0);
}

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

.feature-card .material-symbols-outlined {
	transition: transform 0.3s ease;
}

.feature-card:hover .material-symbols-outlined {
	transform: scale(1.2) rotate(5deg);
}

/* Service Cards Animation */
.service-card {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.4s ease;
}

.service-card.animate {
	opacity: 1;
	transform: scale(1);
}

.service-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-card:hover > div:first-child {
	background-color: rgba(0, 169, 157, 0.2) !important;
	transform: scale(1.1);
}

.service-card .material-symbols-outlined {
	transition: all 0.3s ease;
}

.service-card:hover .material-symbols-outlined {
	transform: scale(1.1);
}

/* Desktop Service Cards Enhancement */
@media (min-width: 1024px) {
	.service-card {
		min-height: 280px;
		justify-content: flex-start;
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
	
	.service-card h3 {
		margin-top: 0.5rem;
		margin-bottom: 0.5rem;
	}
	
	.service-card p {
		line-height: 1.6;
		max-width: 90%;
	}
}

/* About Section Animation */
.about-image {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease;
}

.about-image.animate {
	opacity: 1;
	transform: translateX(0);
}

.about-content {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease;
}

.about-content.animate {
	opacity: 1;
	transform: translateX(0);
}

/* Statistics Counter Animation */
.stat-item {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.stat-item.animated,
.stat-item.animate {
	opacity: 1;
	transform: translateY(0);
}

.stat-number {
	transition: all 0.3s ease;
	display: inline-block;
}

.stat-item:hover .stat-number {
	transform: scale(1.1);
}

.stat-item p:first-child {
	transition: all 0.3s ease;
}

.stat-item:hover p:first-child {
	transform: scale(1.1);
	color: #ffffff;
}

/* Navigation Drawer Animation */
#nav-drawer-overlay {
	opacity: 0;
	transition: opacity 0.3s ease;
}

#nav-drawer-overlay.active {
	opacity: 1;
}

#nav-drawer {
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

#nav-drawer.active {
	transform: translateX(0);
}


/* Desktop: Hide drawer toggle, show regular navigation */
@media (min-width: 1024px) {
	#nav-drawer-toggle {
		display: none;
	}
	
	#desktop-nav {
		display: flex !important;
	}
}

/* Mobile/Tablet: Hide desktop nav, show drawer toggle */
@media (max-width: 1023px) {
	#desktop-nav {
		display: none !important;
	}
	
	#nav-drawer-toggle {
		display: flex;
	}
	
	#main-header {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* Fade In Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale(0.5);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes shimmer {
	0% {
		background-position: -1000px 0;
	}
	100% {
		background-position: 1000px 0;
	}
}

/* Loading Animation */
.loading {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.loading.loaded {
	opacity: 1;
}

/* Parallax Effect for Hero */
.parallax-bg {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

@media (max-width: 767px) {
	.parallax-bg {
		background-attachment: scroll;
	}
}

/* Scroll Animation Classes */
.animate-on-scroll {
	opacity: 0;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
	opacity: 1;
}

/* Animation Types */
.animate-on-scroll[data-animation="fadeInUp"].animated {
	animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="fadeIn"].animated {
	animation: fadeIn 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="slideInLeft"].animated {
	animation: slideInLeft 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="slideInRight"].animated {
	animation: slideInRight 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="fadeInLeft"].animated {
	animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="fadeInRight"].animated {
	animation: fadeInRight 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="scaleIn"].animated {
	animation: scaleIn 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="zoomIn"].animated {
	animation: zoomIn 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="slideInUp"].animated {
	animation: slideInUp 0.8s ease-out forwards;
}

.animate-on-scroll[data-animation="bounceIn"].animated {
	animation: bounceIn 0.8s ease-out forwards;
}

/* Feature Cards Enhanced Animations */
.feature-card {
	transform: translateY(30px);
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card.animated {
	opacity: 1;
	transform: translateY(0);
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 169, 157, 0.2);
}

.feature-card .material-symbols-outlined {
	transition: all 0.4s ease;
}

.feature-card:hover .material-symbols-outlined {
	transform: scale(1.2) rotate(5deg);
	animation: pulse 2s infinite;
}

/* Service Cards Enhanced Animations */
.service-card {
	transform: translateY(30px) scale(0.95);
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.animated {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0, 169, 157, 0.25);
}

.service-card:hover > div:first-child {
	transform: scale(1.15) rotate(5deg);
	background-color: rgba(0, 169, 157, 0.25) !important;
}

/* Service Cards Height Fix - Ensure equal heights */
.elementor-section .elementor-container {
	display: flex;
	align-items: stretch;
}

.elementor-section .elementor-column {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.elementor-section .elementor-column .elementor-widget-html {
	height: auto;
	display: flex;
	flex-direction: column;
}

.elementor-section .elementor-column .service-card {
	height: 100%;
	min-height: 180px;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
}

/* Statistics Section Enhanced */
.stats-section {
	position: relative;
	overflow: hidden;
}

.stat-item {
	transform: scale(0.8);
	opacity: 0;
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-item.animated {
	opacity: 1;
	transform: scale(1);
}

.stat-item:hover {
	transform: scale(1.1);
}

.stat-item p:first-child {
	transition: all 0.4s ease;
	display: inline-block;
}

.stat-item:hover p:first-child {
	transform: scale(1.2);
	text-shadow: 0 0 20px rgba(0, 169, 157, 0.5);
}

/* CTA Section Enhanced */
.cta-section {
	position: relative;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 169, 157, 0.05) 0%, rgba(15, 35, 76, 0.05) 100%);
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
}

.cta-section:hover::before {
	opacity: 1;
}

/* Hero Section Enhanced */
.hero-wrapper {
	position: relative;
	overflow: hidden;
}

.hero-content h1 {
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content.animated h1 {
	animation: fadeInUp 1s ease-out forwards;
}

.hero-content.animated p {
	animation: fadeInUp 1s ease-out 0.2s forwards;
	opacity: 0;
}

/* Button Enhanced Animations */
.btn-primary {
	position: relative;
	overflow: hidden;
	transform: translateY(0);
	transition: all 0.3s ease;
}

.btn-primary::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 169, 157, 0.4);
}

.btn-primary:active {
	transform: translateY(-1px);
}

/* Smooth Scroll Enhancement */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

/* Loading Animation */
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Stagger Animation Delays */
.animate-on-scroll[data-delay="0"] {
	transition-delay: 0s;
}

.animate-on-scroll[data-delay="100"] {
	transition-delay: 0.1s;
}

.animate-on-scroll[data-delay="200"] {
	transition-delay: 0.2s;
}

.animate-on-scroll[data-delay="300"] {
	transition-delay: 0.3s;
}

.animate-on-scroll[data-delay="400"] {
	transition-delay: 0.4s;
}

.animate-on-scroll[data-delay="500"] {
	transition-delay: 0.5s;
}

.animate-on-scroll[data-delay="600"] {
	transition-delay: 0.6s;
}

/* Responsive Typography */
@media (max-width: 640px) {
	.hero-content h1 {
		font-size: 2rem;
		line-height: 1.2;
	}
	
	.hero-content p {
		font-size: 1rem;
	}
}

/* Smooth Transitions for All Interactive Elements */
a, button {
	transition: all 0.3s ease;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
	outline: 2px solid #00a99d;
	outline-offset: 2px;
}

/* Image Lazy Loading Effect */
img {
	transition: opacity 0.3s ease;
}

img[loading="lazy"] {
	opacity: 0;
}

img[loading="lazy"].loaded {
	opacity: 1;
}

/* Scroll Reveal Animation */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* Hover Effects for Links */
a:hover {
	text-decoration: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: #00a99d;
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #0f234c;
}

/* Footer Styles */
footer {
	background-color: #1E2A3A;
}

/* Footer Desktop Grid Layout */
.footer-desktop {
	display: none;
}

.footer-mobile {
	display: flex;
}

@media (min-width: 1024px) {
	.footer-desktop {
		display: grid !important;
	}
	
	.footer-mobile {
		display: none !important;
	}
}

@media (max-width: 1023px) {
	.footer-desktop {
		display: none !important;
	}
	
	.footer-mobile {
		display: flex !important;
	}
}

/* Footer Accordion Styles (Mobile Only) */
footer details {
	transition: all 0.3s ease;
}

footer details summary {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

footer details summary::-webkit-details-marker {
	display: none;
}

footer details[open] summary {
	margin-bottom: 0.5rem;
}

/* Footer Accordion Animation */
.footer-accordion summary span {
	transition: transform 0.3s ease;
}

.footer-accordion[open] summary span {
	transform: rotate(180deg);
}

/* Desktop Footer Column Headings */
footer h3 {
	color: #F0F4F8;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1rem;
	font-family: 'Inter', sans-serif;
}

/* Desktop Footer Links */
footer .lg\:col-span-2 ul,
footer .lg\:col-span-4 ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .lg\:col-span-2 a,
footer .lg\:col-span-4 a {
	text-decoration: none;
	display: block;
}

/* Footer Contact Info Desktop */
footer .lg\:col-span-4 .flex.items-start {
	align-items: flex-start;
}

footer .lg\:col-span-4 .material-symbols-outlined {
	flex-shrink: 0;
}

/* Footer Social Icons Hover Effect */
footer a[aria-label] svg {
	transition: transform 0.3s ease;
}

footer a[aria-label]:hover svg {
	transform: scale(1.1);
}

/* Footer Contact Info Hover */
footer .flex.items-start.gap-3 {
	transition: transform 0.2s ease;
}

footer .flex.items-start.gap-3:hover {
	transform: translateX(4px);
}

/* Partner Logo Slider */
.partner-slider-container {
	position: relative;
	overflow: hidden;
}

.partner-slider {
	display: flex;
	animation: scroll-partners 20s linear infinite;
	will-change: transform;
}

.partner-slider:hover {
	animation-play-state: paused;
}

@keyframes scroll-partners {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Remove border radius from .rounded-lg class */
.rounded-lg {
	border-radius: 0 !important;
}

/* Partner Logo Hover Effect */
.partner-logo-item {
	transition: all 0.3s ease;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
	border-radius: 0 !important;
}

.partner-logo-item:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	background-color: #ffffff;
}

.dark .partner-logo-item:hover {
	background-color: #1f2937;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Hero Section Styling to Match Image */
.hero-content-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 2rem;
	padding-right: 2rem;
}

.hero-content-column .elementor-heading-title {
	text-align: left !important;
	line-height: 1.1 !important;
	margin-bottom: 1.5rem;
}

.hero-content-column .elementor-heading-title br {
	display: block;
}

@media (min-width: 768px) {
	.hero-content-column {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

@media (min-width: 1024px) {
	.hero-content-column {
		padding-left: 6rem;
		padding-right: 6rem;
	}
}

/* Features Section Styling - Clean and Aligned with Reduced Gaps */
.feature-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	height: 100%;
	padding: 1.5rem;
}

.feature-column .elementor-widget-html {
	width: 100%;
	margin-bottom: 0.5rem !important;
}

.feature-column .elementor-heading-title {
	text-align: center !important;
	margin-bottom: 0.5rem !important;
	margin-top: 0 !important;
}

.feature-column .elementor-widget-text-editor {
	text-align: center !important;
	margin-top: 0.25rem !important;
}

.feature-column .elementor-widget-text-editor p {
	text-align: center !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Ensure equal heights for feature columns */
.elementor-section .elementor-container {
	display: flex;
	align-items: stretch;
}

.elementor-section .feature-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

/* About Us Page Styling - Mission Section with Purple Gradient */
/* 
 * To use this CSS, add a custom CSS class "mission-section" to the Mission section in Elementor:
 * 1. Edit the About page in Elementor
 * 2. Select the Mission section (the one with "Our Mission" heading)
 * 3. Go to Advanced tab > CSS Classes
 * 4. Add: mission-section
 */
body.page-about .elementor-section.mission-section,
body.page-about .elementor-section[data-id*="mission"] {
	background: linear-gradient(180deg, #6B46C1 0%, #8B5CF6 50%, #A78BFA 100%) !important;
	background-color: transparent !important;
}

/* Fallback: Target section that comes after "Why Choose" section (typically 4th section) */
body.page-about .elementor-section:nth-of-type(4) {
	background: linear-gradient(180deg, #6B46C1 0%, #8B5CF6 50%, #A78BFA 100%) !important;
	background-color: transparent !important;
}

/* Mission heading - ensure white and centered */
body.page-about .elementor-section.mission-section .elementor-heading-title,
body.page-about .elementor-section[data-id*="mission"] .elementor-heading-title,
body.page-about .elementor-section:nth-of-type(4) .elementor-heading-title {
	color: #FFFFFF !important;
	text-align: center !important;
	font-size: 2.5rem !important;
	font-weight: bold !important;
	margin-bottom: 1.5rem !important;
}

/* Mission text - centered with max-width */
body.page-about .elementor-section.mission-section .elementor-widget-text-editor,
body.page-about .elementor-section[data-id*="mission"] .elementor-widget-text-editor,
body.page-about .elementor-section:nth-of-type(4) .elementor-widget-text-editor {
	color: rgba(255, 255, 255, 0.9) !important;
	text-align: center !important;
	max-width: 672px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.page-about .elementor-section.mission-section .elementor-widget-text-editor p,
body.page-about .elementor-section[data-id*="mission"] .elementor-widget-text-editor p,
body.page-about .elementor-section:nth-of-type(4) .elementor-widget-text-editor p {
	color: rgba(255, 255, 255, 0.9) !important;
	text-align: center !important;
	font-size: 1.125rem !important;
	line-height: 1.75rem !important;
	margin: 0 !important;
}

/* About Us Page - Who We Are Section Styling */
body.page-about .elementor-section:has(.elementor-heading-title:contains("Who We Are")) {
	background-color: #0F234C !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Who We Are")) .elementor-heading-title {
	color: #FFFFFF !important;
	text-align: left !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Who We Are")) .elementor-widget-text-editor {
	color: rgba(255, 255, 255, 0.9) !important;
	text-align: left !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Who We Are")) .elementor-widget-text-editor p {
	color: rgba(255, 255, 255, 0.9) !important;
}

/* About Us Page - Value Cards Styling */
body.page-about .elementor-section:has(.elementor-heading-title:contains("Expertise")) .elementor-inner-section,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Innovation")) .elementor-inner-section,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Customer-Focused")) .elementor-inner-section {
	background-color: #1E293B !important;
	border-radius: 12px !important;
	padding: 24px !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center !important;
}

/* Center icons in value cards */
body.page-about .elementor-section:has(.elementor-heading-title:contains("Expertise")) .elementor-widget-html,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Innovation")) .elementor-widget-html,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Customer-Focused")) .elementor-widget-html {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
	margin: 0 auto 1rem auto !important;
	text-align: center !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Expertise")) .elementor-widget-html div,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Innovation")) .elementor-widget-html div,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Customer-Focused")) .elementor-widget-html div {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	margin: 0 auto !important;
	width: auto !important;
}

/* Center Material Symbols icons */
body.page-about .elementor-section:has(.elementor-heading-title:contains("Expertise")) .material-symbols-outlined,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Innovation")) .material-symbols-outlined,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Customer-Focused")) .material-symbols-outlined {
	display: block !important;
	margin: 0 auto !important;
	text-align: center !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Expertise")) .elementor-heading-title,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Innovation")) .elementor-heading-title,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Customer-Focused")) .elementor-heading-title {
	color: #FFFFFF !important;
	text-align: center !important;
	width: 100% !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Expertise")) .elementor-widget-text-editor,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Innovation")) .elementor-widget-text-editor,
body.page-about .elementor-section:has(.elementor-heading-title:contains("Customer-Focused")) .elementor-widget-text-editor {
	color: rgba(255, 255, 255, 0.8) !important;
	text-align: center !important;
	width: 100% !important;
}

/* About Us Page - Why Choose Section Styling */
body.page-about .elementor-section:has(.elementor-heading-title:contains("Why Choose Bridge Wireless")) {
	background-color: #0F234C !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Why Choose Bridge Wireless")) .elementor-heading-title {
	color: #FFFFFF !important;
	text-align: center !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Why Choose Bridge Wireless")) .elementor-inner-section {
	background-color: #FFFFFF !important;
	border-radius: 12px !important;
	padding: 24px !important;
	margin-bottom: 24px !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Why Choose Bridge Wireless")) .elementor-inner-section .elementor-heading-title {
	color: #0F234C !important;
	text-align: left !important;
}

body.page-about .elementor-section:has(.elementor-heading-title:contains("Why Choose Bridge Wireless")) .elementor-inner-section .elementor-widget-text-editor {
	color: #555555 !important;
	text-align: left !important;
}

/* Products Page Styling - Product Cards */
/* Center content with max-width and side padding - Force all sections */
body.page-products {
	overflow-x: hidden;
	background-color: #F8F9FA !important;
}

body.page-products main,
body.page-products .site-content {
	background-color: #F8F9FA !important;
}

body.page-products .elementor-section {
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

body.page-products .elementor {
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 2rem !important;
	padding-right: 2rem !important;
	box-sizing: border-box !important;
}

body.page-products .elementor-section[data-settings*="boxed"],
body.page-products .elementor-section.elementor-section-boxed {
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 2rem !important;
	padding-right: 2rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

body.page-products .elementor-section[data-settings*="full_width"] {
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 2rem !important;
	padding-right: 2rem !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

body.page-products .elementor-container {
	max-width: 1280px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	width: 100% !important;
	padding-left: 2rem !important;
	padding-right: 2rem !important;
	box-sizing: border-box !important;
}

body.page-products .elementor-container-inner {
	max-width: 100% !important;
}

/* Product Cards - White cards with rounded corners, icons on right */
body.page-products .elementor-inner-section {
	max-width: 100% !important;
	background-color: #FFFFFF !important;
	border-radius: 12px !important;
	border: 1px solid #E5E7EB !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 1.5rem 2rem !important;
	margin-bottom: 1rem !important;
	gap: 2rem !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

body.page-products .elementor-inner-section:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

body.page-products .elementor-inner-section .elementor-row {
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}

body.page-products .elementor-inner-section .elementor-column {
	display: flex !important;
	align-items: center !important;
}

/* Text column - left side (flexible width) */
body.page-products .elementor-inner-section .elementor-column[data-settings*="_column_size"]:first-child,
body.page-products .elementor-inner-section .elementor-column:first-child {
	flex: 1 1 auto !important;
	max-width: none !important;
	padding-right: 1rem !important;
	min-width: 0 !important;
}

/* Icon column - right side (fixed width) */
body.page-products .elementor-inner-section .elementor-column[data-settings*="_column_size"]:last-child,
body.page-products .elementor-inner-section .elementor-column:last-child {
	flex: 0 0 auto !important;
	max-width: 80px !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding-left: 1rem !important;
}

/* Product card titles */
body.page-products .elementor-inner-section .elementor-heading-title {
	color: #0F234C !important;
	font-weight: bold !important;
	font-size: 1.125rem !important;
	margin-bottom: 0.5rem !important;
	text-align: left !important;
	line-height: 1.5 !important;
}

/* Product card descriptions */
body.page-products .elementor-inner-section .elementor-widget-text-editor {
	color: #555555 !important;
	text-align: left !important;
	margin: 0 !important;
	font-size: 0.875rem !important;
	line-height: 1.5 !important;
}

body.page-products .elementor-inner-section .elementor-widget-text-editor p {
	margin: 0 !important;
	padding: 0 !important;
	color: #555555 !important;
	font-size: 0.875rem !important;
	line-height: 1.5 !important;
}

/* Ensure icons are properly sized and aligned */
body.page-products .elementor-inner-section .elementor-widget-icon,
body.page-products .elementor-inner-section .elementor-widget-html {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	width: 100% !important;
}

body.page-products .elementor-inner-section .elementor-icon {
	font-size: 48px !important;
	width: 48px !important;
	height: 48px !important;
}

/* Hero section styling */
body.page-products .elementor-section:first-of-type {
	background-color: #FFFFFF !important;
	padding-top: 3rem !important;
	padding-bottom: 2rem !important;
	margin-bottom: 2rem !important;
}

body.page-products .elementor-section:first-of-type .elementor-heading-title {
	color: #0F234C !important;
	font-size: 2.5rem !important;
	font-weight: bold !important;
	text-align: center !important;
	margin-bottom: 0.75rem !important;
}

body.page-products .elementor-section:first-of-type .elementor-widget-text-editor {
	color: #555555 !important;
	text-align: center !important;
	font-size: 1rem !important;
}

/* Product cards container section */
body.page-products .elementor-section:not(:first-of-type):not(:last-of-type) {
	background-color: transparent !important;
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	body.page-products .elementor-section {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
	
	body.page-products .elementor-inner-section {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 1rem !important;
	}
	
	body.page-products .elementor-inner-section .elementor-column:first-child {
		max-width: 100% !important;
		width: 100% !important;
		margin-bottom: 0.5rem !important;
	}
	
	body.page-products .elementor-inner-section .elementor-column:last-child {
		max-width: 100% !important;
		width: 100% !important;
		justify-content: flex-start !important;
	}
}

/* Contact Form 7 Styling - Match Screenshot Design */
body.page-contact .wpcf7-form,
body .wpcf7-form {
	max-width: 100%;
}

body.page-contact .wpcf7-form .contact-form-wrapper,
body .wpcf7-form .contact-form-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

body.page-contact .wpcf7-form .form-row,
body .wpcf7-form .form-row {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

body.page-contact .wpcf7-form label,
body .wpcf7-form label {
	color: #0F234C;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
}

body.page-contact .wpcf7-form .optional-text,
body .wpcf7-form .optional-text {
	color: #9CA3AF;
	font-weight: 400;
	font-size: 0.75rem;
	margin-left: 0.5rem;
}

body.page-contact .wpcf7-form input[type="text"],
body.page-contact .wpcf7-form input[type="email"],
body.page-contact .wpcf7-form input[type="tel"],
body.page-contact .wpcf7-form textarea,
body .wpcf7-form input[type="text"],
body .wpcf7-form input[type="email"],
body .wpcf7-form input[type="tel"],
body .wpcf7-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #D1D5DB;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	color: #0F234C;
	background-color: #FFFFFF;
	transition: border-color 0.2s ease;
}

body.page-contact .wpcf7-form input[type="text"]:focus,
body.page-contact .wpcf7-form input[type="email"]:focus,
body.page-contact .wpcf7-form input[type="tel"]:focus,
body.page-contact .wpcf7-form textarea:focus,
body .wpcf7-form input[type="text"]:focus,
body .wpcf7-form input[type="email"]:focus,
body .wpcf7-form input[type="tel"]:focus,
body .wpcf7-form textarea:focus {
	outline: none;
	border-color: #00A99D;
	box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.1);
}

body.page-contact .wpcf7-form select,
body .wpcf7-form select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #D1D5DB;
	border-radius: 0.375rem;
	font-size: 0.875rem;
	color: #0F234C;
	background-color: #FFFFFF;
	appearance: none;
	xbackground-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563EB' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

body.page-contact .wpcf7-form select option,
body .wpcf7-form select option {
	padding: 0.5rem;
	background-color: #FFFFFF;
	color: #0F234C;
}

body.page-contact .wpcf7-form select option:checked,
body .wpcf7-form select option:checked {
	background-color: #FF6B35;
	color: #FFFFFF;
}

body.page-contact .wpcf7-form select:focus,
body .wpcf7-form select:focus {
	outline: none;
	border-color: #D1D5DB;
	box-shadow: 0 0 0 3px rgba(0, 169, 157, 0.1);
}

body.page-contact .wpcf7-form textarea,
body .wpcf7-form textarea {
	min-height: 120px;
	resize: vertical;
}

body.page-contact .wpcf7-form input[type="submit"],
body.page-contact .wpcf7-form .wpcf7-submit,
body .wpcf7-form input[type="submit"],
body .wpcf7-form .wpcf7-submit {
	background-color: #135BEC !important;
	color: #FFFFFF !important;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 0.375rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
	width: auto;
	margin-top: 0.5rem;
}

body.page-contact .wpcf7-form input[type="submit"]:hover,
body.page-contact .wpcf7-form .wpcf7-submit:hover,
body .wpcf7-form input[type="submit"]:hover,
body .wpcf7-form .wpcf7-submit:hover {
	background-color: #0F4BC8 !important;
}

body.page-contact .wpcf7-form .wpcf7-validation-errors,
body.page-contact .wpcf7-form .wpcf7-mail-sent-ng,
body.page-contact .wpcf7-form .wpcf7-mail-sent-ok,
body .wpcf7-form .wpcf7-validation-errors,
body .wpcf7-form .wpcf7-mail-sent-ng,
body .wpcf7-form .wpcf7-mail-sent-ok {
	margin-top: 1rem;
	padding: 0.75rem;
	border-radius: 0.375rem;
	font-size: 0.875rem;
}

body.page-contact .wpcf7-form .wpcf7-mail-sent-ok,
body .wpcf7-form .wpcf7-mail-sent-ok {
	background-color: #D1FAE5;
	color: #065F46;
	border: 1px solid #6EE7B7;
}

body.page-contact .wpcf7-form .wpcf7-validation-errors,
body.page-contact .wpcf7-form .wpcf7-mail-sent-ng,
body .wpcf7-form .wpcf7-validation-errors,
body .wpcf7-form .wpcf7-mail-sent-ng {
	background-color: #FEE2E2;
	color: #991B1B;
	border: 1px solid #FCA5A5;
}

/* Career Page - Why Work With Us Section */
body.page-careers .elementor-section {
	background-color: #FFFFFF !important;
}

body.page-careers .career-benefit-card,
body.page-careers .elementor-inner-section.career-benefit-card {
	background-color: #F3F4F6 !important;
	border-radius: 12px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
	padding: 1.5rem !important;
	transition: all 0.3s ease !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	text-align: left !important;
	width: 100% !important;
}

body.page-careers .career-benefit-card:hover,
body.page-careers .elementor-inner-section.career-benefit-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
	transform: translateY(-2px) !important;
}

body.page-careers .career-icon-wrapper {
	margin-bottom: 1rem !important;
	display: block !important;
	width: 100% !important;
}

body.page-careers .career-icon-wrapper .material-symbols-outlined {
	color: #7C5CFF !important;
	font-size: 48px !important;
	line-height: 1 !important;
	display: block !important;
}

body.page-careers .career-benefit-card .elementor-heading-title,
body.page-careers .elementor-inner-section.career-benefit-card .elementor-heading-title {
	color: #0F234C !important;
	font-size: 1.125rem !important;
	font-weight: bold !important;
	text-align: left !important;
	margin-bottom: 0.5rem !important;
	line-height: 1.4 !important;
}

body.page-careers .career-benefit-card .elementor-widget-text-editor,
body.page-careers .elementor-inner-section.career-benefit-card .elementor-widget-text-editor {
	color: #555555 !important;
	text-align: left !important;
	font-size: 0.875rem !important;
	line-height: 1.5 !important;
	margin: 0 !important;
}

body.page-careers .career-benefit-card .elementor-widget-text-editor p,
body.page-careers .elementor-inner-section.career-benefit-card .elementor-widget-text-editor p {
	color: #555555 !important;
	margin: 0 !important;
	padding: 0 !important;
	font-size: 0.875rem !important;
	line-height: 1.5 !important;
}

/* Ensure 2x2 grid layout with proper spacing */
body.page-careers .elementor-section .elementor-row {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 1.5rem !important;
}

body.page-careers .elementor-section .elementor-column {
	display: flex !important;
	flex-direction: column !important;
	gap: 1.5rem !important;
}

body.page-careers .elementor-section .elementor-column .career-benefit-card,
body.page-careers .elementor-section .elementor-column .elementor-inner-section.career-benefit-card {
	margin-bottom: 0 !important;
}

/* Career Page - Current Openings Accordion */
body.page-careers .career-accordion,
body.page-careers .elementor-widget-accordion.career-accordion {
	max-width: 100% !important;
}

body.page-careers .career-accordion .elementor-accordion-item,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-item {
	background-color: #FFFFFF !important;
	border: none !important;
	border-bottom: 1px solid #E5E7EB !important;
	border-radius: 0 !important;
	margin-bottom: 0 !important;
	box-shadow: none !important;
}

body.page-careers .career-accordion .elementor-accordion-item:last-child,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-item:last-child {
	border-bottom: none !important;
}

body.page-careers .career-accordion .elementor-accordion-title,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-title {
	background-color: #FFFFFF !important;
	color: #0F234C !important;
	font-size: 16px !important;
	font-weight: 500 !important;
	padding: 16px 20px !important;
	border: none !important;
	border-radius: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	cursor: pointer !important;
	transition: background-color 0.2s ease !important;
}

body.page-careers .career-accordion .elementor-accordion-title:hover,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-title:hover {
	background-color: #F9FAFB !important;
}

body.page-careers .career-accordion .elementor-accordion-title .elementor-accordion-icon,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-title .elementor-accordion-icon {
	color: #0F234C !important;
	font-size: 14px !important;
	margin-left: auto !important;
	transition: transform 0.3s ease !important;
}

body.page-careers .career-accordion .elementor-accordion-item.elementor-active .elementor-accordion-icon,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-item.elementor-active .elementor-accordion-icon {
	transform: rotate(180deg) !important;
}

body.page-careers .career-accordion .elementor-accordion-content,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-content {
	background-color: #FFFFFF !important;
	color: #555555 !important;
	padding: 16px 20px !important;
	border: none !important;
	border-top: none !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
}

body.page-careers .career-accordion .elementor-accordion-content p,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-content p {
	margin: 0 0 12px 0 !important;
	color: #555555 !important;
	font-size: 14px !important;
	line-height: 1.6 !important;
}

body.page-careers .career-accordion .elementor-accordion-content p:last-child,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-content p:last-child {
	margin-bottom: 0 !important;
}

body.page-careers .career-accordion .elementor-accordion-content strong,
body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-content strong {
	color: #0F234C !important;
	font-weight: 600 !important;
}

/* Responsive adjustments for Career page */
@media (max-width: 768px) {
	body.page-careers .elementor-section .elementor-row {
		flex-direction: column !important;
	}
	
	body.page-careers .elementor-section .elementor-column {
		width: 100% !important;
		max-width: 100% !important;
		flex: 0 0 100% !important;
	}
	
	body.page-careers .career-benefit-card,
	body.page-careers .elementor-inner-section.career-benefit-card {
		margin-bottom: 1rem !important;
	}
	
	body.page-careers .career-accordion .elementor-accordion-title,
	body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-title {
		padding: 14px 16px !important;
		font-size: 15px !important;
	}
	
	body.page-careers .career-accordion .elementor-accordion-content,
	body.page-careers .elementor-widget-accordion.career-accordion .elementor-accordion-content {
		padding: 14px 16px !important;
		font-size: 13px !important;
	}
}

/* Print Styles */
@media print {
	header,
	footer,
	.btn-primary,
	#mobile-menu-toggle {
		display: none;
	}
}

