@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

h1,h2,p,a, img, #alert-message, .container-box, .back-to-top {
	animation: transitionIn 1.5s;
}

.typewriter {
	animation: transitionIN 1s;
}

@keyframes transitionIn {
	from {
		opacity: 0;
		transform: rotateX(-10);
	}
	to {
		opacity: 1;
		transform: rotateX(0)
	}
}

html, body, #hero, #services, #projects, #about, #contact, #footer {
    overflow-x: hidden;
}

html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}
a {
	text-decoration: none;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
img {
	width: 100%;
}
p {
	color: black;
	font-size: 1.6rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 35px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}
.section-title span {
	color: #00a8e8;
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #00a8e8;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: #00a8e8;
}

/* More button styling */
.more {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #007fc2;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.more:hover {
  background: #005f95;
  color: #fff;
  transform: translateY(-2px);
}

@media only screen and (max-width: 368px) {
	.more {
		width: auto;
	}
}

.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: #00a8e8;
}

/* Header section */

#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}

#header .header {
	min-height: 5vh;
	transition: 0.3s ease background-color;
}

#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 90%;
	padding: 0 10px;
}

#header .nav-list ul {
	list-style: none;
	position: absolute;
	width: 100%;
	height: 45vh;
	left: 0;
	top: -60vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.3s ease top;
}

#header .nav-list ul.active {
	top: 100%;
}

#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}

#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: #00a8e8;
}

#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(0.8);
	margin-right: 20px;
}

#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 {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}


/* End Header section */

/* Hero Section */
#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: 0.7;
	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 0.5s ease forwards;
	animation-delay: 1s;
}
#hero h1:nth-child(1) {
	animation-delay: 0.2s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #00a8e8;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

/* End Hero Section */

/* Services Section */
#services .services {
	flex-direction: column;
	text-align: center;
	max-width: 1500px;
	margin: 0 auto;
	padding: 30px 0;
}
#services .service-top {
	max-width: 500px;
	margin: 0 auto;
}
#services .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
#services .service-item {
	height: 320px;
	width: 520px;
	flex-basis: 80%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
	border-radius: 10px;
	background-size: cover;
	margin: 10px 5%;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

#services .service-item:nth-child(1) {
	background-image: url(../img/design/web-planning.jpg);
}

#services .service-item:nth-child(2) {
	background-image: url(../img/design/web-analysis.jpg);
}

#services .service-item:nth-child(3) {
	background-image: url(../img/design/web-design.jpg);
}

#services .service-item:nth-child(4) {
	background-image: url(../img/design/web-development.jpg);
}

#services .service-item:nth-child(5) {
	background-image: url(../img/design/web-update.jpg);
}

#services .service-item:nth-child(6) {
	background-image: url(../img/design/web-implementation.jpg);
}

#services .service-item:nth-child(7) {
	background-image: url(../img/design/web-maintenance.jpg);
}

#services .service-item::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.9;
	z-index: -1;
}
#services .service-bottom .icon {
	height: 110px;
	width: 110px;
	margin-bottom: 20px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#services .service-item h2 {
	font-size: 2rem;
	color: white;
	margin-bottom: 10px;
	text-transform: uppercase;
}
#services .service-item p {
	color: white;
}
.service-title {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/* End Services Section */

/* Projects section */
#projects {
    padding: 5px;
}

#projects .projects {
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0;
}
#projects .projects-header h1 {
    margin-bottom: 50px;
}
#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 {
    width: 100%;
    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: 500;
}
#projects .project-info h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 10px;
}
#projects .project-info p {
    color: white;
}
#projects .project-img {
    flex-basis: 50%;
    height: 300px;
    width: 800px;
    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: 0.7;
}
#projects .project-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s ease transform;
}
#projects .project-item:hover .project-img img {
    transform: scale(1.015);
}

#projects .project-img:after {
  pointer-events: none; /* Let clicks pass through the overlay */
}
#projects .project-img img {
  cursor: pointer;
}

/* Added CSS for button styles */
.button-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.circle-button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #00a8e8;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.circle-button:hover {
    background-color: #007ea7;
}

.circle-button.active {
  background-color: #9c9c9c !important;
}

/* Demo */
#demo {
	cursor: pointer;
}

.demo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	color: #00a8e8;
	font-weight: bold;
	transition: 0.4s;
	text-align: center;
	border-radius: 2px;
}
.demo:hover {
	font-weight: bold;
	text-align: center;
	color: #007ea7;
	border-radius: 3px;
}

/* End Projects section */

/* About Section */
#about .about {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  gap: 40px;
}

#about .col-left {
  width: 100%;
  max-width: 300px; /* Keeps it from stretching too much */
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about .col-left .about-img {
  width: 100%;
  height: auto;
  position: relative;
}

#about .col-left .about-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

#about .col-left .about-img {
  height: 100%;
  width: 100%;
  position: relative;
}

#about .col-left .about-img::after {
  content: '';
  position: absolute;
  left: -33px;
  top: 19px;
  height: 98%;
  width: 98%;
  /* border: 7px solid #00a8e8; */
  z-index: -1;
}

#about .col-right {
  width: 100%;
}

#about .col-right h1.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#about .col-right h2 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}

#about .col-right p {
  margin-bottom: 20px;
}

#about .col-right .cta {
  color: black;
  margin-bottom: 50px;
  padding: 10px 20px;
  font-size: 2rem;
}

.about-boxes {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-box {
  flex: 1 1 30%;
  background-color: #f5f5f5;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s ease;
}

@media only screen and (max-width: 768px) {
		.about-boxes {
		margin-bottom: 3.5rem;
        margin-top: 3.5rem;
        margin-left: auto;
        margin-right: auto;
        width: 30rem;
	}
}

.about-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.about-box p {
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  #about .about {
    flex-direction: column;
    text-align: center;
  }

  #about .col-left,
  #about .col-right {
    width: 100%;
  }

  #about .col-left {
    margin-top: 30px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-box {
    flex: 1 1 100%;
  }
}
/* End About Section */


/* Contact Section */
#contact .contact {
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 25px;
}

#contact .contact-items {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  width: 150%;
}

#contact .contact-item {
  flex: 1;
  max-width: 320px;
  min-width: 260px;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  background-color: #f5f5f5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease box-shadow;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#contact .icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

#contact .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#contact .contact-info h1 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 5px;
}

#contact .contact-info h2 {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 700;
}

.info-contact {
  text-align: center;
  margin: 0 auto;
  display: block;
  max-width: 600px;
}

/* ========== Responsive (mobile) ========== */
@media (max-width: 768px) {
  #contact .contact-items {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 3rem;
  }

  #contact .contact-item {
    width: 90%;
    max-width: 400px;
  }

  #contact .icon {
    width: 70px;
    height: 70px;
  }
}


/* Get a Quote Section */
.get-quote-section {
  width: 100%;
  padding: 40px 20px;
  margin: 10px 0;
  margin-top: 10px;
  background: linear-gradient(to right, #00a8e8, #f5f5f5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

/* Wrapper for image + button */
.get-quote-btn-wrapper {
  text-align: center;
}

/* Down arrow image styling */
.get-quote-btn-wrapper img {
  display: block;
  margin: 0 auto 20px auto; /* center + space below */
  width: 80px;              /* smaller, normal size */
  height: auto;             /* keep aspect ratio */
  opacity: 0.9;
}

/* Button styling */
.get-quote-btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: #007fc2;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.get-quote-btn:hover {
  background: #005f95;
  color: #fff;
  transform: translateY(-2px);
}


/*End contact Section */

/* Footer */
#footer {
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
	width: 100%;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 30px;
}
#footer .social-item {
	height: 50px;
	width: 50px;
	margin: 0 5px;
}
#footer .social-item img {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}

#footer .social-item:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
#footer p {
	color: white;
	font-size: 1.3rem;
	text-align: center;
}

/* End Footer */

/* Keyframes */
@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: #00a8e8;
		font-weight: 500;
	}
}
/* End Keyframes */

/* Media Query For Tablet */

@media only screen and (max-width: 1573px) {
	#contact .contact-items {
		width: 150%;
	}
}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
    #projects .project-item:hover .project-img img {
        transform: none;
    }
    .page-loader, .spinner {
        display: none;
    }
    p {
        padding: 3px;
    }
    .explanation {
        padding: 20px;
    }
    #services .service-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 50px;
        width: 390px;
    }
    #projects {
        padding: 10px;
    }
    #projects .project-item {
        flex-direction: column;
        height: auto;
        width: 90%;
        margin: 20px auto;
        padding: 10px;
    }
    #projects .project-item:nth-child(even) {
        flex-direction: column;
    }
    #projects .project-img {
        height: auto;
        width: 100%;
    }
    #projects .project-img img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    #projects .project-info {
        height: auto;
        padding: 20px;
    }
    #hero .hero {
        display: none;
        padding: 0 0px;
    }
    #header .nav-bar {
        background-color: rgb(41, 50, 60);
        padding: 4px 10px;
    }
    #footer .social-item img {
        filter: none;
    }
}

/* Desktop Styles */
@media only screen and (min-width: 769px) {
    .cta {
        font-size: 2.5rem;
        padding: 20px 60px;
    }
    h1.section-title {
        font-size: 5rem;
    }
    #hero h1 {
        font-size: 7rem;
    }
    .translate-footer {
        display: none;
    }
    .copyright-mobile {
        display: none;
    }
    /* Services Section */
    #services .service-bottom .service-item {
        flex-basis: 45%;
        margin: 2.5%;
    }
    /* Project */
    #projects .project-item {
        flex-direction: row;
    }
    #projects .project-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    #projects .project-item {
        height: 400px;
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
    #projects .all-projects .project-info {
        height: 100%;
    }
    #projects .all-projects .project-img {
        height: 100%;
    }
    /* About */
    #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 #00a8e8; */
    }
    #about .col-right {
        text-align: left;
        padding: 30px;
    }
    #about .col-right h1 {
        text-align: left;
    }
}
/* End Media Query For Tablet */

@media only screen and (max-width: 1200px) {
		#contact .contact-items {
		display: inline;
	}
	#contact .contact-item {
		margin-bottom: 3.5rem;
		margin-top: 3.5rem;
		margin-left: auto;
		margin-right: auto;
		width: 30rem;
	}
	#header .nav-list ul.active {
		background: rgba(39, 39, 39, 0.67);
		border-radius: 0px 0px 16px 16px;
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(13.4px);
		-webkit-backdrop-filter: blur(13.4px);
	}
	#header .nav-list ul {
		box-shadow: 0rem 30rem 0rem 0rem rgba(0, 0, 0, 0.5);
		background: rgba(39, 39, 39, 0.67);
		border-radius: 0px 0px 16px 16px;
		box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
		backdrop-filter: blur(13.4px);
		-webkit-backdrop-filter: blur(13.4px);
		}
		#header .nav-bar {
			max-width: 100%;
		}
	#remove {
		display: none;
	}
}


/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* Header */
	#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.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End Header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}

}

/* End  Media Query For Desktop */

.void {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Contact Info */

.contact-details {
	color: #00a8e8;
	font-weight: bold;
	transition: 0.2s;
}
.contact-details:hover {
	color: #007ea7;
	font-weight: normal;
}

/* End Contact Info */

/* Type Animation */

.line-1{
    position: relative;
    top: 50%;  
    width: 24em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%);    
}

/* Animation */

.intro {
	font-size: 4.5em;
	font-weight: 500;
	color: rgb(255, 255, 255);
	letter-spacing: 5px;
	cursor: default;
	text-transform: uppercase;
	transition: 0.5s;
  }
  
  :root {
    --bg-color: transparent;
    --text-color: #00a8e8;
}

  .container-animation {
    min-width: 400px;
    height: 60px;
    align-items: center;
    box-sizing: border-box;
    background: var(--bg-color);
    padding: 0px;
}

.typewriter {
    font-family: 'Montserrat', sans-serif;
    font-size: 4em;
	letter-spacing: 1px;
    color: #fff;
    position: relative;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
}

.typewriter span {
    color: var(--text-color);
    text-transform: uppercase;
    border-right: solid var(--text-color) 5px; 
    animation: cursor 1s ease-in-out infinite;
}

@keyframes cursor {
    from { border-color: var(--text-color); }
    to { border-color: transparent; }
}

@media (max-width: 576px) {
    .typewriter { font-size: 24px; }
}
@media (max-width: 768px) {
    .typewriter { font-size: 36px; }
}

/* End Type Animation */

/* Translate */

.translate {
	float: right;
	margin-top: 15px;
	margin-right: 200px;
	width: 100px;
}

.translate {
	cursor: pointer;
	filter: grayscale(0.4);
	transition: 0.3s ease filter;
	padding: 4px;
  }
  
  .translate:hover {
	filter: grayscale(0);
  }

  @media only screen and (max-width: 768px) {
	.translate {
		float: none;
		width: 80px;
		display: block;
		margin-right: auto;
	}
	.read {
		color: #00a8e8;
	}
	.read:hover {
		color: #00a8e8;
		background-color: transparent;
	}
  }

  .translate-footer {
	float: right;
	margin-top: 15px;
	margin-right: auto;
	margin-left: auto;
	width: 100px;
}

.translate-footer {
	cursor: pointer;
	filter: grayscale(0.4);
	transition: 0.3s ease filter;
	padding: 4px;
  }
  
  .translate-footer:hover {
	filter: grayscale(0);
  }

  @media only screen and (max-width: 768px) {
	.translate-footer {
		float: none;
		width: 80px;
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	.copyright-dekstop {
		display: none;
	}
  }

/* End Translate */


/* Loader */

/* PRELOADER CSS */
.page-loader{
	width: 100%;
	height: 100vh;
	position: absolute;
	background: #272727;
	z-index: 1000;
}

/* SPINNER ANIMATION */
.spinner {
	position: relative;
	top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #00a8e8;

  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}

/* End Loader */


/* Scrollbar Styling */
/* ::-webkit-scrollbar {
    width: 10px;
}
 
::-webkit-scrollbar-track {
    background-color: rgb(41, 50, 60);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00a8e8 0%, #007ea7 100%);
}

@media screen and (max-width: 768px) {
	::-webkit-scrollbar {
	  display: none;
	}
  } */
  

/* #install-btn {
	cursor: pointer;
}

#yes-btn, #no-btn {
	font-weight: bold;
}

.popup-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9999;
  }
  
  .popup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 20px;
	border-radius: 4px;
	text-align: center;
	width: 35rem;
  }
  
  .popup p {
	margin-top: 0;
  }
  
  .popup button {
	margin: 10px;
	padding: 5px 10px;
	border: none;
	border-radius: 5px;
	background-color: #00a8e8;
	color: white;
	cursor: pointer;
	transition: 0.5s;
	width: 6rem;
	height: 3.5rem;
  }
  
  .popup button:hover {
	background-color: #007ea7;
  } */

  /* Alert */

  .attention {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: black;
	font-size: 16px;
	margin-top: 50px;
  }
  
  .attention p {
	margin: 0;
	padding-left: 10px;
	text-align: center;
  }

  .logo {
	margin-top: 50px;
	width: 200px;
  }

  .alert {
	width: 32px;
  }

  @media (max-width: 767px) {
	.attention {
	  margin-top: 100px;
	  flex-direction: column;
	  padding: 5px;
	}
	.alert {
		margin-bottom: 10px;
	  }
  }

  #alert-message {
	margin-top: -40px;
	margin-bottom: 5px;
	background-color: #db3c3c;
	color: white;
	padding: 10px;
	border-radius: 5px;
	font-size: 12px;
	display: none;
	margin-left: auto;
	margin-right: auto;
	width: 40rem;
	text-align: center;
  }

  @media screen and (max-width: 768px) {
	#alert-message {
	  font-size: 14px;
	  width: 80%;
	}
  }
  
  @media screen and (max-width: 480px) {
	#alert-message {
	  font-size: 12px;
	  width: 90%;
	}
  }

  /* Dark Mode */

/* Scoped container */
.theme-toggle {
  display: inline-block;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Hidden checkbox */
.theme-toggle__checkbox {
  display: none;
}

/* Scoped icons */
.theme-toggle__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  z-index: 1;
  pointer-events: none;
}

.theme-toggle__icon--light {
  left: 8px;
  color: #f39c12;
}

.theme-toggle__icon--dark {
  right: 8px;
  color: #4b6cb7;
}

/* Toggle ball */
.theme-toggle__ball {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: transform 0.3s ease;
  z-index: 2;
}

/* Move ball when checked */
.theme-toggle__checkbox:checked + .theme-toggle .theme-toggle__ball {
  transform: translateX(30px);
}

/* Change background when checked */
.theme-toggle__checkbox:checked + .theme-toggle {
  background: #4b6cb7;
}

  /* ---- ---- Light Mode ---- ---- */
.light {
  background-color: #fafafa;
}

.light .theme-toggle {
  background: linear-gradient(145deg, #e1e1e1, #fff);
  box-shadow: 3px 3px 4px #e6e6e6, -3px -3px 4px #fff;
}

.light .theme-toggle__icon--light {
  color: #f5af19;
}

.light .theme-toggle__icon--dark {
  color: #4e30fa;
}

.light .theme-toggle__ball {
  background-color: #282828;
}


/* ---- ---- Dark Mode ---- ---- */
.dark {
  background-color: #282828;
}

.dark p {
  color: white;
}

.dark .about-box p,
.dark .popup p {
  color: black;
}

.dark .section-title,
.dark .title,
.dark .other,
.dark .change,
.dark #about .col-right .cta {
  color: white;
}

.dark button.back-to-top.show {
  background-color: white;
}

.dark .about-box:hover {
  box-shadow: 0px 5px 15px 0 rgb(204, 195, 195);
}

.dark #contact .contact-item {
  background-color: #f5f5f5;
}

.dark #contact .contact-item:hover {
  box-shadow: 0px 5px 15px 0 rgb(204, 195, 195);
}

.dark .get-quote-section {
  background: linear-gradient(to right, #00a8e8, #282828);
}

.dark .theme-toggle {
  background: #282828;
}

.dark .theme-toggle__ball {
  background-color: #fafafa;
  transition: 0.3s;
  transform: translateX(30px); /* Match ball movement from earlier */
}

.dark .feedback-input,
.dark .mode {
  color: gray;
}

  @media only screen and (max-width: 999px) {
	.toggle {
	  display: flex !important;
	}
  }
  
  @media (max-width: 1350px) {
	.toggle {
	  display: none;
	}
  }

  @media (max-width: 420px) {
	.toggle {
		height: 40px;
		width: 90px;
	}

	.ball {
		display: none;
	}
	
	.brand h1 {
	  font-size: 2.5rem;
	}
  }
  
  

  /* Scroll To Top Button */

  button.back-to-top {
	margin: 0 !important;
	padding: 0 !important;
	background: #282828;
	height: 0;
	width: 0;
	overflow: hidden;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	color: transparent;
	clear: both;
	visibility: hidden;
	position: fixed;
	cursor: pointer;
	display: block;
	border: none;
	left: 50px;
	bottom: 40px;
	font-size: 0;
	outline: 0 !important;
	z-index: 99;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
  }
  
  button.back-to-top.show {
	display: block;
	background: #282828;
	font-size: 25px;
	left: 25px;
	bottom: 20px;
	height: 50px;
	width: 50px;
	visibility: visible;
	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  }
  
  button.back-to-top.show:active {
	box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
  }

  /* @media (max-width: 767px) {
	.back-to-top {
	  display: none !important;
	}
  } */

  /* @media (max-width: 455px) {
	.hours-title, .working-hours {
	  display: none;
	}
  } */

  /* Work Hours */

  /* .working-hours {
	margin-bottom: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
  }

  .working-hours-mobile {
	display: none;
	text-align: center;
	margin-bottom: 50px;
  }
  
  @media (max-width: 455px) {
	.working-hours-mobile {
	  display: block;
	}
  }

  @media screen and (max-width: 600px) {
	.working-hours {
	  font-size: 12px;
	}
  } */
  
  /* End Work Hours */

  /* Form container */
form {
  max-width: 700px;
  margin: 50px auto;
  padding: 5px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

.feedback-input {
  color: black;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  line-height: 22px;
  background-color: transparent;
  border: 2px solid #00a8e8;
  transition: border-color 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  outline: 0;
  height: 50px;
}

/* Focus state */
.feedback-input:focus {
  border-color: #007ea7;
}

/* Textarea larger */
textarea.feedback-input {
  height: 150px;
  resize: vertical;
}

/* File input reset */
input[type="file"].feedback-input {
  padding: 8px;
  height: auto;
}

/* Submit button */
[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  width: 100%;
  background: #00a8e8;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  color: white;
  font-size: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: background 0.3s;
  margin-top: 10px;
  font-weight: 700;
}

[type="submit"]:hover {
  background: #007ea7;
}

/* Status message */
#my-form-status {
  color: white;
  background-color: #5fc05f;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  display: none;
  margin-top: 15px;
}

/* Hidden honeypot field */
.d-none {
  display: none !important;
}

/* Responsive: stack columns on small screens */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}


/* TEST ENVOIRMENT 00 */

/* Lightbox overlay */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

/* Lightbox image */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #ccc;
}
