/* ============================================
   CYBERPUNK DARK TECH — Main Stylesheet
   ============================================ */

/* import fonts from fonts.css file */
@import url(./fonts.css);
/* css variables */
@import url(./partials/_variables.css);
/* import global styling */
@import url(./partials/_global.css);

/* ---------- Base ---------- */
body {
	background-color: var(--bg-darkest);
	background-image:
		linear-gradient(rgba(0, 255, 65, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 65, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
	font-family: var(--body);
	color: var(--text-color);
}

/* ---------- Navigation ---------- */

.header_area .main-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.site-main {
	padding-top: 80px;
}

.header_area .main-menu .navbar .navbar-brand {
	padding: 0 2rem 0 5rem;
}

.header_area .main-menu .navbar {
	padding: 1rem 20rem;
	background: var(--bg-dark);
	border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.header_area .main-menu .nav-item .nav-link {
	font: normal 500 14px / 2px var(--mono);
	text-transform: uppercase;
	padding: 1.7rem;
	color: var(--text-color);
	letter-spacing: 2px;
	transition:
		color 0.3s ease,
		text-shadow 0.3s ease;
}

.header_area .main-menu .navbar-nav .active a {
	color: var(--primary-color) !important;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.header_area .main-menu .navbar-nav a:hover {
	color: var(--primary-color);
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* Navbar toggler — dark theme */
.navbar-toggler {
	border-color: rgba(0, 255, 65, 0.3);
	background: transparent;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,255,65,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- Banner Area ---------- */

.site-main .site-banner {
	position: relative;
	background-color: var(--bg-darkest);
	height: 100vh;
	min-height: 25rem;
	width: 100%;
	overflow: hidden;
}

.site-main .site-banner #matrix-rain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.site-main .site-banner .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(10, 10, 15, 0.7) 0%,
		rgba(10, 10, 15, 0.4) 100%
	);
	z-index: 1;
}

.site-main .site-banner .site-title {
	position: relative;
	z-index: 3;
}

.site-main .site-banner .site-title h3 {
	padding-top: 35%;
	font-weight: 500;
}

.site-main .site-banner .site-title h3::after {
	content: " ";
	height: 2px;
	width: 18vw;
	background: var(--gradient-color);
	display: inline-block;
	margin-left: 5%;
	transform: translateY(-10px);
	box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.site-main .site-banner .site-title h1 {
	font-size: 4.5rem;
	font-family: var(--display);
	color: var(--primary-color);
	text-shadow:
		0 0 20px rgba(0, 255, 65, 0.5),
		0 0 40px rgba(0, 255, 65, 0.3);
	line-height: 1.15;
}

.site-main .site-banner .site-title .title-sub {
	display: block;
	font-size: 1.4rem;
	font-family: var(--mono);
	color: var(--text-light);
	text-shadow: none;
	font-weight: 400;
	letter-spacing: 2px;
	margin-top: 0.35rem;
	opacity: 0.85;
}

.site-main .site-banner .site-title h4 {
	font-size: 1.5rem;
	font-family: var(--mono);
	color: var(--text-light);
	letter-spacing: 3px;
}

.site-main .site-banner .banner-image {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-main .site-banner .banner-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	background: url("software/img/banner/banner-image.webp") no-repeat center
		center;
	background-size: 80% auto;
	background-position: top center;
}

.site-main .site-banner .site-title {
	position: relative;
	z-index: 3;
}

/* ---------- About Area ---------- */

.site-main .about-area {
	padding: 0;
	background: var(--bg-dark);
}

.site-main .about-area .about-title h2 > span {
	display: block;
	font: normal bold 49px / 60px var(--display);
	letter-spacing: 21px;
	color: var(--title-color);
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.site-main .about-area .about-title .paragraph > p {
	padding: 0.4rem 0;
}

/* ---------- Brand Area ---------- */

.site-main .brand-area {
	padding: 5rem 20rem;
	margin-bottom: 4rem;
	background: var(--bg-medium);
	border-top: 1px solid rgba(0, 255, 65, 0.1);
	border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.site-main .brand-area .first-row .col-lg-4 {
	display: flex;
	justify-content: center;
}

.site-main .brand-area .first-row .col-lg-4 > .single-brand {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 1.8rem 0rem;
	margin: 0.9rem 0;
	width: 180px;
	height: 100px;
	cursor: pointer;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
	background: var(--bg-card);
}

.site-main .brand-area .first-row .col-lg-4 > .single-brand > img {
	width: 50%;
	filter: brightness(0.9);
}

.site-main .brand-area .first-row .col-lg-4 > .single-brand:hover {
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
	transform: scale(1.1);
}

.site-main .brand-area .experience-area {
	padding-left: 1rem;
}

.site-main .brand-area .experience-area span {
	display: block;
}

.site-main .brand-area .experience-area .years-area {
	background: url(../img/client-info-bg.png) no-repeat 200px 20px;
	padding: 2rem 0;
	width: 40rem;
	height: 18rem;
	padding-left: 8rem;
	position: relative;
}

.site-main .brand-area .experience-area .bg-panel {
	position: absolute;
	left: -190px;
	top: 0%;
	background: rgba(0, 255, 65, 0.03);
	width: 400px;
	height: 400px;
	margin-left: 340px;
	z-index: -1;
}

.site-main .brand-area .experience-area .years-area .years {
	font: normal bold 84px / 40px var(--display);
	color: var(--primary-color);
	z-index: 2;
}

.site-main .brand-area .experience-area h2 > span {
	font: normal 600 22px / 30px var(--mono);
}

.site-main .brand-area .experience-area .call-area {
	padding-left: 10rem;
}

/* ---------- Scroll offset for fixed header ---------- */
#sobre-mi,
#servicios,
#portafolio,
#feedback,
#contacto {
	scroll-margin-top: 90px;
}

/* ---------- Services Area ---------- */

.site-main .services-area {
	padding: 6rem 2rem;
	background: var(--bg-darkest);
	position: relative;
}

.site-main .services-area .services-title {
	padding: 0 14rem;
}

.site-main .services-area .services-title h1 {
	font-size: 35px;
	font-family: var(--display);
	color: var(--title-color);
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.site-main > .services-area .services {
	background: linear-gradient(
		145deg,
		rgba(26, 26, 46, 0.9) 0%,
		rgba(22, 22, 42, 0.95) 100%
	);
	padding: 2.5rem 1.5rem;
	width: 100%;
	min-height: 20rem;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 255, 65, 0.08);
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Staggered entrance */
.site-main > .services-area .col-lg-3:nth-child(1) .services {
	animation: fadeUp 0.5s ease 0.1s both;
}
.site-main > .services-area .col-lg-3:nth-child(2) .services {
	animation: fadeUp 0.5s ease 0.2s both;
}
.site-main > .services-area .col-lg-3:nth-child(3) .services {
	animation: fadeUp 0.5s ease 0.3s both;
}
.site-main > .services-area .col-lg-3:nth-child(4) .services {
	animation: fadeUp 0.5s ease 0.4s both;
}

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

.site-main > .services-area .services:hover {
	box-shadow:
		0 0 40px rgba(0, 255, 65, 0.12),
		inset 0 0 30px rgba(0, 255, 65, 0.03);
	transform: translateY(-8px);
	border-color: rgba(0, 255, 65, 0.3);
}

/* Icon container */
.site-main > .services-area .services .services-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(0, 255, 65, 0.2);
	border-radius: 12px;
	background: rgba(0, 255, 65, 0.05);
	margin-bottom: 1.5rem;
	transition: all 0.3s ease;
}

.site-main > .services-area .services:hover .services-icon {
	background: rgba(0, 255, 65, 0.12);
	border-color: rgba(0, 255, 65, 0.5);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.15);
}

.site-main > .services-area .services .services-icon i {
	font-size: 1.5rem;
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.site-main > .services-area .services:hover .services-icon i {
	filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.5));
}

/* Body */
.site-main > .services-area .services .services-body {
	position: relative;
	z-index: 1;
}

/* Number */
.site-main > .services-area .services .services-num {
	font-family: var(--display);
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(0, 255, 65, 0.3);
	letter-spacing: 3px;
	display: block;
	margin-bottom: 0.5rem;
}

/* Title */
.site-main > .services-area .services .services-title-card {
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 0.75rem;
	transition: color 0.3s ease;
}

.site-main > .services-area .services:hover .services-title-card {
	color: var(--primary-color);
	text-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

/* Text */
.site-main > .services-area .services .services-text {
	font-family: var(--mono);
	font-size: 0.85rem;
	color: var(--text-color);
	line-height: 1.6;
	margin: 0;
}

/* Glow corner accent */
.site-main > .services-area .services .services-glow {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background: radial-gradient(
		circle at 100% 100%,
		rgba(0, 255, 65, 0.06),
		transparent 70%
	);
	pointer-events: none;
	transition: all 0.4s ease;
}

.site-main > .services-area .services:hover .services-glow {
	width: 150px;
	height: 150px;
	background: radial-gradient(
		circle at 100% 100%,
		rgba(0, 255, 65, 0.12),
		transparent 70%
	);
}

/* Grid line decoration */
.site-main > .services-area .services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 255, 65, 0.2),
		transparent
	);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.site-main > .services-area .services:hover::before {
	opacity: 1;
}

/* ---------- Project Area ---------- */

.site-main .project-area {
	padding: 8rem 0;
	background: var(--bg-dark);
}

.site-main .project-area .button-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.site-main .project-area .button-group button {
	background: transparent;
	border: 1px solid rgba(0, 255, 65, 0.2);
	font: normal 500 14px / 20px var(--mono);
	text-transform: uppercase;
	color: var(--text-color);
	letter-spacing: 2.5px;
	padding: 0.6rem 1.8rem;
	margin: 0;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border-radius: 4px;
}

/* Hover fill effect */
.site-main .project-area .button-group button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: rgba(0, 255, 65, 0.06);
	transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 0;
}

.site-main .project-area .button-group button:hover::before {
	left: 0;
}

.site-main .project-area .button-group button:hover {
	color: var(--primary-color);
	border-color: rgba(0, 255, 65, 0.5);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
}

.site-main .project-area .button-group button.active {
	color: var(--bg-darkest);
	background: var(--primary-color);
	border-color: var(--primary-color);
	box-shadow:
		0 0 20px rgba(0, 255, 65, 0.3),
		inset 0 0 15px rgba(255, 255, 255, 0.1);
	font-weight: 700;
}

.site-main .project-area .button-group button.active::before {
	display: none;
}

.site-main .project-area .button-group button.active:hover {
	box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
	transform: translateY(-1px);
}

.site-main .project-area .grid .our-project > .title h4 {
	font: normal 700 25px / 12px var(--display);
	color: var(--title-color);
}

.site-main .project-area .grid .our-project .img a:hover img {
	filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 255, 65, 0.3));
}

/* ---------- Testimonials / About Me ---------- */

.site-main .about-area .about-title p {
	padding: 1rem 7rem;
}

.site-main .about-area .testimonial-card {
	background: linear-gradient(
		145deg,
		rgba(26, 26, 46, 0.95) 0%,
		rgba(22, 22, 42, 0.98) 100%
	);
	border: 1px solid rgba(0, 255, 65, 0.1);
	border-radius: 12px;
	padding: 2.5rem 2rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
	min-height: 16rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.site-main .about-area .testimonial-card:hover {
	border-color: rgba(0, 255, 65, 0.3);
	box-shadow:
		0 0 30px rgba(0, 255, 65, 0.1),
		0 4px 25px rgba(0, 0, 0, 0.3);
	transform: translateY(-4px);
}

/* Decorative top border line */
.site-main .about-area .testimonial-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 2rem;
	right: 2rem;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 255, 65, 0.3),
		transparent
	);
}

/* Quote icon */
.site-main .about-area .testimonial-quote {
	margin-bottom: 1.2rem;
}

.site-main .about-area .testimonial-quote i {
	font-size: 1.8rem;
	color: rgba(0, 255, 65, 0.15);
	transition: color 0.3s ease;
}

.site-main .about-area .testimonial-card:hover .testimonial-quote i {
	color: rgba(0, 255, 65, 0.35);
}

/* Text */
.site-main .about-area .testimonial-text {
	font-family: var(--mono);
	font-size: 0.9rem;
	color: var(--text-color);
	line-height: 1.7;
	flex: 1;
	margin-bottom: 1.5rem;
}

/* Author */
.site-main .about-area .testimonial-author {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.site-main .about-area .testimonial-name {
	font-family: var(--display);
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-light);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	transition: color 0.3s ease;
}

.site-main .about-area .testimonial-card:hover .testimonial-name {
	color: var(--primary-color);
}

.site-main .about-area .testimonial-role {
	font-family: var(--mono);
	font-size: 0.75rem;
	color: rgba(0, 255, 65, 0.4);
	letter-spacing: 2px;
	text-transform: uppercase;
}

.site-main .about-area .owl-carousel .owl-item {
	display: flex;
	justify-content: center;
	padding: 1rem;
}

.site-main .about-area .owl-carousel .owl-dots .owl-dot.active span {
	background: var(--primary-color);
	width: 12px;
	height: 12px;
	box-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

/* ---------- Subscribe ---------- */

.site-main .subscribe-us-area .subscribe {
	background: var(--bg-medium);
	padding: 10rem 0;
	margin: 3rem auto;
	border-top: 1px solid rgba(0, 255, 65, 0.15);
	border-bottom: 1px solid rgba(0, 255, 65, 0.15);
}

.site-main .subscribe-us-area .subscribe .subscribe-title h4 {
	font: normal 700 30px / 30px var(--display);
	color: var(--primary-color);
}

.site-main .subscribe-us-area .subscribe .subscribe-title p {
	color: var(--text-color);
	padding: 1rem 4rem;
}

.site-main .subscribe-us-area .subscribe .subscribe-form {
	width: 100%;
	max-width: 500px;
}

.site-main .subscribe-us-area .subscribe .input-group {
	display: flex;
	align-items: stretch;
	border: 1px solid rgba(0, 255, 65, 0.3);
	border-radius: 4px;
	overflow: hidden;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.site-main .subscribe-us-area .subscribe .input-group:focus-within {
	border-color: rgba(0, 255, 65, 0.7);
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.15);
}

.site-main .subscribe-us-area .subscribe .input-group .form-control {
	flex: 1;
	padding: 1rem 1.2rem;
	border: none;
	background: var(--bg-card);
	color: var(--text-light);
	font: normal 500 15px / 20px var(--mono);
	letter-spacing: 1px;
	outline: none;
}

.site-main
	.subscribe-us-area
	.subscribe
	.input-group
	.form-control::placeholder {
	color: rgba(0, 255, 65, 0.35);
}

.site-main .subscribe-us-area .subscribe .input-group .btn-submit {
	flex-shrink: 0;
}

.site-main .subscribe-us-area .subscribe .input-group .btn-submit button {
	height: 100%;
	background: var(--primary-color);
	color: var(--bg-darkest);
	padding: 0 1.8rem;
	border: none;
	font-family: var(--mono);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
	cursor: pointer;
}

.site-main .subscribe-us-area .subscribe .input-group .btn-submit button:hover {
	background: transparent;
	color: var(--primary-color);
	box-shadow: inset 0 0 0 2px var(--primary-color);
}

.site-main .subscribe-us-area .subscribe form .btn-submit button:hover {
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
	background: #00cc35;
}

/* ---------- Footer ---------- */

footer.footer-area {
	padding: 5rem 0;
	background: var(--bg-darkest);
	border-top: 1px solid rgba(0, 255, 65, 0.1);
}

footer.footer-area .social h5 {
	font: normal 500 23px / 30px var(--display);
	color: var(--text-color);
	letter-spacing: 3px;
}

footer.footer-area .social a > i {
	font-size: 22px;
	padding: 2rem;
	color: var(--text-color);
	transition:
		color 0.3s ease,
		text-shadow 0.3s ease;
}

footer.footer-area .social a:hover > i {
	color: var(--primary-color);
	text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

/* ---------- Buttons ---------- */

.btn-green {
	color: var(--bg-darkest);
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	background-clip: padding-box;
	box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
	font-family: var(--mono);
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-green.active,
.open .dropdown-toggle.btn-green {
	color: var(--primary-color);
	background-color: transparent;
	border-color: var(--primary-color);
	box-shadow: 0 0 25px rgba(0, 255, 65, 0.5);
}

.btn-green:active,
.btn-green.active,
.open .dropdown-toggle.btn-green {
	color: var(--primary-color);
}

.btn-green.disabled,
.btn-green[disabled],
fieldset[disabled] .btn-green,
.btn-green.disabled:hover,
.btn-green[disabled]:hover,
fieldset[disabled] .btn-green:hover,
.btn-green.disabled:focus,
.btn-green[disabled]:focus,
fieldset[disabled] .btn-green:focus,
.btn-green.disabled:active,
.btn-green[disabled]:active,
fieldset[disabled] .btn-green:active,
.btn-green.disabled.active,
.btn-green[disabled].active,
fieldset[disabled] .btn-green.active {
	background-color: var(--bg-medium);
	border-color: var(--border-color);
	color: var(--text-color);
	box-shadow: none;
}

.btn-green .badge {
	color: var(--bg-darkest);
	background-color: var(--primary-color);
}

.btn-white {
	color: var(--primary-color);
	background-color: transparent;
	border-color: var(--primary-color);
	background-clip: padding-box;
	box-shadow: 0 0 10px rgba(0, 255, 65, 0.15);
	border-radius: 4px;
	font-family: var(--mono);
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--bg-darkest);
	box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.btn-white:active,
.btn-white.active,
.open .dropdown-toggle.btn-white {
	background-image: none;
	background-clip: padding-box;
}

.btn-white.disabled,
.btn-white[disabled],
fieldset[disabled] .btn-white,
.btn-white.disabled:hover,
.btn-white[disabled]:hover,
fieldset[disabled] .btn-white:hover,
.btn-white.disabled:focus,
.btn-white[disabled]:focus,
fieldset[disabled] .btn-white:focus,
.btn-white.disabled:active,
.btn-white[disabled]:active,
fieldset[disabled] .btn-white:active,
.btn-white.disabled.active,
.btn-white[disabled].active,
fieldset[disabled] .btn-white.active {
	background-color: transparent;
	border-color: var(--border-color);
	color: var(--text-color);
}

.btn-white .badge {
	color: var(--primary-color);
	background-color: var(--bg-darkest);
}

/* ---------- Logo ---------- */

.site-logo a img {
	width: 300px;
	filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.15));
}

/* ---------- WhatsApp Float ---------- */

.float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
	z-index: 100;
	transition: all 0.3s ease;
}

.float:hover {
	box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
	transform: scale(1.1);
}

.my-float {
	margin-top: 16px;
}

.float i:hover {
	color: white;
}

.wsp a:hover {
	color: white;
}

.go-wsp {
	margin-top: 20px;
	margin-bottom: 20px;
}

/* ---------- Brand / Client text ---------- */

.brand-area .col-sm-6 {
	padding: 0.5rem;
}

.brand-image {
	padding: 0.6rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	filter: brightness(1.2) contrast(1.05);
	transition: all 0.3s ease;
	max-height: 4.5rem;
	width: auto;
	object-fit: contain;
}

/* Handle JPG logos with white backgrounds on dark theme */
.brand-image[src$=".jpg"],
.brand-image[src$=".jpeg"] {
	background: #1a1a2e;
	mix-blend-mode: screen;
	filter: brightness(1.4) contrast(1.15);
}

.brand-image:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(0, 255, 65, 0.3);
	filter: brightness(1.25) contrast(1.1)
		drop-shadow(0 0 15px rgba(0, 255, 65, 0.2));
	transform: scale(1.05);
}

.brand-image[src$=".jpg"]:hover,
.brand-image[src$=".jpeg"]:hover {
	mix-blend-mode: screen;
	filter: brightness(1.5) contrast(1.2)
		drop-shadow(0 0 15px rgba(0, 255, 65, 0.2));
}

.text-brand {
	display: block;
	font: normal bold 30px / 40px var(--display);
	letter-spacing: 3px;
	color: var(--text-light);
}

.block-brand span::after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border-right: 1px solid rgba(0, 255, 65, 0.3);
}

.hidden {
	opacity: 0;
}

.console-container {
	font-size: 2.2em;
	color: var(--primary-color);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	font-family: var(--display);
	text-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
	white-space: nowrap;
}

.console-underscore {
	display: inline-block;
	position: relative;
	top: -0.14em;
	left: 10px;
}

/* ---------- Responsive ---------- */
@media only screen and (max-width: 600px) {
	.site-main > .services-area .services {
		background: var(--bg-card);
		padding: 2rem 0;
		width: 16rem;
		margin: 1rem 0.5rem;
		transition: box-shadow 0.7s ease;
	}

	.header_area .main-menu .navbar .navbar-brand {
		padding: 0 0 0 0;
	}
}

/* ---------- Table Price (hardware page) ---------- */
.site-main .table-price {
	padding-top: 4rem;
}

.site-main .table-price h2 {
	font-family: var(--display);
	font-size: 1.1rem;
	color: var(--primary-color);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 2.5rem 0 1rem;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(0, 255, 65, 0.08);
}

.site-main .table-price .table {
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid rgba(0, 255, 65, 0.1);
}

.site-main .table-price .table thead th {
	font-family: var(--mono);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 2.5px;
	border: none;
	border-bottom: 2px solid rgba(0, 255, 65, 0.25);
	background: rgba(0, 255, 65, 0.06);
	padding: 1rem 1.2rem;
}

.site-main .table-price .table tbody td {
	font-family: var(--mono);
	font-size: 0.85rem;
	color: var(--text-color);
	vertical-align: middle;
	padding: 0.9rem 1.2rem;
	border-color: rgba(0, 255, 65, 0.05);
	transition: all 0.25s ease;
}

.site-main .table-price .table tbody tr {
	transition: all 0.25s ease;
}

.site-main .table-price .table tbody tr:hover td {
	background: rgba(0, 255, 65, 0.04);
	color: var(--text-light);
}

.site-main .table-price .table tbody td:last-child {
	color: var(--primary-color);
	font-weight: 700;
	letter-spacing: 1px;
}

.site-main .table-price .table tbody tr:hover td:last-child {
	text-shadow: 0 0 12px rgba(0, 255, 65, 0.4);
}

/* Striped rows — intentional low-contrast */
.site-main .table-price .table-striped > tbody > tr:nth-of-type(odd) > td {
	background: rgba(0, 255, 65, 0.015);
}

.site-main
	.table-price
	.table-striped
	> tbody
	> tr:nth-of-type(odd):hover
	> td {
	background: rgba(0, 255, 65, 0.055);
}

/* ---------- Copyright ---------- */
footer.footer-area .copyright-text {
	font-family: var(--mono);
	font-size: 0.8rem;
	color: rgba(176, 176, 200, 0.5);
	letter-spacing: 1.5px;
}
