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

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9fb;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header & Navigation */
header {
  background: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

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

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

.logo img {
  height: 40px;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.25rem;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #0057ff;
}

nav a.cta {
  background-color: #0057ff;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 16px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

nav a.cta:hover {
  background-color: #003fcc;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #f3f6fb);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #4b4b4b;
}

.hero .cta {
  background-color: #0057ff;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
}

.hero .cta:hover {
  background-color: #003fcc;
}

/* Features Section */
.features {
  padding: 4rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Feature Row */
.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

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

.feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-text p {
  font-size: 1.05rem;
  color: #444;
}

.feature-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.feature-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}

footer p {
  margin: 0;
}

/* Scroll Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav {
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
  }

  nav ul {
	flex-direction: column;
	gap: 0.5rem;
  }

  .feature-row {
	flex-direction: column;
	text-align: center;
  }

  .feature-row.reverse {
	flex-direction: column;
  }

  .hero h2 {
	font-size: 2rem;
  }
}

/* Header Nav Layout */
.desktop-nav {
  display: flex;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.desktop-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.2s ease;
}

.desktop-nav a.cta {
  background-color: #0057ff;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 16px;
  transition: background-color 0.3s ease;
}

.desktop-nav a.cta:hover {
  background-color: #003fcc;
}

/* Mobile-only Elements */
/* Slide-in Menu (Mobile Only) */
.mobile-slide-menu {
  display: none;
}

.logo-group {
  display: flex;
  align-items: center;
  width: 100%;
}

.menu-toggle {
  font-size: 24px;
  background: none;
  border: none;
  color: black; /* Set icon color to black */
  cursor: pointer;
  display: none; /* Hidden by default */
  margin-left: auto; /* Push it to the far right */
}

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

  .desktop-nav {
	display: none; /* Optional: Hide desktop nav on small screens */
  }

  .mobile-slide-menu {
	display: flex;
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	height: 100vh;
	background: #fff;
	box-shadow: -2px 0 10px rgba(0,0,0,0.1);
	padding: 2rem 1.5rem;
	flex-direction: column;
	gap: 2rem;
	transition: right 0.3s ease-in-out;
	z-index: 1000;
  }

  .mobile-slide-menu.show {
	right: 0;
  }

  .mobile-slide-menu .close-menu {
	background: none;
	border: none;
	font-size: 2rem;
	align-self: flex-end;
	cursor: pointer;
  }

  .mobile-slide-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
  }

  .mobile-slide-menu a {
	text-decoration: none;
	font-size: 1.1rem;
	color: #1a1a1a;
  }

  .mobile-slide-menu a.cta {
	background-color: #0057ff;
	color: white;
	border-radius: 8px;
	font-weight: 600;
	padding: 10px 16px;
	display: inline-block;
	width: fit-content;
  }

  .mobile-slide-menu a.cta:hover {
	background-color: #003fcc;
  }
}

/* Hero Video */
.hero-video {
  margin-top: 2rem;
  width: 100%;
  max-width: 800px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}