html,
body {
	overflow-x: hidden;
}

/* :root {
	--primary: #8b5cf6;
	--primary-light: #a78bfa;
	--primary-dark: #7c3aed;
	--background: #0f0f23;
	--background-light: #1a1a2e;
	--foreground: #e2e8f0;
	--foreground-muted: #94a3b8;
	--card: #16213e;
	--card-hover: #1e293b;
	--border: #334155;
	--shadow: rgba(0, 0, 0, 0.3);
	--gradient: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	--gradient-dark: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}
  
*/

:root {
	--primary: #7da5bd;
	--primary-light: #5e33a4;
	--primary-dark: #0b3948;
	--background: #0b132b;
	--background-light: #1a1a2e;
	--foreground: #e2e8f0;
	--foreground-muted: #94a3b8;
	--card: #1c2541;
	--card-hover: #141c36;
	--border: #334155;
	--shadow: rgba(0, 0, 0, 0.1);

	--gradient: linear-gradient(135deg, #1f4055 50%, #456273 100%);
	--gradient-dark: linear-gradient(
		135deg,
		#1c2541 0%,
		#0b132b 60%,
		#3a506b 100%
	);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat";
	/* font-optical-sizing: auto; */
	/* font-weight: <weight>; */
	font-style: normal;
}

body {
	/* font-family: "Inter", sans-serif; */
	line-height: 1.6;
	color: var(--foreground);
	background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	/* font-family: "Inter", sans-serif; */
	font-weight: 700;
	line-height: 1.2;
	color: var(--foreground);
}

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

/* Header */
.header {
	/* <CHANGE> Dark header with blur effect */
	background: rgba(15, 15, 35, 0.9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	/* font-family: "Inter", sans-serif; */
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	text-decoration: none;
	color: var(--foreground);
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: var(--primary);
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--foreground);
	cursor: pointer;
}

/* Hero Section */
.hero {
	/* <CHANGE> Dark gradient hero with purple accents */
	background: var(--gradient-dark);
	color: white;
	padding: 140px 0 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(139, 92, 246, 0.1) 0%,
		transparent 70%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.main-title-content {
	/* background-color: red; */
	display: flex;
	justify-content: space-between;
	gap: 10%;
}
.cta-button {
	/* <CHANGE> Purple gradient button */
	display: inline-block;
	background: var(--gradient);
	color: white;
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.cta-button:hover {
	transform: translateY(-2px);
}

/* Services Section */
.services {
	padding: 100px 0;
	background: var(--background);
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: var(--foreground);
	margin-bottom: 1rem;
}

.section-subtitle {
	/* <CHANGE> Added subtitle styling */
	text-align: center;
	font-size: 1.1rem;
	color: var(--foreground-muted);
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	/* <CHANGE> Dark cards with purple accents */
	background: var(--card);
	padding: 2.5rem;
	border-radius: 16px;
	text-align: left;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient);
}

.service-card:hover {
	transform: translateY(-5px);
	background: var(--card-hover);
	border-color: var(--primary);
}

.service-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1.5rem;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--foreground);
}

.service-card p {
	color: var(--foreground-muted);
	line-height: 1.6;
}

/* About Section */
.about {
	padding: 100px 0;
	background: var(--background-light);
}

.about-content {
	display: flex;
	/* grid-template-columns: 1fr 1fr; */
	justify-content: space-between;
	gap: 10%;
	align-items: center;
}

.about-text h2,
.main-title-div h2 {
	font-size: 2.5rem;
	color: var(--foreground);
	margin-bottom: 1.5rem;
}

.about-text p,
.main-title-div p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: var(--foreground-muted);
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.stat {
	text-align: center;
	padding: 1.5rem;
	background: var(--card);
	border-radius: 12px;
	border: 1px solid var(--border);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--primary);
	display: block;
}

.stat-label {
	font-size: 0.9rem;
	color: var(--foreground-muted);
	margin-top: 0.5rem;
}

/* Testimonials */
.testimonials {
	padding: 100px 0;
	background: var(--background);
}

.testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.testimonial {
	/* <CHANGE> Dark testimonial card */
	padding: 3rem;
	background: var(--card);
	border-radius: 16px;
	border: 1px solid var(--border);
}

.testimonial-text {
	font-size: 1.3rem;
	font-style: italic;
	margin-bottom: 2rem;
	color: var(--foreground);
	line-height: 1.6;
}

.testimonial-author {
	font-weight: 600;
	color: var(--primary);
	font-size: 1.1rem;
}

.testimonial-company {
	font-size: 0.9rem;
	color: var(--foreground-muted);
	margin-top: 0.5rem;
}

/* Contact Section */
.contact {
	padding: 100px 0;
	background: var(--background);
}

.contact-content {
	display: flex;
	justify-content: space-between;
	gap: 10%;
	/* flex-wrap: wrap; */
}

.contact-form {
	/* <CHANGE> Dark form styling */
	background: var(--card);
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--border);
	width: 70%;
	text-align: left;
}

.contact-form h3 {
	margin-bottom: 2rem;
	color: var(--foreground);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--foreground);
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 14px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 1rem;
	background: var(--background);
	color: var(--foreground);
	transition: border-color 0.3s ease;
}

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

.submit-btn {
	/* <CHANGE> Purple gradient submit button */
	background: var(--gradient);
	color: white;
	padding: 14px 32px;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-1px);
}

.contact-info h3 {
	color: var(--foreground);
	margin-bottom: 2rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: var(--card);
	border-radius: 8px;
	border: 1px solid var(--border);
}

.contact-item i {
	color: var(--primary);
	margin-right: 1rem;
	width: 20px;
	margin-top: 0.2rem;
}

.contact-item span {
	color: var(--foreground-muted);
}

/* Footer */
.footer {
	/* <CHANGE> Darker footer */
	background: #0a0a1a;
	color: var(--foreground-muted);
	padding: 60px 0 30px;
	border-top: 1px solid var(--border);
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
}

.footer-info {
	display: flex;
	justify-content: flex-end;
	gap: 8rem;
}

@media (max-width: 768px) {
	.footer-info {
		gap: auto;
		justify-content: space-between;
	}

  .contact-form {
    width: 100%;
  }
}

.footer-section h4 {
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.footer-section a {
	color: var(--foreground-muted);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	margin-bottom: 0.5rem;
}

.footer-section a:hover {
	color: var(--primary);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	color: var(--foreground-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}

	.nav-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(15, 15, 35, 0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 1rem;
		border-bottom: 1px solid var(--border);
	}

	.nav-menu.active {
		display: flex;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

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

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

	.services,
	.about,
	.contact,
	.testimonials {
		padding: 100px 0;
	}
}

/* <CHANGE> Added smooth animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.full-logo {
	display: block;
}

@media (max-width: 1024px) {
	/* .full-logo {
    display: none;
  } */
	.main-title-content {
		justify-content: center;
	}

	.about-image {
		display: none;
	}

	.main-title-content .main-title-div {
		text-align: center;
	}

	.about-content,
	.contact-content {
		/* grid-template-columns: 1fr; */
		/* gap: 2rem; */
		text-align: center;
		flex-wrap: wrap;
		/* align-items: center; */
		justify-content: center;
		gap: 4rem;
	}

	.contact-content h3 {
		text-align: center;
	}
}

#main-title {
	padding-top: 250px;
	padding-bottom: 250px;
}

.main-title-div {
	text-align: left;
}

#success-page {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

#success-page .container {
	text-align: center;
	color: #28a745;
	max-width: 500px;
	width: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#success-page .tick-icon i {
	font-size: 50px;
	color: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#success-page h1 {
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: var(--primary);
}

#success-page p {
	font-size: 16px;
	color: #ffffff;
}

@media (max-width: 500px) {
	#success-page p {
		font-size: 15px;
	}

	#success-page {
		height: 100dvh;
	}
}

#success-page .hero-btn {
	display: inline-block;
	margin-top: 20px;
	font-size: 16px;
	color: #ddd;
	text-decoration: none;
	border-bottom: 1px solid var(--primary);
}

#success-page .go-back:hover {
	color: #28a745;
}

#success-page .hero-btn {
	margin-top: 2rem;
}
