@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
@font-face {
    font-family: 'Monarck-Black';
    src: url('/fonts/Monark-Black.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Bosan';
    src: url('../fonts/Bosan.otf') format('opentype');
    font-weight: 100;

}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
#about2 {
    position: relative;
    overflow: hidden;
}

#particles-js {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



html {
	font-size: 10px;
    font-family: 'Monarck-Black', serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.project-item {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: all 0.6s ease-in-out;
}

.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.container-benefits {
	min-height: 60vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.container-about {
	min-height: 65vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

ul.dropdown-menu{
    max-width: 300pxl;
}


.container-testimonials {
	padding: 0px 25px;
	min-height: 20vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
    border-radius: 25px;
	background-image: url(../img/LOGO_CONTROL_TECH_FONDO2.jpg);
}

.container-contact {
    min-height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.container-plans {
    min-height: 50vh;
    width: 100%;
    display: inline-block;
    align-items: center;
    justify-content: center;
	
 
}

.container-mission {
    min-height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}
.container-footer {
	min-height: 30vh;
	width: 100%;
	align-items: center;
	justify-content: center;
    display: flex;

}
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
p {
	color: black;
	font-size: 1.6rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 100;
	letter-spacing: .05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 100;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .2rem;
	text-align: center;
}
.section-title span {
	color: #d80f0f;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: #d80f0f;
	border: 2px solid #d80f0f;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: .1rem;
	margin-top: 30px;
	transition: .3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: red;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: #d80f0f;
}
img.brand-logo {
    max-width: 200px;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

#header.scrolled {
    background: rgba(31, 30, 30, 0.9); /* Slightly visible on scroll */
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: .3s ease background-color;
}
#header .nav-bar {
	display: flex;

	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 100%;
	padding: 0 10px;
    max-height: 90px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(31, 30, 30);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: .5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 100;
	letter-spacing: .2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: .3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: white;
}


#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(.8);
	margin-right: 20px;
	flex-direction: column;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar-before,
#header .hamburger .bar-middle,
#header .hamburger .bar-after {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar-after
#header .hamburger .bar-middle ,
#header .hamburger .bar-before {
	content: '';
	position: absolute;

	background-color: white;
	transition: .3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar-after {
	top: 10px;
}
#header .hamburger .bar-before {
	top: 18px;
}
#header .hamburger .bar-middle {
    top: 3px;
}
#header .hamburger.active .bar-middle {
	display: none;
}
#header .hamburger.active .bar-before {
	transform: rotate(45deg);
	top: 25px;
}
#header .hamburger.active .bar-after {
	top: 0;
    transform: rotate(-45deg);
}
.heromain{
	background-image: url(../img/LOGO_CONTROL_TECH_FONDO2.jpg);
}
.herogym{
    background-image: url(../img/box31.jpg);
}
.herohotel{
    background-image: url(../img/herohotel.jpg);
}
.herocrossfit{
    background-image: url(../img/herocrossfit.jpg);
}
.heroempresa{
    background-image: url(../img/heroempresa.jpg);
}
.heroresidencial{
    background-image: url(../img/heroresidencial.jpg);
}
.heroclinica{
    background-image: url(../img/heroclinica.jpg);
}
.heroeducacion{
    background-image: url(../img/heroeducacion.jpg);
}
.herospa{
    background-image: url(../img/herospa.jpg);
}
#hero {
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
    
}
#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: .3;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal .5s ease forwards;
	animation-delay: 1s;
    font-weight: 100;
}
#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name .5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #d80f0f;
	animation: text_reveal_box 1s ease;
	animation-delay: .5s;
}
#hero h1:nth-child(1) span {
	animation-delay: .5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

#services .services {
	flex-direction: column;
	text-align: left;
	max-width: 1500px;
	margin: 0 auto;
    padding: 50px 0 40px 0;
}
#services .service-top {
	max-width: 1200px;
	margin: 0 auto;
	text-align: left;
	padding: 0px 50px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}
#services .service-top p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}
#services .service-bottom {
	display: flex;
	align-items: left;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
	padding: 0px 0px;
}
#services .service-item {
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: left;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-image: src="../img/Recurso_8.png";
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #003744 0%, #003744 100%);
	opacity: .9;
	z-index: -1;
}
#services .service-bottom .icon {
	height: 80px;
	width: 80px;
	margin-bottom: 20px;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
    font-weight: 100;
}
#services .service-item p {
	color: white;
	text-align: left;
    font-family:'Montserrat', sans-serif;
    font-weight: 500;
}

#projects .projects {
	flex-direction: column;
	max-width: 2500px;
	margin: 0 auto;
	padding: 0px 0;
}
#projects .projects-header h1 {
	margin-bottom: 25px;
}
p.projects-p1 {
    text-align: center;
}
#projects .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#projects .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#projects .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}
#projects .project-info h1 {
	font-size: 4rem;
	font-weight: 100;
}
#projects .project-info h2 {
	font-size: 1.8rem;
	font-weight: 100;
	margin-top: 10px;
}
#projects .project-info p {
	color: white;
    font-size: 2rem;
}
#projects .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#projects .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: .3;
}
#projects .project-img img {
	transition: .3s ease transform;
}
#projects .project-item:hover .project-img img {
	transform: scale(1.1);
}



#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#about2 .about2 {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1450px;
	margin: 0 auto;
	padding: 0px 5% 25px 5%;
    flex-direction: row;
}
.container-about2 {
	min-height: 20vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#about .about {
    flex-direction: column-reverse;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;

}

#about .col-left {
	width: 250px;
	height: 360px;
}
#about2 .col-left2 {
    width: 60%;
	height: 250px;
    align-content: center;

}
#about2 .col-right2 {
	height: 100%;
max-width: 500px;
align-content: center;
}

#about .col-right {
	width: 100%;
}

#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 100;
	letter-spacing: .2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}
#about .col-right .cta {
	color: white;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 1.5rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid #d80f0f;
	z-index: -1;
}

#contact .contact {
	flex-direction: column;
	max-width: 100%;
	margin: 0 auto;
}
#contact .contact-items {
	width: 400px;
}
#contact .contact-item {
	width: 80%;
	padding: 20px;
	text-align: left;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
    display: flex;
    	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: .3s ease box-shadow;
}
#contact .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contact .icon {
	width: 70px;
	margin: 0 auto;
	margin-bottom: 10px;
}
#contact .contact-info h1 {
	font-size: 2.5rem;
	font-weight: 100;
	margin-bottom: 5px;
}
#contact .contact-info h2 {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 100;
}
.contact-info p{
font-family: "Montserrat", sans-serif;
font-weight: 900;
}
#footer {
    background-image: linear-gradient(60deg, #111 0%, #111 100%);
        width: 100%;
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 100;
	font-size: 1.8rem;
	letter-spacing: .1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 10px;
}
#footer .social-item {
	height: 25px;
	width: 25px;
	margin: 0 5px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: .3s ease filter;
}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}

@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: #d80f0f;
		font-weight: 100;
	}
}



@media only screen and (min-width: 768px) {
	.cta {
		font-size: 1.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 4rem;
	}

	
	#hero h1 {
		font-size: 4rem;
	}
	

	
	#services .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}

	#projects .project-item {
		flex-direction: row;
	}
	#projects .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#projects .project-item {
		height: 100vh;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#projects .all-projects .project-info {
		height: 100%;
	}
	#projects .all-projects .project-img {
		height: 100%;
	}

	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid #d80f0f;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}

	#contact .contact {
		flex-direction: column;
		padding: 50px 0 0 0;
		align-items: center;
		justify-content: center;
		min-width: 100%;
		
	}
	#contact .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
		padding-bottom:50px;
	}
	#contact .contact-item {
		width: 30%;
		margin: 0;
		flex-direction: row;
	}
	#contact .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contact .contact-item .icon img {
		object-fit: contain;
	}
	#contact .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	
}
#header .nav-list .dropdown-menu li a{
    max-width: 100%;
    width: max-content;

}
@media only screen and (min-width: 1200px) {
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.4rem;
        max-width: 160px;
	}

    #header .dropdown-menu ul li a {
		font-size: 1.4rem;
        max-width: 160px;
	}
	#header .nav-list ul a:after {
		display: none;
	}


	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background iframe {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 5%;
}

.hero h1 {
  font-size: 2.5em;
  margin: 0.2em 0;
}

.hero .cta {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #e74c3c;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
    z-index: 1;
	min-height: 98vh;
}

.hero-content {
    max-width: 60%; 
}

.hero-image {
    max-width: 45%; 
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; 
    max-height: 500px;
}

#benefits {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.benefits-list {
  display: inline-block;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  text-align: -webkit-center;

}

.benefits-list li {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 250px;
  font-size: 1.5em;
  text-align: left;
}

.benefits-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.benefits-list li img {
  flex-shrink: 0;
}

.benefits-list li span {
  font-size: 1.1em;
  font-weight: 100;
  color: #333;
}


.section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 20px;
  color: #333;

  font-family: 'Monark-Black', serif;
}


#benefits {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.benefits-content {
  display: contents;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}


.benefits-list {
  list-style: none;
  padding: 0;
  width: 45%;
}

.benefits-list li {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}


.benefits-logo {
  width: 400px;
  flex-shrink: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-logo img {
  width: 100%;
  height: auto;
}


.section-title {
  font-size: 2.2em;
  color: #333;
  font-family: 'Monarck-Black', serif;
  margin-bottom: 20px;
}



.contact-form {
    max-width: 600px;
    margin: 30px auto;
    text-align: center;
	
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.contact-form button {
    padding: 10px 0;
}


#plans .plans {
    text-align: center;
    padding: 50px 0;
}
.plans-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
	padding-top: 25px;
}
.plan-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: calc(25% - 20px);
    text-align: center;
}
.plan-item p {
    font-size: 1.2em;
    line-height: 1.6;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
}
.plan-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 100;
}
.plan-item ul {
    list-style: none;
    padding: 0;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
}
.plan-item ul li {
    padding: 5px 0;
}
.plan-item .cta {
    margin-top: 15px;
    display: inline-block;
}

#contact-form-section {
    background-color: #f4f4f4;
	background-image: url(../img/LOGO_CONTROL_TECH_FONDO2.jpg);
	width: 100%;
}

.contact-form-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}
img.contact-image {
    max-width: 150px;
}
.contact-statement {
    flex: 1;
    padding: 20px;
	color: white;
}
.contact-statement h2 {
    font-size: 2em;
    color: white;
    margin-bottom: 10px;
}
.contact-statement p {
    font-size: 1.4em;
    line-height: 1.6;
    color: white;
    font-family: "montserrat", sans-serif;
    font-weight: 900;
}

.contact-statement img {
    max-width: 100px;
    margin-top: 0px;
    border-radius: 8px;
}
.contact-form {
    flex: 1;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-form h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
    font-weight: 100;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.contact-form button {
    padding: 10px;
    font-size: 1em;
    color: white;
    background-color: #d80f0f;
    border: none;
    border-radius: 5px;
    cursor: pointerF;
}
.contact-form button:hover {
    background-color: darkred;
}

section#plans {
    padding: 0 50px;
}



#contact-form-section {
	padding: 50px 25px 0 25px;
    background-color: #f4f4f4;
}

.contact-form-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
	min-height: 10px;
}


.contact-statement {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
}
.contact-statement h2 {
    font-size: 4em;
    color: white;
    margin-bottom: 10px;
    font-weight: 100;
}
.contact-statement p {
    font-size: 1.4em;
    line-height: 1.4;
    color: #fff;
}
.contact-statement .contact-image {
    width: 100%;
    max-width: 600px;
    margin-top: 10px;
    border-radius: 8px;
}

#testimonials {
    padding: 0px 10%;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
}

.testimonials .section-title {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 0px;
}


.testimonial-slider {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    height: 300px; 
}




.testimonial-item.active {
    opacity: 1;
    position: relative;
}


.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 1.5em;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.8); 
    border: none;
    cursor: pointer;
    padding: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prev {
    left: 15px; 
}

.next {
    right: 15px;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 1);
}


.testimonial-slider-wrapper {
    position: relative;
    max-width: 600px; 
    margin: 0 auto;
    
}


.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    justify-content: center; 
}

.testimonial-item {
    flex: 0 0 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-item.active {
    display: flex;
}

.testimonial-content img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1.5em;
    color: #fff;
    line-height: 1.6;
    margin: 10px 0;
    max-width: 80%;
    margin: 0 auto;
    font-family: "montserrat", sans-serif;
    font-weight: 500;
}

.testimonial-content h3 {
    font-size: 1.1em;
    color: #fff;
    font-weight: 100;
    margin-top: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 1.5em;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    padding: 10px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.prev {
    left: 10px; 
}

.next {
    right: 10px; 
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 1);
}


.whatsapp-button {
    position: fixed;
    right: 20px; 
    bottom: 20px; 
    width: 48px; 
    height: 48px;
    background-color: #25D366; 
    border-radius: 50%; 
    background-image: url("https://img.icons8.com/color/48/000000/whatsapp.png");
    background-size: 65%; 
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1000; 
}

.whatsapp-button:hover {
    transform: scale(1.1); 
}





/* Hero section for About Us */
#about-hero {
    background-image: url(../img/LOGO_CONTROL_TECH_FONDO.jpg);   
    background-size: cover;
	background-position: center;
	position: relative;
	padding: 100px 20px;
	text-align: center;
	color: white;
  }
  
  #about-hero .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
  }
  
  #about-hero .hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
  }
  
  #about-hero .section-title {
	font-size: 3rem;
	color: #fff;
  }
  
  #about-hero p {
	font-size: 1.6rem;
	line-height: 1.5;
	margin-top: 20px;
  }
  

#watch-our-story {
    padding: 80px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

#watch-our-story .section-title {
    margin-bottom: 20px;
    color: #333;
}


#watch-our-story {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#watch-our-story .section-title {
    margin-bottom: 20px;
    color: #333;
}


.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9; 
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



#about-intro {
    background-image: url(../img/LOGO_CONTROL_TECH_FONDO.jpg);    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 60vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}


#about-intro .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}


#about-intro .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}


#about-intro .section-title {
    font-size: 3.0rem;
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}


#about-intro p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}


#about-intro .cta {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.6rem;
    font-weight: 100;
    color: white;
    background-color: #d80f0f;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#about-intro .cta:hover {
    background-color: darkred;
}


.container-mission {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.mission-content {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-item {
    flex: 1;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

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

.mission-item h2 {
    font-size: 2rem;
    font-weight: 100;
    color: #e74c3c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.mission-item h2::before {
    content: url('https://example.com/icon-path'); 
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

.mission-item p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-top: 5px;
}


#values {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 300px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.value-item h2 {
    font-size: 1.8rem;
    color: #e74c3c;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item h2::before {
    content: url('https://example.com/icon-path'); 
    margin-right: 8px;
    width: 25px;
    height: 25px;
}

.value-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}



.scroll-arrow {
    position: absolute;
    bottom: 10%; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.scroll-arrow2 {
    position: absolute;
    bottom: 10%; 
    left: 8%;
    transform: translateX(-8%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}


.chevron {
    position: relative;
    width: 16px; 
    height: 16px;
    margin: 5px 0;
    animation: bounce 1.5s infinite;
}

.chevron::before {
    content: "";
    position: absolute;
    border-right: 2px solid #fff; 
    border-bottom: 2px solid #fff;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    display: block;
    opacity: 0.8;
}


.chevron:nth-child(1) {
    animation-delay: 0s;
}
.chevron:nth-child(2) {
    animation-delay: 0.2s;
}
.chevron:nth-child(3) {
    animation-delay: 0.4s;
}


@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(8px); 
        opacity: 1;
    }
}



#community {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
}

#community .section-title {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

#community p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 30px;
}

.community-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.community-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 300px;
    font-size: 1em;
}

.community-form .cta {
    padding: 10px 20px;
    background-color: #d80f0f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
	margin-top: 0;
}

.community-form .cta:hover {
    background-color: darkred;
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.social-icons a:hover img {
    transform: scale(1.1);
    opacity: 1;
}


.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
}

.hamburger div {
    height: 3px;
    width: 100%;
    background-color: #333;
    transition: all 0.3s ease;
}








.unique-all-projects {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}


.unique-project-item {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 00px;
}

.unique-project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


@media (min-width: 768px) {
    .unique-project-item {
        flex-direction: row;
        align-items: flex-start;
        padding: 00px;
    }
}


.unique-project-info {
    flex: 1;
    padding: 20px;
    font-family: 'Monarck-Black', serif;
}

.unique-project-info h1 {
    font-size: 2rem;
    font-weight: 100;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.unique-project-info p {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 100;
    letter-spacing: 0.03em;
}


.unique-project-video {
	position: relative;
    flex: 1;
    width: 100%;
    max-width: 640px;  
    height: 0;
    padding-bottom: 36%; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}


@media (min-width: 768px) {
    .unique-project-video {
        margin-top: 0;
        margin-left: 20px;
    }
}

.unique-project-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
#projects2{
	background: #f4f4f4;
}


#faq-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    margin-top: 20px;
	width: 100%;
}

.faq-item {
    width: 100%;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    transition: max-height 0.3s ease;
}


.faq-question {
    width: 100%;
    padding: 15px;
    font-size: 1.6em;
    font-weight: 100;
    text-align: left;
    background-color: #f4f4f4;
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-answer {
    padding: 15px;
    font-size: 1rem;
    color: #555;
    background-color: white;
    display: none; 
}

.faq-item.active .faq-answer {
    display: block; 
}

.demo-button {
    position: fixed;
    top: 0px; 
    right: 5%; 
    padding: 10px 20px;
    background-color: #d80f0f;
    color: white;
    font-size: 1rem;
    font-weight: 100;
    text-transform: uppercase;
    text-align: center;
    border-radius: 0px 0px 5px 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.demo-button:hover {
    background-color: darkred;
    transform: scale(1.05);
}


@media (max-width: 1000px) {
    .demo-button {
        right: 15%;
    }
}
#header .nav-list ul li {
    display: inline-grid;
    max-width: 140px;
}
/* ======= GENERAL HEADER STYLES ======= */



#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 30, 30, 0.95);
    z-index: 1000;
}

.header.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* ======= MAIN NAVIGATION MENU ======= */
.nav-list {
    display: block;
    align-items: center;
    max-height: 50px;
}

.nav-list ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list ul li {
    position: relative;
    margin: 0 15px;
}

/* MAIN MENU LINKS */
.nav-list ul li a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s ease;
}

.nav-list ul li a:hover {
    background: #555;
    border-radius: 5px;
}

/* ======= DROPDOWN MENU ======= */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 0px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown > a:hover + .dropdown-menu, 
.dropdown-menu:hover {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: white;
    display: block;
    text-align: left;
    background: #222 !important;
    min-width: 150px;

}

.dropdown-menu li a:hover {
    background: #222;
}

/* SHOW DROPDOWN ON HOVER (DESKTOP) */
@media (min-width: 769px) {
    .dropdown > a:hover + .dropdown-menu, 
    .dropdown-menu:hover {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 200px; /* Adjust as needed */
        background: #222;
        border-radius: 5px;
        padding: 0;    z-index: 0;
    
        margin: 0;
        display: none; /* ✅ Fully removes from the layout */
    }
    .dropdown{
        z-index: 0;
        height: 0;
    }
    /* Show dropdown ONLY when hovering over the menu */
    .dropdown:hover > .dropdown-menu {
        display: flex;
        flex-direction: column;
        z-index: 1000;
    
    
    }
    .dropdown:hover {
        z-index: 1000;
        height: 100%;
    }
    
}




html {
    scroll-behavior: smooth;
}



#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

#header.scrolled {
    background: rgba(31, 30, 30, 0.9); /* Background when scrolled */
}

@media (max-width: 767px) {
    .nav-list ul li.dropdown:hover .dropdown-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    .hero-image{
        display: none;

    }
    .hero-content {
        max-width: 90%;
    }
    section#contact {
        padding-top: 25px;
    }

    .contact-form-container {
        display: block;
    }
    section#contact {
        padding-top: 30px;
    }


}







/* Ensures smooth animation entry */
.project-item {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: all 0.6s ease-in-out;
}

/* Hover effect for project items */
.project-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Smooth floating animation for images */
.project-img img {
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for images */
.project-item:hover .project-img img {
    transform: scale(1.05);
}

/* Background Gradient Animation */
.projects {
    background: linear-gradient(120deg, #1e1e1e, #333);
    background-size: 400% 400%;
    animation: gradientMove 10s infinite alternate;
}

/* Keyframes for background gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Heading Animation */
.projects-header h1 {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s ease-in-out;
}

.projects-header h1.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle glowing effect on hover */
.project-item:hover .project-info {
    box-shadow: 0px 4px 15px rgba(255, 69, 58, 0.4);
}

/* Button Animation */
.cta {
    transition: all 0.3s ease-in-out;
    z-index: 5;
}

.cta:hover {
    background-color: #ff453a;
    transform: scale(1.1);
}

/* Animation for "Ver Todas nuestras Soluciones" Button */
.projects .cta {
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 69, 58, 0.5);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 69, 58, 0.8);
    }
}

/* ✅ General Layout */
.interactive-slider {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* ✅ Left Side: Titles */
.slider-left {
    width: 30%;
    background: #111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
    background-image: linear-gradient(60deg, #003744 0%, #003744 100%);
}

.slider-left ul {
    list-style: none;
    padding: 0;
}

.slider-left li {
    padding: 15px 20px;
    font-size: 2.5rem;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    font-family: 'Monarck-Black', serif;
    text-transform: uppercase;
    font-weight: 100;

}

.slider-left li.active {
    background: #ff1919;
}

/* ✅ Right Side: Slide Content */
.slider-right {
    width: 70%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    text-align: -webkit-center;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* ✅ Text Overlay */
.slide-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
    color: white;
    max-width: 800px;
    text-align: center;
}

/* ✅ Title Styling */
.slide-content h1 {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 100;
}

/* ✅ Description Styling */
.slide-content p {
    font-size: 2rem;
    line-height: 1.5;
    color:white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* ✅ Mobile Layout (Stacked) */
@media (max-width: 768px) {
    .slide-content {
    
        max-width: 85%;
    
    }
    .interactive-slider {
        flex-direction: column;
        height: auto;
    }

    .slider-left {
        width: 100%;
        height: auto;
        overflow-x: scroll;
        white-space: nowrap;
        padding: 10px 0;
    }

    .slider-left ul {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }

    .slider-left li {
        display: inline-block;
        padding: 10px 15px;
        font-size: 1rem;
    }

    .slider-right {
        width: 100%;
        height: 70vh;
    }
    #services .service-item {
        display: inline-block;
    }
    #services .service-item h2 {
  
        width: 62%;
    }
    .container-testimonials {
        padding-top: 50px;
        display: block;
    }
    .cta {
        text-align: center;
        max-width: 80%;}
    .slider-left ul {
        display: block;
    }
    .slider-left li {
        display: inline-block;
        text-align: center;
        padding: 10px 15px;
        font-size: 2rem;
        float: left;
        width: 50%;
        text-transform: uppercase;
        font-weight: 100;    }


    #services .service-bottom .icon {
        height: 80px;
        width: 80px;
        margin-bottom: 20px;
        float: inline-end;
    }
    #services .service-top {
    
        text-align: center;
    }
    #footer {
        width: 100%;
        padding: 10px 50px;
        text-align: center;
    }
    section#contact {
      
        padding: 40px 10px;
    }
    #contact .contact-item {
        padding: 10px;
        margin:10px;
        text-align: left;
        display:flex;
        flex-direction: row;
    }
    #contact .contact-info h1{
        float: left;
    }
    .contact-form button {

        place-self: center;
        width: 60%;
    }
    #testimonials {
        padding: 0px 3%;
    }

}

.container {
    min-height: 75vh;
    width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
}

.section-title2 {
    font-size: 3.4em;
    padding-top: 25px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    letter-spacing: .0rem;
    line-height: 1;
    text-align: left;
    font-weight: 800;
}

.section-title3 {
    font-size: 3.4em;
    padding-top: 25px;
    color: #fff;
    font-family: 'Monarck-Black', serif;
    margin-bottom: 20px;
    font-weight: 100;
    letter-spacing: .0rem;
    line-height: 1;
    text-align: left;
	text-transform: uppercase;
  }
/* Fix right padding/overflow issue on mobile */
html, body {
    overflow-x: hidden;
    width: 100%;
}



/* Ensure elements don't exceed viewport width */
* {
    box-sizing: border-box;
    max-width: 100%;
}

/* Specific fix for mobile navigation */
@media (max-width: 1200px) {
.nav-list ul li.dropdown:hover .dropdown-menu{
    display: none!important;
}
 .nav-list ul li.dropdown:hover .dropdown-menu{
        display: none!important;
    }
 
    .section-title2 {
        font-size: 2.4em;
        padding-top: 25px;
        color: #333;
        font-family: 'Monark Black', serif;
        margin-bottom: 20px;
        letter-spacing: .0rem;
        line-height: 1;
        text-align: center;
    }
    #about2 .col-right2 {
        height: 100%;
        max-width: 100px;
    }

    #about .about {
        flex-direction: column-reverse;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 50px 20px;
    }
    #about2 .about2 {
     
        flex-direction: column;
    }
    .nav-list ul {
        width: 100vw;
        overflow-x: hidden;
    }
    .nav-list ul li {
        max-width: 100%;
    }

    .interactive-slider {
        width: 100%;
        overflow-x: hidden;
    }
    #about2 .col-left2 {
        width: 100%;
        height: 100%;
    }

 /* Align contact section items to the left on mobile */
 .contact-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding-left: 0px;
}
.contact-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
}
.contact-item .icon {
    flex-shrink: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item .contact-info {
    text-align: left;
    flex-grow: 1;
    display: grid;
    
}
.contact-form-container {
    display: inline-block !important;
}
#header .hamburger{
    margin-right: auto;
}
.header.container {
  

    padding: 10px 0px 0 10px;
}
.demo-button {
    right: 18%;
}


#hero h1{
    font-size: 3rem;
}
.plan-item {
    width: 100%;
}
.benefits-content {
    display: block;
}

    .benefits-list {

        width: 95%;
    }

    .benefits-logo img {
      
        max-width: 250px;
    }
    #about .about {
        padding: 100px 0;
    }

    #about-intro{
        height: 85vh;
    }
    .container-mission {
    
        display: block;
    }
    .solarea {
        background: #333;
    }
    .solarea .interactive-slider {
        padding-top: 90px;
    }
    .nav-list ul li.dropdown:hover .dropdown-menu{
        display: none!important;
    }
    .slider-left{       
         overflow-x: auto;}
    .mission-content{
        flex-direction: column;
    }
    .mission-item h2 {
        justify-content: center;
    }
    .mission-item p {

        text-align: center;
    }

    #header .nav-list ul li {

        height: auto;
    }

}

#header .dropdown-menu ul li {
    display: inline-grid;
}
#header .nav-list .dropdown-menu li a {
    max-width: 100%;
    width: min-content;
}
ul.dropdown-menu {
    background: #222 !important;
}

.service-container{
    min-height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:50px 0 0 0px!important;
}

/* Hide the dropdown menu by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none; /* Hide initially */
    flex-direction: column;
    min-width: 200px;
    padding: 10px 0;
    background: #222;
    border-radius: 5px;
    z-index: 1000;
}

/* Show dropdown ONLY when hovering over the top menu item */
.dropdown:hover > .dropdown-menu {
    display: flex;
}

/* Ensure the dropdown disappears when moving away */
.dropdown-menu:hover {
    display: none;
}


.nav-list ul {
    position: static;
}
/* Completely hide dropdown and remove its space */

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 600px;
}
