/* Base Styles */
:root {
	--primary-color: #d4af37;
	--secondary-color: #333;
	--accent-color: #f8f8f8;
	--text-color: #333;
	--text-light: #777;
	--text-white: #fff;
	--bg-light: #f8f8f8;
	--bg-dark: #222;
	--transition: all 0.3s ease;
	--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	--border-radius: 5px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	/* font-family: "Montserrat", sans-serif; */
	font-family: "Poppins", sans-serif !important;
	line-height: 1.6;
	color: var(--text-color);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 15px;
}

p {
	margin-bottom: 15px;
}

a {
	text-decoration: none;
	color: var(--text-color);
	transition: var(--transition);
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 100px 0;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 30px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border: none;
	border-radius: var(--border-radius);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: var(--transition);
	font-size: 14px;
	gap: 10px;
}

.btn:hover {
	background-color: var(--secondary-color);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
	color: white;
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: var(--text-white);
}

.btn-light {
	background-color: var(--text-white);
	color: var(--primary-color);
}

.btn-light:hover {
	background-color: var(--primary-color);
	color: var(--text-white);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 36px;
	color: var(--secondary-color);
	position: relative;
	display: inline-block;
}

.separator {
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 15px auto;
}

.section-header p {
	font-size: 18px;
	color: var(--text-light);
}

/* Preloader */
.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-light);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.loader {
	text-align: center;
}

.loader svg {
	width: 100px;
	height: 100px;
}

#loader-circle {
	fill: none;
	stroke: var(--primary-color);
	stroke-width: 4;
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
	animation: dash 2s linear infinite;
}

@keyframes dash {
	0% {
		stroke-dashoffset: 200;
	}
	50% {
		stroke-dashoffset: 0;
	}
	100% {
		stroke-dashoffset: -200;
	}
}

.loader-text {
	margin-top: 20px;
	font-size: 24px;
	color: var(--primary-color);
	letter-spacing: 2px;
}

/* Header */
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	padding: 20px 0;
	z-index: 1000;
	transition: var(--transition);
}

#header.sticky {
	background-color: var(--bg-light);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 15px 0;
}

#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: flex;
	align-items: center;
}

.logo a {
	display: flex;
	align-items: center;
}

.logo img {
	height: 50px;
	margin-right: 15px;
}

.logo-text h1 {
	font-size: 24px;
	margin-bottom: 0;
	color: var(--primary-color);
}

.logo-text p {
	font-size: 12px;
	margin-bottom: 0;
	color: var(--text-white);
}
#header.sticky .logo-text p {
	font-size: 12px;
	margin-bottom: 0;
	color: var(--text-light);
}

.nav-menu {
	display: flex;
}

.nav-menu li {
	margin-left: 30px;
	position: relative;
}

.nav-menu li a {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 0;
	position: relative;
	color: var(--accent-color);
}

#header.sticky .nav-menu li a {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 0;
	position: relative;
	color: var(--text-color);
}
.nav-menu li a:hover,
.nav-menu li a.active {
	color: var(--primary-color);
}

.nav-menu li a:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.nav-menu li a:hover:after,
.nav-menu li a.active:after {
	width: 100%;
}

.mobile-menu-btn {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--primary-color);
}

.mobile-menu-btn.active i:before {
	content: "\f00d";
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding-top: 80px;
}

.hero-content {
	text-align: center;
	color: var(--text-white);
	max-width: 800px;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.hero-content h1 {
	font-size: 56px;
	margin-bottom: 20px;
	animation: fadeInUp 0.8s forwards;
	animation-delay: 0.3s;
	opacity: 0;
	transform: translateY(20px);
}

.hero-content h1 span {
	color: var(--primary-color);
	display: block;
}

.hero-content p {
	font-size: 20px;
	margin-bottom: 30px;
	animation: fadeInUp 0.8s forwards;
	animation-delay: 0.6s;
	opacity: 0;
	transform: translateY(20px);
}

.hero-buttons {
	animation: fadeInUp 0.8s forwards;
	animation-delay: 0.9s;
	opacity: 0;
	transform: translateY(20px);
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bg-dark);
	z-index: 1;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.7) 100%
	);
	z-index: 1;
}

.shape {
	position: absolute;
	background-color: var(--primary-color);
	opacity: 0.1;
	border-radius: 50%;
	z-index: 0;
}

.shape-1 {
	width: 300px;
	height: 300px;
	top: -100px;
	right: -100px;
	animation: float 8s ease-in-out infinite;
}

.shape-2 {
	width: 500px;
	height: 500px;
	bottom: -200px;
	left: -200px;
	animation: float 12s ease-in-out infinite;
}

.shape-3 {
	width: 200px;
	height: 200px;
	top: 50%;
	right: 10%;
	animation: float 10s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
	100% {
		transform: translateY(0) rotate(0deg);
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounce 2s infinite;
}

.scroll-indicator a {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--text-white);
	font-size: 14px;
	opacity: 0.8;
	transition: var(--transition);
}

.scroll-indicator a:hover {
	opacity: 1;
}

.scroll-indicator i {
	margin-top: 8px;
	font-size: 18px;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Services Section */
.services {
	background-color: var(--bg-light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
	gap: 30px;
}

.service-card {
	background-color: var(--text-white);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-position: top;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
	transform: scale(1.1);
}

.service-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.7) 0%,
		rgba(0, 0, 0, 0) 100%
	);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 20px;
	opacity: 0;
	transition: var(--transition);
}

.service-card:hover .service-overlay {
	opacity: 1;
}

.service-icon {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	transform: translateY(20px);
	transition: var(--transition);
}

.service-card:hover .service-icon {
	transform: translateY(0);
}

.service-content {
	padding: 30px;
}

.service-content h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--secondary-color);
}

.service-content p {
	color: var(--text-light);
	margin-bottom: 20px;
}

.service-features {
	margin-bottom: 25px;
}

.service-features li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.service-features li i {
	color: var(--primary-color);
	margin-right: 10px;
}

.service-btn {
	width: 100%;
	justify-content: space-between;
}

.service-btn i {
	transition: var(--transition);
}

.service-btn:hover i {
	transform: translateX(5px);
}

/* About Section */
.about-content {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}

.about-image {
	flex: 1;
	min-width: 300px;
	position: relative;
}

.about-image img {
	width: 100%;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow);
}

.experience-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 120px;
	height: 120px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	box-shadow: var(--shadow);
}

.experience-badge .years {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

.experience-badge .text {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.about-text {
	flex: 1;
	min-width: 300px;
}

.about-text h3 {
	font-size: 28px;
	color: var(--secondary-color);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.about-stats {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0;
}

.stat-item {
	flex: 1;
	min-width: 120px;
	text-align: center;
	margin-bottom: 20px;
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-light);
}

.about-values {
	margin-top: 30px;
}

.about-values h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 20px;
}

.value-item {
	text-align: center;
}

.value-icon {
	width: 50px;
	height: 50px;
	background-color: var(--bg-light);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 10px;
	font-size: 20px;
	transition: var(--transition);
}

.value-item:hover .value-icon {
	background-color: var(--primary-color);
	color: var(--text-white);
}

.value-text {
	font-weight: 600;
}

/* Testimonials Section */
.testimonials {
	background-color: var(--bg-dark);
	color: var(--text-white);
}

.testimonials .section-header h2 {
	color: var(--text-white);
}

.testimonials .section-header p {
	color: rgba(255, 255, 255, 0.7);
}

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

.testimonial-track {
	display: flex;
	transition: transform 0.5s ease;
}

.testimonial-slide {
	min-width: 100%;
	padding: 0 20px;
}

.testimonial-content {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: var(--border-radius);
	padding: 30px;
}

.testimonial-quote {
	position: relative;
	padding-left: 40px;
	margin-bottom: 20px;
}

.testimonial-quote i {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 24px;
	color: var(--primary-color);
}

.testimonial-quote p {
	font-size: 16px;
	line-height: 1.8;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-info h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.author-info p {
	font-size: 14px;
	color: var(--primary-color);
	margin-bottom: 0;
}

.testimonial-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
}

.testimonial-dots {
	display: flex;
	margin-right: 30px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.3);
	margin: 0 5px;
	cursor: pointer;
	transition: var(--transition);
}

.dot.active {
	background-color: var(--primary-color);
}

.testimonial-arrows {
	display: flex;
}

.arrow {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	color: var(--text-white);
	font-size: 16px;
	cursor: pointer;
	margin: 0 5px;
	transition: var(--transition);
}

.arrow:hover {
	background-color: var(--primary-color);
}

/* CTA Section */
.cta {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
		url("https://placehold.co/1920x1080/d4af37/333333?text=Create+Memorable+Moments");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: var(--text-white);
	text-align: center;
	padding: 100px 0;
}

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

.cta-content h2 {
	font-size: 36px;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

/* Contact Section */
.contact-content {
	display: flex;
	flex-wrap: wrap;
}

.contact-info {
	flex: 1;
	padding-right: 30px;
	min-width: 300px;
}

.contact-form {
	flex: 1;
	padding-left: 30px;
	min-width: 300px;
}

.contact-item {
	display: flex;
	margin-bottom: 30px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-text h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-text p {
	color: var(--text-light);
	margin-bottom: 0;
}

.contact-social {
	margin-top: 40px;
}

.contact-social h3 {
	font-size: 18px;
	margin-bottom: 15px;
}

.social-icons {
	display: flex;
}

.social-icon {
	width: 40px;
	height: 40px;
	background-color: var(--bg-light);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	transition: var(--transition);
}

.social-icon:hover {
	background-color: var(--primary-color);
	color: var(--text-white);
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-size: 14px;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary-color);
	outline: none;
}

.form-group textarea {
	height: 150px;
	resize: vertical;
}

.btn-submit {
	width: 100%;
}

/* Footer */
.footer {
	background-color: var(--bg-dark);
	color: var(--text-white);
	padding: 80px 0 30px;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer-logo {
	flex: 1;
	min-width: 250px;
	margin-bottom: 30px;
}

.footer-logo img {
	height: 50px;
	margin-bottom: 15px;
}

.footer-logo h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: var(--primary-color);
}

.footer-logo p {
	color: rgba(255, 255, 255, 0.7);
}

.footer-links,
.footer-services,
.footer-newsletter {
	flex: 1;
	min-width: 200px;
	margin-bottom: 30px;
}

.footer h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: var(--text-white);
}

.footer ul li {
	margin-bottom: 10px;
}

.footer ul li a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}

.footer ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.newsletter-form {
	position: relative;
	margin-top: 20px;
}

.newsletter-form input {
	width: 100%;
	padding: 12px 15px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--border-radius);
	color: var(--text-white);
}

.newsletter-form input:focus {
	outline: none;
	border-color: var(--primary-color);
}

.newsletter-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	padding: 0 15px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border: none;
	border-radius: 0 var(--border-radius) var(--border-radius) 0;
	cursor: pointer;
	transition: var(--transition);
}

.newsletter-form button:hover {
	background-color: var(--secondary-color);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0;
}

.footer-social {
	display: flex;
}

.footer-social .social-icon {
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--text-white);
}

.footer-social .social-icon:hover {
	background-color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}

.back-to-top.active {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: var(--secondary-color);
}

/* Animation Classes */
[data-aos] {
	opacity: 0;
	transition: all 1s ease;
}

[data-aos="fade-up"] {
	transform: translateY(50px);
}

[data-aos="fade-right"] {
	transform: translateX(-50px);
}

[data-aos="fade-left"] {
	transform: translateX(50px);
}

[data-aos].aos-animate {
	opacity: 1;
	transform: translateX(0) translateY(0);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
	.hero-content h1 {
		font-size: 42px;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image {
		margin-bottom: 30px;
	}

	.contact-content {
		flex-direction: column;
	}

	.contact-info {
		padding-right: 0;
		margin-bottom: 50px;
	}

	.contact-form {
		padding-left: 0;
	}
}

@media screen and (max-width: 768px) {
	section {
		padding: 60px 0;
	}

	.section-header {
		margin-bottom: 40px;
	}

	.section-header h2 {
		font-size: 28px;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		right: -300px;
		width: 280px;
		height: 100vh;
		background-color: var(--bg-light);
		flex-direction: column;
		padding: 80px 20px 30px;
		transition: var(--transition);
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
		z-index: 1001;
	}

	.nav-menu.active {
		right: 0;
	}

	.nav-menu li {
		margin: 0 0 15px;
	}

	.mobile-menu-btn {
		display: block;
		z-index: 1002;
	}

	.hero-content h1 {
		font-size: 36px;
	}

	.hero-content p {
		font-size: 18px;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.copyright {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 576px) {
	.hero-content h1 {
		font-size: 28px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.stat-item {
		min-width: 50%;
	}

	.experience-badge {
		width: 100px;
		height: 100px;
		bottom: -15px;
		right: -15px;
	}

	.experience-badge .years {
		font-size: 28px;
	}

	.experience-badge .text {
		font-size: 10px;
	}
}

#developerInfo {
	color: #f0b429;
}

#developerInfo:hover {
	color: #ffd980;
}

/* About 2 */
/* section h2,
section h4 {
	color: #212529;
}

.shadow-sm {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.rounded-4 {
	border-radius: 1.25rem;
} */

/* Benefits Section */
.coaching-benefits {
	background-color: var(--bg-light);
	padding: 80px 0;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.benefit-card {
	background-color: var(--text-white);
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
	width: 70px;
	height: 70px;
	background-color: var(--primary-color);
	color: var(--text-white);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	font-size: 28px;
}

.benefit-card h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.benefit-card p {
	color: var(--text-light);
}
