:root {
  --container-width: 1200px;
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212;
  color: #eaeaea;
}

header {
  background: #1f1f1f;
  color: #fff;
  padding: 0px 20px;
}

/* header {
  position: fixed;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  background: #1f1f1f;
  z-index: 1000; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
} */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  height: 70px;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.logo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.logo-text {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.logo-title {
  font-size: 18px;
  font-weight: 600;
}

.logo-sub-title {
  font-size: 12px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-button {
  text-decoration: none;
  color: #bbb;
  font-size: 1.0em;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.nav-button:hover {
  color: white;
}

.get-started {
  background: #FF5722; /* #695CFE;*/
  color: white;
  font-weight: bold;
  padding: 10px 20px;
}

.get-started:hover {
  background: #e64a19; /* #574de8; */
}

/* #hero {
  text-align: center;
  background: #333;
  color: #fff;
  padding: 80px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  border-radius: 8px;
} */

#hero {
  text-align: center;
  color: #fff;
  padding: 80px 20px;
  max-width: var(--container-width);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Thin border */
  background: transparent; /* Keep background transparent */
  position: relative; /* Needed for pseudo-elements */
  overflow: hidden; /* Ensures the glow effect doesn’t overflow */
}

/* Blurred glowing effect */
#hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.4), transparent 70%);
  transform: translateX(-50%);
  filter: blur(50px);
  z-index: -1; /* Places it behind the content */
  opacity: 0.6;
}

#hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-button {
  padding: 15px 30px;
  background: #FF5722;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: #e64a19;
}

#features {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  max-width: var(--container-width);
  background: transparent;
  overflow: hidden;
}

/* More pronounced radial glow */
#features::before {
  content: "";
  position: absolute;
  top: 0%; /* Centered instead of -20% */
  left: 50%;
  width: 300px; /* Make it larger for better visibility */
  height: 400px;
  background: radial-gradient(circle, rgb(167, 36, 255, 0.3), transparent 80%);
  transform: translateX(-50%);
  filter: blur(50px); /* Increased blur for a softer glow */
  z-index: -1; /* Ensures it's behind content */
  opacity: 0.6;
}

#features h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.feature {
  margin-bottom: 40px;
}

.feature h3 {
  font-size: 1.8em;
  color: #FF5722;
  margin-bottom: 10px;
}

#customers {
  text-align: center;
  padding: 60px 20px;
  background: #1f1f1f;
}

#customers h2 {
  font-size: 2.5em;
  color: #FF5722;
  margin-bottom: 10px;
}

#customers .sub-heading {
  font-size: 1.2em;
  color: #bbb;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(255, 87, 34, 0.3);
}

.feature-box h3 {
  font-size: 1.5em;
  margin: 15px 0;
  color: #fff;
}

.feature-box p {
  font-size: 1em;
  color: #bbb;
}

.icon {
  font-size: 2em;
  color: #FF5722;
  margin-bottom: 10px;
}

.logos img {
  max-width: 150px;
  margin: 20px;
}

#pricing {
  background: #121212;
  text-align: center;
  padding: 60px 20px;
}

#pricing h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

#pricing p {
  font-size: 1.2em;
  margin-bottom: 30px; /* Space between text and button */
}

footer {
  text-align: center;
  background: #1f1f1f;
  color: #bbb;
  padding: 10px 0; /* Reduced padding to make it shorter */
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 5px; /* Reduce spacing above links */
  padding: 0;
}

footer ul li {
  margin: 0 15px; /* Slightly reduce spacing between items */
}

footer p {
  margin-bottom: 5px; /* Reduce space below copyright text */
  font-size: 0.9em; /* Optional: Make text slightly smaller */
}

footer ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.9em; /* Optional: Reduce font size slightly */
}

footer ul li a:hover {
  color: #FF5722;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

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

.logo-text {
  display: inline-block;
  font-size: 13.6px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
}

.logo-title {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 600;
}

.logo-sub-title {
  font-size: 12px;
  margin-top: -2px;
  display: block;
}

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

.screenshot-container img {
  width: 100%; 
  height: auto; 
  display: block; 
  border-radius: 8px; 
}

section {
  max-width: var(--container-width);
  margin: 40px auto;
  padding: 60px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-radius: 0px; 
  background: transparent; 
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 250px;
  height: 250px;
  background: 
  linear-gradient(135deg, #1e1e1e 0%, #930fff 35%, rgba(18, 18, 18, 0) 20%);
  /* background: radial-gradient(circle, rgba(255, 87, 34, 0.2), transparent 70%); */
  transform: translateX(-50%);
  filter: blur(50px);
  z-index: -1;
  opacity: 0.6;
}

@media (max-width: 1400px) {
  :root {
    --container-width: 90%; /* Adjusts width for smaller screens */
  }
}

@media (max-width: 768px) {
  :root {
    --container-width: 95%; /* Make it almost full width on mobile */
  }
}
