@charset utf-8;

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.6;
	color: #333;
	scroll-behavior: smooth;
}

section {
	min-height: 100vh;
	padding: 1.8rem 0.6rem 1.2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#home {
	background: #fff;
	color: #fff;
	position: relative;
	overflow: hidden;
	padding: 4rem 2.5rem;
}

#home .bg {
	animation: slide 3s ease-in-out infinite alternate;
	background-image: linear-gradient(-60deg, #003235 50%, #025d4e 50%);
	bottom: 0;
	left: -50%;
	opacity: 0.5;
	position: absolute;
	right: -50%;
	top: 0;
	z-index: 0;
}

#home .bg2 {
	animation-direction: alternate-reverse;
	animation-duration: 4s;
}

#home .bg3 {
	animation-duration: 5s;
}

@keyframes slide {
	0% {
		transform: translateX(-25%);
	}

	100% {
		transform: translateX(25%);
	}
}

.home-content {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-direction: column;
}

.home-text {
	flex: 1;
	text-align: center;
	width: 100%;
}

.home-image {
	flex-shrink: 0;
	order: -1;
	margin-bottom: 0.375rem;
}

#home h1 {
	font-size: 3.2rem;
	margin-bottom: 1.0rem;
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

#home p {
	font-size: 1.3rem;
	opacity: 1;
	color: #fff;
	line-height: 1.6;
	max-width: 600px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

#about {
	background: #f8f9fa;
}

.content-box {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.content-box p {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.content-box a {
    color: #025d4e;
}
.content-box a:visited {
    text-decoration: none;
    color: #025d4e;
}
.content-box a:hover {
    text-decoration: nonw;
    color: #025d4e;
}
.content-box a:active {
    text-decoration: none;
    color: #025d4e;
}

#brands {
	background: white;
	overflow: hidden;
}

.carousel-container {
	width: 100%;
	overflow: hidden;
	padding: 2rem 0;
}

.carousel-track {
	display: flex;
	gap: 3rem;
	animation: scroll 70s linear infinite;
	width: max-content;
}

.carousel-track:hover {
	animation-play-state: paused;
}

@keyframes scroll {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(calc(-150px * 22 - 3rem * 22));
    }
}

.brand-logo {
	border-radius: 50%;
	width: 150px;
	height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.brand-logo:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#skills {
	background: #f8f9fa;
}

.tabs {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.tab-button {
	background: transparent;
	border: 2px solid #025d4e;
	color: #025d4e;
	padding: 0.75rem 2rem;
	border-radius: 25px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 1rem;
}

.tab-button:hover {
	background: #025d4e;
	color: white;
}

.tab-button.active {
	background: #025d4e;
	color: white;
}

.tab-content {
	display: none;
	opacity: 0;
	transition: opacity 0.3s;
}

.tab-content.active {
	display: block;
	opacity: 1;
}

.skills-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	max-width: 600px;
	margin-top: 2rem;
	margin-bottom: 25px;
}

.skill-tag {
	background: #025d4e;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 25px;
	font-weight: 500;
	font-size: 13px;
	position: relative;
	border: 3px solid transparent;
	background-clip: padding-box;
}

.skill-tag::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border-radius: 25px;
	background: linear-gradient(45deg, #003235, #025d4e, #003235, #025d4e, #003235);
	background-size: 300% 300%;
	z-index: -1;
	animation: gradientBorder 3s ease infinite;
}

@keyframes gradientBorder {

	0%,
	100% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}
}

#feedback {
	background: white;
}

.testimonial-container {
	max-width: 660px;
	margin: 0 auto;
	position: relative;
	padding: 3rem 2rem;
}

.testimonial-slider {
	position: relative;
	min-height: 200px;
}

.testimonial-slide {
	display: none;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
	display: block;
	opacity: 1;
}

.testimonial-text {
	font-size: 1.3rem;
	line-height: 2.0;
	color: #333;
	font-style: italic;
	text-align: center;
}

.testimonial-dots {
	text-align: center;
	margin-top: 2rem;
}

.dot {
	height: 12px;
	width: 12px;
	margin: 0 5px;
	background-color: #ddd;
	border-radius: 50%;
	display: inline-block;
	cursor: pointer;
	transition: background-color 0.3s;
}

.dot.active,
.dot:hover {
	background-color: #025d4e;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #333;
}

.footer {
	background: #fff;
	padding: 2rem 2.5rem;
	border-top: 1px solid #e0e0e0;
	position: relative;
	overflow: hidden;
}

.footer .bg {
	animation: slide 4s ease-in-out infinite alternate;
	background-image: linear-gradient(-60deg, #003235 50%, #025d4e 50%);
	bottom: 0;
	left: -50%;
	opacity: 0.5;
	position: absolute;
	right: -50%;
	top: 0;
	z-index: 0;
}

.footer .bg2 {
	animation-direction: alternate-reverse;
	animation-duration: 5.33s;
}

.footer .bg3 {
	animation-duration: 6.67s;
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 1;
	flex-wrap: wrap;
}

.footer-name {
	font-weight: 600;
	font-size: 0.9rem;
	color: #fff;
}

.footer-links {
	display: flex;
	gap: 2rem;
	font-size: 0.9rem;
}

.footer-links a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer-links a:hover {
	opacity: 0.7;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column-reverse;
		gap: 1rem;
	}

	.footer-name {
		text-align: center;
	}

	.footer-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.testimonial-container {
		padding: 2rem 1rem;
	}

	.testimonial-text {
		font-size: 1.2rem;
	}

	.home-content {
		flex-direction: column;
		text-align: center;
	}

	.home-text {
		text-align: center;
	}

	#home h1 {
		font-size: 2.5rem;
	}

	#home p {
		font-size: 1.2rem;
	}

	h2 {
		font-size: 2rem;
	}

	section {
		padding: 1.5rem 0.45rem 0.9rem;
	}
}