/* ======= Accessibility Improvements ======= */
/* Screen reader only text - for accessibility labels */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* ======= Service Card Link ======= */
/* Make entire service card clickeable */
.service-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	cursor: pointer;
}

.service-card-link:hover {
	transform: translateY(-5px);
}

.service-card-link:hover .empower-block_one-title {
	color: white;
}

.service-card-link:hover .empower-block_one-icon {
	transform: scale(1.1);
}

.service-card-link .empower-block_one-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-card-link .empower-block_one-title {
	margin-bottom: 10px;
	min-height: 50px;
	display: flex;
	align-items: center;
	color: inherit;
}

.service-card-link .empower-block_one-title a {
	display: none;
}

/* ======= Performance Optimization ======= */
/* Enable hardware acceleration for animations */
html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Optimize image loading */
img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Reduce layout shifts from lazy-loaded images */
img[loading="lazy"] {
	background: #f0f0f0;
}

/* Performance improvements for animations */
.wow,
.animate-box,
[data-animation] {
	will-change: auto;
}

/* GPU acceleration for smooth scrolling */
.page-wrapper,
.slider-one,
.empower-one {
	transform: translateZ(0);
	backface-visibility: hidden;
}

/* ======= Rounded Corner Images ======= */
.rounded-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.rounded-image:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}

.rounded-image img {
	border-radius: 15px;
	width: 100%;
	height: auto;
	display: block;
}

/* ======= Services Grid - Keep 5 blocks together ======= */
.empower-one .clearfix {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	align-items: stretch; /* This ensures all items stretch to same height */
	padding-top: 50px; /* Space between title/text and services */
	margin-top: 0;
}

.empower-one .empower-block_one {
	flex: 0 0 auto;
	width: calc(20% - 20px); /* 5 items per row on large screens */
	min-width: 250px;
	max-width: 300px;
	margin: 0 !important;
	float: none !important;
	display: flex; /* Make the block a flex container */
	flex-direction: column; /* Stack content vertically */
	transform: none !important; /* Remove any transform from theme */
	padding: 0 !important; /* Remove padding that interferes with flexbox */
}

/* Override theme's staggered layout - align all items to top */
.empower-one .empower-block_one:nth-child(2),
.empower-one .empower-block_one:nth-child(3),
.empower-one .empower-block_one:nth-child(4),
.empower-one .empower-block_one:nth-child(5),
.empower-one .empower-block_one:nth-child(n) {
	transform: none !important; /* Remove ALL transforms for straight alignment */
}

/* Force inner content to fill entire height */
.empower-one .empower-block_one-inner {
	display: flex;
	flex-direction: column;
	height: 100%; /* Take full height of parent */
	flex: 1; /* Grow to fill available space */
	padding: 10px 10px !important; /* Consistent padding */
}

/* Ensure images have consistent height */
.empower-one .empower-block_one-image {
	flex: 0 0 auto; /* Don't grow or shrink */
	height: 250px; /* Fixed height for all images */
	overflow: hidden;
}

.empower-one .empower-block_one-image img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Ensure images fill the space nicely */
}

/* Content section grows to fill remaining space */
.empower-one .empower-block_one-content {
	flex: 1; /* Grow to fill remaining space */
	display: flex;
	flex-direction: column;
	justify-content: flex-start; /* Align content to top */
	padding: 20px 15px; /* Consistent padding */
}

/* Title consistent spacing */
.empower-one .empower-block_one-title {
	margin-bottom: 10px;
	min-height: 50px; /* Minimum height for titles */
	display: flex;
	align-items: center;
}

/* Text fills remaining space */
.empower-one .empower-block_one-text {
	flex: 1;
}

/* Desktop large - 5 per row */
@media (min-width: 1600px) {
	.empower-one .empower-block_one {
		width: calc(20% - 20px);
	}
}

/* Desktop - 5 per row but smaller */
@media (max-width: 1599px) and (min-width: 1200px) {
	.empower-one .empower-block_one {
		width: calc(20% - 15px);
	}
	
	.empower-one .clearfix {
		gap: 15px;
	}
}

/* Tablet large - 3 per row */
@media (max-width: 1199px) and (min-width: 992px) {
	.empower-one .empower-block_one {
		width: calc(33.333% - 15px);
		max-width: none;
	}
	
	.empower-one .empower-block_one-image {
		height: 220px; /* Slightly smaller for tablets */
	}
}

/* Tablet - 2 per row */
@media (max-width: 991px) and (min-width: 768px) {
	.empower-one .empower-block_one {
		width: calc(50% - 15px);
		max-width: none;
	}
	
	.empower-one .empower-block_one-image {
		height: 200px; /* Smaller for medium tablets */
	}
}

/* Mobile - 1 per row */
@media (max-width: 767px) {
	.empower-one .clearfix {
		gap: 30px;
	}
	
	.empower-one .empower-block_one {
		width: 100%;
		max-width: 100%;
		min-width: auto;
	}
	
	.empower-one .empower-block_one-image {
		height: 250px; /* Full height for mobile */
	}
	
	.empower-one .empower-block_one-title {
		min-height: auto; /* Remove minimum height on mobile */
	}
}



/* ======= Partner Logos Consistent Sizing ======= */
.clients-one .client-image img {
	width: 160px;
	height: 60px;
	object-fit: contain;
	max-width: 100%;
}

/* ======= Glow visual dentro de la sección empower-shape-bg ======= */

.empower-shape-bg {
	position: relative;
	background-color: #ffffff; /* Asegura fondo oscuro para que los glows se vean */
	overflow: hidden;
	padding: 100px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 500px; /* Asegura altura mínima para que se vean los glows */
  }
  
  /* Glows */
  .empower-shape-bg .glow {
	position: absolute;
	width: 350px;
	height: 750px;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.15;
	z-index: 0;
	pointer-events: none; /* Evita que interfieran con clics */
  }
  
  .empower-shape-bg .glow.magenta {
	background: radial-gradient(circle, #08caf7, #08caf7);
	top: 40%;
	left: 10%;
  }
  
  .empower-shape-bg .glow.blue {
	background: radial-gradient(circle, #1528f5, #1528f5);
	bottom: 40%;
	right: 10%;
  }
  
  /* Contenido */
  .empower-shape-bg .contenido {
	position: relative;
	z-index: 1;
	color: white;
	text-align: center;
	max-width: 800px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.empower-shape-bg {
	  padding: 80px 15px;
	}
  
	.empower-shape-bg .glow {
	  width: 180px;
	  height: 180px;
	  filter: blur(40px);
	}
  
	.empower-shape-bg .glow.magenta {
	  top: 5%;
	  left: 5%;
	}
  
	.empower-shape-bg .glow.blue {
	  bottom: 5%;
	  right: 5%;
	}
  }

  /* ======= Footer White Text ======= */
  .footer-style_three .footer-three_location-title,
  .footer-style_three .footer-three_location-text,
  .footer-style_three .white-text,
  .footer-style_three .footer-three_location-title p {
	color: #ffffff !important;
  }

  /* ======= Footer Phone Link ======= */
  .footer-three_location-title .contact-link.white-text {
	color: #ffffff !important;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
  }

  .footer-three_location-title .contact-link.white-text::after {
	display: none;
  }

  .footer-three_location-title .contact-link.white-text:hover {
	color: #08caf7 !important;
	transform: translateX(3px);
  }

  .footer-three_location-title .contact-link.white-text i {
	margin-right: 8px;
  }

  /* ======= Footer Social Icons Larger ======= */
  .footer-three_socials a {
	font-size: 24px !important;
	width: 45px !important;
	height: 45px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
  }

  .footer-three_socials a i {
	font-size: 24px !important;
  }

  /* ======= Footer Copyright Primary Color ======= */
  .footer-three_copyright .brand-name {
	color: #08caf7 !important;
	font-weight: 600;
  }

  .footer-three_copyright a {
	color: #08caf7 !important;
	text-decoration: none;
	transition: all 0.3s ease;
  }

  .footer-three_copyright a:hover {
	color: #08caf7 !important;
	text-decoration: underline;
  }

  /* ======= Header Call Now Button ======= */
  .header-call-now {
	position: relative;
	margin-right: 70px;
	z-index: 100;
  }

  .header-call-now:before {
	position: absolute;
	content: '';
	left: -43px;
	bottom: -2px;
	width: 80px;
	height: 34px;
	background: url(../images/icons/shape-1.png);
	z-index: -1;
	pointer-events: none;
  }

  .header-call-now:after {
	position: absolute;
	content: '';
	right: -52px;
	bottom: -2px;
	width: 80px;
	height: 46px;
	z-index: -1;
	background: url(../images/icons/shape-2.png);
	pointer-events: none;
  }

  .call-now-btn {
	position: relative;
	display: flex;
	align-items: center;
	padding: 10px 20px;
	border-radius: 50px;
	text-decoration: none;
	overflow: hidden;
	font-weight: 700;
	background-color: #0f1447;
	background-image: linear-gradient(90deg, #0f1447 0%, #08caf7 100%);
	transition: all 0.3s ease;
	font-size: 13px;
	z-index: 2;
	cursor: pointer;
  }

  .call-now-btn:before {
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: -1;
	background-image: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	pointer-events: none;
  }

  .call-now-btn:hover:before {
	top: 0%;
  }

  .call-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	margin-right: 8px;
	transition: all 0.3s ease;
	z-index: 2;
  }

  .call-icon i {
	color: var(--white-color);
	font-size: 12px;
	animation: ring 1.5s infinite;
  }

  .call-text {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 2;
  }

  .call-label {
	font-size: 10px;
	color: var(--white-color);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-family: 'Manrope', sans-serif;
  }

  /* ======= Small Get Started Button ======= */
  .btn-small {
	padding: 10px 20px !important;
	font-size: 13px !important;
  }

  /* ======= Nav Right Elements Spacing ======= */
  .nav-right-elements {
	margin-left: 30px;
  }

  .nav-right-elements .search-box-btn {
	margin-right: 15px;
  }

  .nav-right-elements .main-header_button {
	margin-right: 15px;
  }

  /* ======= Mobile Support Button in Mobile Menu ======= */
  .mobile-support-button {
	padding: 15px 0;
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
	display: none !important;
	order: -1;
  }

  .mobile-support-button a.theme-btn {
	width: calc(100% - 40px) !important;
	margin: 0 20px !important;
	display: inline-block !important;
	padding: 14px 30px !important;
	font-size: 15px !important;
	background: linear-gradient(90deg, #0f1447 0%, #08caf7 100%) !important;
	color: white !important;
	border-radius: 50px !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	letter-spacing: 0.5px !important;
  }

  .mobile-support-button a.theme-btn:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 5px 15px rgba(8, 202, 247, 0.4) !important;
  }

  .mobile-support-button a.theme-btn .btn-wrap {
	display: block !important;
  }

  .mobile-support-button a.theme-btn .text-one,
  .mobile-support-button a.theme-btn .text-two {
	display: block !important;
  }

  /* ======= Mobile Call Button in Header ======= */
  .mobile-call-header-btn {
	display: none;
	margin-right: 10px;
  }

  .mobile-call-header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-decoration: none;
	overflow: hidden;
	font-weight: 700;
	background-color: #0f1447;
	background-image: linear-gradient(90deg, #0f1447 0%, #08caf7 100%);
	transition: all 0.3s ease;
	z-index: 10;
	cursor: pointer;
  }

  .mobile-call-header:before {
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: -1;
	background-image: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	pointer-events: none;
  }

  .mobile-call-header:hover:before {
	top: 0%;
  }

  .mobile-call-header i {
	position: relative;
	color: var(--white-color);
	font-size: 16px;
	z-index: 2;
	animation: ring 1.5s infinite;
  }

  /* ======= Mobile Call Button in Dropdown Menu ======= */
  .mobile-call-button {
	position: relative;
	margin-top: 30px;
	padding: 0 20px;
	display: flex;
	justify-content: center;
  }

  .mobile-call-btn {
	position: relative;
	display: flex;
	align-items: center;
	padding: 10px 20px 10px 10px;
	border-radius: 50px;
	text-decoration: none;
	overflow: hidden;
	font-weight: 700;
	background-color: #0f1447;
	background-image: linear-gradient(90deg, #0f1447 0%, #08caf7 100%);
	transition: all 0.3s ease;
	z-index: 2;
	cursor: pointer;
  }

  .mobile-call-btn:before {
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-radius: 50%;
	z-index: -1;
	background-image: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	pointer-events: none;
  }

  .mobile-call-btn:hover:before {
	top: 0%;
  }

  .mobile-call-btn .call-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	margin-right: 12px;
	transition: all 0.3s ease;
	z-index: 2;
  }

  .mobile-call-btn .call-icon i {
	color: var(--white-color);
	font-size: 16px;
	animation: ring 1.5s infinite;
  }

  .mobile-call-btn .call-text {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	z-index: 2;
  }

  .mobile-call-btn .call-label {
	font-size: 11px;
	color: var(--white-color);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-family: 'Manrope', sans-serif;
  }

  /* ======= Mega Menu Hover Effects ======= */
  .mega-menu {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-top: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
  }

  .dropdown.has-mega-menu:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
  }

  .mega-menu .column h6 {
	color: #0f1447;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
  }

  .mega-menu .column h6:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
  }

  .mega-menu .column ul li {
	margin-bottom: 8px;
  }

  .mega-menu .column ul li a {
	color: #666666;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	padding: 5px 0;
	transition: all 0.3s ease;
  }

  .mega-menu .column ul li a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	transition: width 0.3s ease;
  }

  .mega-menu .column ul li a:hover {
	color: #08caf7;
	padding-left: 15px;
  }

  .mega-menu .column ul li a:hover:before {
	width: 100%;
  }

  /* Show mobile call button only on mobile */
  @media (max-width: 991px) {
	.mobile-call-header-btn {
	  display: block;
	}
	/* Hide desktop call button on mobile */
	.header-call-now {
	  display: none;
	}
  }

  /* ======= Mobile Responsive Fixes ======= */
  @media (max-width: 768px) {
	/* Prevent horizontal scroll */
	body {
	  overflow-x: hidden;
	}

	/* Ensure header doesn't cause horizontal scroll */
	.main-header .auto-container {
	  max-width: 100%;
	  padding: 0 15px;
	}

	.main-header .inner-container {
	  max-width: 100%;
	}

	/* Fix logo sizing on mobile */
	.logo img {
	  max-width: 200px !important;
	  height: auto !important;
	}

	/* Ensure nav elements don't overflow */
	.nav-right-elements {
	  margin-left: 10px;
	}

	.nav-right-elements .search-box-btn {
	  margin-right: 8px;
	}

	.nav-right-elements .main-header_button {
	  margin-right: 8px;
	}

	/* Mobile call button sizing */
	.mobile-call-header {
	  width: 35px;
	  height: 35px;
	}

	.mobile-call-header i {
	  font-size: 14px;
	}

	/* Show mobile support button */
	.mobile-support-button {
	  display: block !important;
	}

	/* Hide support button from desktop header on mobile */
	.nav-right-elements .main-header_button {
	  display: none !important;
	}
  }

  /* Animation for phone icon ring */
  @keyframes ring {
	0%, 100% {
	  transform: rotate(0deg);
	}
	10%, 30% {
	  transform: rotate(-15deg);
	}
	20%, 40% {
	  transform: rotate(15deg);
	}
  }

  /* Responsive */
  @media (max-width: 768px) {
	.header-call-now {
	  margin-right: 10px;
	}

	.header-call-now:before,
	.header-call-now:after {
	  display: none;
	}

	.call-now-btn {
	  padding: 10px 16px 10px 10px;
	}

	.call-icon {
	  width: 35px;
	  height: 35px;
	  margin-right: 8px;
	}

	.call-icon i {
	  font-size: 14px;
	}

	.call-label {
	  font-size: 9px;
	}

	.call-number {
	  font-size: 13px;
	}
  }
  
  /* Contact Page Styles */
  .contact-info-section {
	padding: 80px 0;
	background: #f8f9fa;
  }
  
  .contact-info-block {
	margin-bottom: 30px;
  }
  
  .contact-info-block_inner {
	background: #ffffff;
	padding: 40px 30px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
  }
  
  .contact-info-block_inner:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info-block_icon {
	width: 70px;
	height: 70px;
	line-height: 70px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	color: #ffffff;
	font-size: 28px;
  }
  
  .contact-info-block_title {
	font-size: 20px;
	font-weight: 700;
	color: #0f1447;
	margin-bottom: 10px;
  }
  
  .contact-info-block_text {
	color: #666666;
	font-size: 16px;
  }
  
  .contact-info-block_text a {
	color: #08caf7;
	text-decoration: none;
	transition: all 0.3s ease;
  }
  
  .contact-info-block_text a:hover {
	color: #0f1447;
  }
  
  .contact-form-section {
	padding: 80px 0;
  }
  
  .contact-form {
	background: #ffffff;
	padding: 40px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .contact-form_form .form-group {
	margin-bottom: 25px;
  }
  
  .contact-form_form label {
	display: block;
	font-weight: 600;
	color: #0f1447;
	margin-bottom: 8px;
	font-size: 14px;
  }
  
  /* Unified Form Styles - All inputs with same border-radius and effects */
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea,
  .contact-form_form input[type="text"],
  .contact-form_form input[type="email"],
  .contact-form_form input[type="tel"],
  .contact-form_form select,
  .contact-form_form textarea {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	color: #0f1447;
	background: #ffffff;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  /* Elegant Select Styles - Consistent with other inputs */
  .contact-form select.elegant-select,
  .contact-form select,
  .contact-form_form select.elegant-select,
  .contact-form_form select {
	padding: 15px 45px 15px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	color: #0f1447;
	background: #ffffff;
	background-image: linear-gradient(45deg, transparent 50%, #08caf7 50%), linear-gradient(135deg, #08caf7 50%, transparent 50%);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  /* Hover effects - All inputs */
  .contact-form input[type="text"]:hover,
  .contact-form input[type="email"]:hover,
  .contact-form input[type="tel"]:hover,
  .contact-form select:hover,
  .contact-form textarea:hover,
  .contact-form_form input[type="text"]:hover,
  .contact-form_form input[type="email"]:hover,
  .contact-form_form input[type="tel"]:hover,
  .contact-form_form select:hover,
  .contact-form_form textarea:hover {
	border-color: #08caf7;
	background-color: #f8fcff;
	box-shadow: 0 4px 12px rgba(8, 202, 247, 0.15);
	transform: translateY(-1px);
  }
  
  /* Focus effects - All inputs */
  .contact-form input[type="text"]:focus,
  .contact-form input[type="email"]:focus,
  .contact-form input[type="tel"]:focus,
  .contact-form select:focus,
  .contact-form textarea:focus,
  .contact-form_form input[type="text"]:focus,
  .contact-form_form input[type="email"]:focus,
  .contact-form_form input[type="tel"]:focus,
  .contact-form_form select:focus,
  .contact-form_form textarea:focus {
	outline: none;
	border-color: #08caf7;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(8, 202, 247, 0.1), 0 4px 12px rgba(8, 202, 247, 0.15);
  }
  
  /* Textarea specific */
  .contact-form textarea,
  .contact-form_form textarea {
	min-height: 150px;
	resize: vertical;
  }
  
  /* Select options */
  .contact-form select option,
  .contact-form_form select option {
	padding: 12px;
	font-size: 15px;
	font-weight: 500;
	color: #0f1447;
	background: #ffffff;
  }
  
  .alert {
	padding: 15px 20px;
	border-radius: 5px;
	margin-bottom: 25px;
  }
  
  .alert-success {
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
  }
  
  .alert-error {
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
  }
  
  .alert ul {
	margin: 10px 0 0 20px;
	padding: 0;
  }
  
  .contact-info {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 8px;
  }
  
  .contact-info_title {
	font-size: 22px;
	font-weight: 700;
	color: #0f1447;
	margin-bottom: 30px;
  }
  
  .contact-info_item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
  }
  
  .contact-info_item-icon {
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	color: #ffffff;
	flex-shrink: 0;
	margin-right: 15px;
  }
  
  .contact-info_item-content h4 {
	font-size: 16px;
	font-weight: 700;
	color: #0f1447;
	margin-bottom: 5px;
  }
  
  .contact-info_item-content p {
	color: #666666;
	font-size: 14px;
	margin: 0;
  }
  
  /* Contact Icon Buttons - Using theme button style */
  .theme-btn.contact-info_block-icon {
	width: 70px !important;
	height: 70px !important;
	padding: 0 !important;
	margin: 0 0 20px 0;
	border-radius: 50% !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 28px;
  }
  
  .theme-btn.contact-info_block-icon .btn-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .theme-btn.contact-info_block-icon .text-one,
  .theme-btn.contact-info_block-icon .text-two {
	font-size: 28px;
  }
  
  /* Remove border from contact info blocks */
  .contact-info_block-inner {
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	background: transparent !important;
  }
  
  /* Remove all borders from contact info blocks */
  .contact-info_block {
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
  }
  
  /* Remove borders from theme button elements */
  .theme-btn.contact-info_block-icon::before,
  .theme-btn.contact-info_block-icon::after {
	border: none !important;
  }
  
  .theme-btn.contact-info_block-icon .btn-wrap::before,
  .theme-btn.contact-info_block-icon .btn-wrap::after {
	border: none !important;
  }
  
  /* Services Page - Unified Icon Button */
  .empower-block_one-icon {
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 2;
	width: 55px;
	height: 55px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	background: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	color: #ffffff;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .empower-block_one-icon:hover {
	background: linear-gradient(90deg, #0f1447 0%, #08caf7 100%);
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(8, 202, 247, 0.3);
  }
  
  .empower-block_one-icon a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #ffffff;
	transition: color 0.3s ease;
  }
  
  .empower-block_one-icon i {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	transition: all 0.3s ease;
  }
  
  .empower-block_one-icon:hover i {
	transform: translateX(2px);
  }
  
  /* Contact Links Style */
  .contact-link {
	color: #08caf7;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
  }
  
  .contact-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #08caf7 0%, #0f1447 100%);
	transition: width 0.3s ease;
  }
  
  .contact-link:hover {
	color: #0f1447;
	transform: translateX(3px);
  }
  
  .contact-link:hover::after {
	width: 100%;
  }
  
  @media (max-width: 767px) {
	.contact-info-section,
	.contact-form-section {
	  padding: 50px 0;
	}
	
	.contact-form {
	  padding: 30px 20px;
	}
	
	.contact-info {
	  padding: 30px 20px;
	  margin-top: 30px;
	}
  }

/* Faq Two Section Spacing - Only for Service Detail Pages */
.sidebar-page-container + .faq-two {
  padding-top: 30px;
  padding-bottom: 80px;
}

/* FAQ Accordion Spacing */
.faq-two .accordion-box.style-two {
  margin-bottom: 0;
}

.faq-two .accordion-box.style-two .accordion.block {
  margin-bottom: 20px;
}

.faq-two .accordion-box.style-two .accordion.block:last-child {
  margin-bottom: 0;
}

/* FAQ Columns Spacing */
.faq-two .row.clearfix {
  gap: 0;
}

.faq-two .column {
  padding-left: 15px;
  padding-right: 15px;
}

/* Fix FAQ Arrow Centering */
.faq-two .accordion-box.style-two .accordion.block .acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-two .accordion-box.style-two .accordion.block .icon-outer {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-two .accordion-box.style-two .accordion.block .icon-outer .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Mobile Service Selector (Dropdown)
   ======================================== */

/* Hide mobile selector on desktop */
.mobile-service-selector {
  display: none;
}

/* Mobile styles */
@media (max-width: 991px) {
  /* Show mobile selector */
  .mobile-service-selector {
    display: block;
    margin-bottom: 30px;
  }
  
  /* Hide desktop category widget */
  .category-widget {
    display: none !important;
  }
  
  /* Style the dropdown */
  .service-dropdown {
    width: 100%;
    padding: 18px 70px 18px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #0f1447;
    background: #fff;
    border: 3px solid #1d93d2;
    border-radius: 50px;
    box-shadow: 0 5px 15px #1d93d226;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .service-dropdown:hover {
    border-color: #0c7bb8;
    box-shadow: 0 8px 20px rgba(29, 147, 210, 0.25);
    transform: translateY(-2px);
  }
  
  .service-dropdown:focus {
    outline: none;
    border-color: #0c7bb8;
    box-shadow: 0 8px 20px rgba(29, 147, 210, 0.3);
  }
  
  .service-dropdown option {
    background: #fff;
    color: #0f1447;
    padding: 12px;
    font-weight: 500;
  }
  
  /* Add icon circle on the right of dropdown */
  .mobile-service-selector {
    position: relative;
  }
  
  .mobile-service-selector::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #1d93d2;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
  }
  
  .mobile-service-selector::after {
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
    z-index: 2;
    pointer-events: none;
  }
}

/* ========================================
   Mobile Footer Selector (Dropdown)
   ======================================== */

/* Hide mobile footer selector on desktop */
.mobile-footer-selector {
  display: none;
}

/* Show desktop list on desktop */
.desktop-footer-list {
  display: block;
}

/* Mobile styles */
@media (max-width: 991px) {
  /* Show mobile footer selector */
  .mobile-footer-selector {
    display: block;
    margin-bottom: 20px;
  }
  
  /* Hide desktop footer list */
  .desktop-footer-list {
    display: none !important;
  }
  
  /* Style the footer dropdown */
  .footer-dropdown {
    width: 100%;
    padding: 15px 60px 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .footer-dropdown:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(8, 202, 247, 0.6);
    box-shadow: 0 6px 16px rgba(8, 202, 247, 0.2);
    transform: translateY(-2px);
  }
  
  .footer-dropdown:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #08caf7;
    box-shadow: 0 6px 16px rgba(8, 202, 247, 0.3);
  }
  
  .footer-dropdown option {
    background: #0f1447;
    color: #ffffff;
    padding: 12px;
    font-weight: 500;
  }
  
  /* Add icon circle on the right of dropdown */
  .mobile-footer-selector {
    position: relative;
  }
  
  .mobile-footer-selector::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(8, 202, 247, 0.8);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
  }
  
  .mobile-footer-selector::after {
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
    z-index: 2;
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  .footer-dropdown {
    font-size: 15px;
    padding: 13px 55px 13px 18px;
  }
  
  .mobile-footer-selector::before {
    width: 36px;
    height: 36px;
    right: 10px;
  }
  
  .mobile-footer-selector::after {
    right: 21px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  /* FAQ Section Spacing for Tablet/Mobile */
  .sidebar-page-container + .faq-two {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  .faq-two .accordion-box.style-two .accordion.block {
    margin-bottom: 15px;
  }
  
  .faq-two .column {
    margin-bottom: 20px;
  }
  
  .faq-two .column:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .service-dropdown {
    font-size: 16px;
    padding: 15px 65px 15px 20px;
  }
  
  .mobile-service-selector::before {
    width: 40px;
    height: 40px;
    right: 12px;
  }
  
  .mobile-service-selector::after {
    right: 24px;
    font-size: 18px;
  }
  
  /* FAQ Section Spacing for Mobile */
  .sidebar-page-container + .faq-two {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  
  .faq-two .accordion-box.style-two .accordion.block {
    margin-bottom: 12px;
  }
  
  .faq-two .column {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 15px;
  }
  
  .faq-two .sec-title .right-box {
    margin-top: 20px;
  }
}

/* ========================================
   Category Widget - White Arrow Icons
   ======================================== */

.category-widget .category-list li a .icon i {
  color: #ffffff !important;
}

/* ========================================
   Category Widget - Active State Styling
   ======================================== */

/* Active item should have hover styles */
.category-widget .category-list li.active a {
  color: var(--white-color) !important;
  /* ⚠️ EFECTO DE INCLINACIÓN/ROTACIÓN DEL BOTÓN - Comentado por solicitud del usuario */
  /* transform: rotate(2deg); */
}

.category-widget .category-list li.active a::before {
  opacity: 0;
}

.category-widget .category-list li.active a span {
  background-image: none !important;
  background-color: var(--black-color) !important;
}

/* Keep hover effects working */
.category-widget .category-list li a:hover {
  color: var(--white-color) !important;
  /* ⚠️ EFECTO DE INCLINACIÓN/ROTACIÓN DEL BOTÓN - Comentado por solicitud del usuario */
  /* transform: rotate(2deg); */
}

.category-widget .category-list li a:hover::before {
  opacity: 0;
}

.category-widget .category-list li a:hover span {
  background-image: none !important;
  background-color: var(--black-color) !important;
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
  width: auto;
  padding-right: 20px;
  border-radius: 30px;
}

.whatsapp-icon {
  font-size: 32px;
  line-height: 60px;
  transition: all 0.3s ease;
  min-width: 60px;
}

.whatsapp-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  margin-left: 0;
}

.whatsapp-float:hover .whatsapp-text {
  opacity: 1;
  max-width: 150px;
  margin-left: 10px;
}

/* Animation pulse effect */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  animation: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
  }
  
  .whatsapp-icon {
    font-size: 28px;
    line-height: 55px;
    min-width: 55px;
  }
  
  .whatsapp-float:hover {
    width: 55px;
    padding-right: 0;
    border-radius: 50px;
  }
  
  .whatsapp-float:hover .whatsapp-text {
    opacity: 0;
    max-width: 0;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
  
  .whatsapp-icon {
    font-size: 24px;
    line-height: 50px;
    min-width: 50px;
  }
}

/* ========================================
   Animated Page Title Background
   ======================================== */

/* Replace image background with animated gradient */
.page-title {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a5c 50%, #0d2847 100%);
  padding: 150px 0 80px;
  margin-top: 10px;
  z-index: 1;
}

/* Remove or hide old image backgrounds */
.page-title_bg-image,
.page-title_shape-one,
.page-title_shape-two {
  display: none;
}

/* Ensure page title content is visible */
.page-title .auto-container {
  position: relative;
  z-index: 10;
}

.page-title h1,
.page-title .bread-crumb {
  position: relative;
  z-index: 10;
}

/* Animated geometric background layer */
.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(8, 202, 247, 0.03) 30%, rgba(8, 202, 247, 0.03) 70%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(21, 40, 245, 0.03) 30%, rgba(21, 40, 245, 0.03) 70%, transparent 70%);
  background-size: 100px 100px;
  animation: moveBackground 20s linear infinite;
  z-index: 1;
}

/* Animated circuit lines effect */
.page-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 0%, transparent 48%, rgba(8, 202, 247, 0.1) 50%, transparent 52%, transparent 100%),
    linear-gradient(0deg, transparent 0%, transparent 48%, rgba(8, 202, 247, 0.1) 50%, transparent 52%, transparent 100%);
  background-size: 80px 80px;
  animation: circuitMove 15s linear infinite;
  z-index: 1;
}

/* Floating orbs/glows */
.page-title .page-title_big-title::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 202, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  animation: floatOrb1 8s ease-in-out infinite;
  z-index: 2;
}

.page-title .page-title_big-title::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(21, 40, 245, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -50px;
  animation: floatOrb2 10s ease-in-out infinite;
  z-index: 2;
}

/* Animated diagonal lines */
.page-title .auto-container::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    transparent 45%, 
    rgba(8, 202, 247, 0.4) 50%, 
    transparent 55%, 
    transparent 100%);
  top: 30%;
  left: -50%;
  transform: rotate(-15deg);
  animation: slideLine1 12s linear infinite;
  z-index: 2;
}

.page-title .auto-container::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    transparent 45%, 
    rgba(21, 40, 245, 0.3) 50%, 
    transparent 55%, 
    transparent 100%);
  bottom: 30%;
  left: -50%;
  transform: rotate(15deg);
  animation: slideLine2 14s linear infinite reverse;
  z-index: 2;
}

/* Content needs higher z-index */
.page-title .auto-container {
  position: relative;
  z-index: 10;
}

.page-title h1,
.page-title .bread-crumb {
  position: relative;
  z-index: 10;
}

/* Tech dots pattern */
.page-title h1::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(8, 202, 247, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
  top: 0;
  left: 0;
  opacity: 0.3;
  animation: dotsPulse 3s ease-in-out infinite;
  z-index: -1;
}

/* Keyframe animations */
@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

@keyframes circuitMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

@keyframes floatOrb1 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-30px, 30px) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes floatOrb2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(40px, -20px) scale(1.15);
    opacity: 0.5;
  }
}

@keyframes slideLine1 {
  0% {
    transform: translateX(0) rotate(-15deg);
  }
  100% {
    transform: translateX(50%) rotate(-15deg);
  }
}

@keyframes slideLine2 {
  0% {
    transform: translateX(0) rotate(15deg);
  }
  100% {
    transform: translateX(50%) rotate(15deg);
  }
}

@keyframes dotsPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-title {
    padding: 120px 0 60px;
  }
  
  .page-title h1,
  .page-title .bread-crumb {
    text-align: center;
  }
  
  .page-title .bread-crumb {
    justify-content: center;
  }
  
  .page-title .page-title_big-title::before {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -80px;
  }
  
  .page-title .page-title_big-title::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -30px;
  }
}

@media (max-width: 480px) {
  .page-title {
    padding: 100px 0 50px;
  }
  
  .page-title h1 {
    text-align: center;
    font-size: 32px;
  }
  
  .page-title .bread-crumb {
    text-align: center;
    justify-content: center;
  }
  
  .page-title::before,
  .page-title::after {
    animation-duration: 25s;
  }
}

/* ========================================
   Tech Background for About Page - Simplified
   ======================================== */

.page-title-tech {
  background: linear-gradient(135deg, #0a1f44 0%, #0d2847 50%, #0a1f44 100%);
  position: relative;
  overflow: hidden;
  padding: 150px 0 80px;
  margin-top: 10px;
  z-index: 1;
}

/* Tech background container */
.tech-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Hide particles and hexagons */
.tech-particles,
.tech-hexagons,
.tech-grid {
  display: none;
}

/* Scanning laser line effect */
.tech-scan-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(8, 202, 247, 0) 20%,
    rgba(8, 202, 247, 0.8) 50%,
    rgba(8, 202, 247, 0) 80%,
    transparent 100%);
  box-shadow: 
    0 0 20px rgba(8, 202, 247, 0.8),
    0 0 40px rgba(8, 202, 247, 0.5),
    0 0 60px rgba(8, 202, 247, 0.3);
  top: 0;
  animation: scanLine 4s ease-in-out infinite;
  z-index: 5;
}

/* Radial pulse from center */
.page-title-tech .auto-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(8, 202, 247, 0.5);
  box-shadow: 
    0 0 20px rgba(8, 202, 247, 0.5),
    0 0 40px rgba(8, 202, 247, 0.3);
  animation: radialPulse 3s ease-out infinite;
  z-index: 1;
}

/* Ensure content is above effects */
.page-title-tech .auto-container {
  position: relative;
  z-index: 10;
}

.page-title-tech h1,
.page-title-tech .bread-crumb {
  position: relative;
  z-index: 10;
}

/* Animations */
@keyframes scanLine {
  0% {
    top: 0%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes radialPulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* Enhanced title effect for tech page */
.page-title-tech h1 {
  text-shadow: 
    0 0 10px rgba(8, 202, 247, 0.5),
    0 0 20px rgba(8, 202, 247, 0.3),
    0 0 30px rgba(8, 202, 247, 0.2);
  animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(8, 202, 247, 0.5),
      0 0 20px rgba(8, 202, 247, 0.3),
      0 0 30px rgba(8, 202, 247, 0.2);
  }
  50% {
    text-shadow: 
      0 0 20px rgba(8, 202, 247, 0.8),
      0 0 30px rgba(8, 202, 247, 0.5),
      0 0 40px rgba(8, 202, 247, 0.3),
      0 0 50px rgba(21, 40, 245, 0.2);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-title-tech {
    padding: 120px 0 60px;
  }
  
  .page-title-tech .auto-container::before {
    width: 15px;
    height: 15px;
  }
  
  .page-title-tech h1,
  .page-title-tech .bread-crumb {
    text-align: center;
  }
  
  .page-title-tech .bread-crumb {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .page-title-tech {
    padding: 100px 0 50px;
  }
  
  .tech-scan-line {
    height: 2px;
  }
  
  .page-title-tech .auto-container::before {
    width: 12px;
    height: 12px;
  }
  
  .page-title-tech h1 {
    text-align: center;
    font-size: 32px;
  }
  
  .page-title-tech .bread-crumb {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================
   Testimonial Section - Google Reviews Style
   ============================================ */

/* Hide author images in testimonials */
.testimonial-block_one-author_image {
  display: none !important;
}

/* Google Reviews golden stars */
.testimonial-block_one-rating .fa-star {
  color: #fbbc04 !important;
  font-size: 20px;
  margin: 0 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Testimonial author styling without image */
.testimonial-block_one-author {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.4;
}

.testimonial-block_one-author span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

/* Testimonial rating centered */
.testimonial-block_one-rating {
  text-align: center;
  margin-top: 20px;
}
  
  