html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: #1e1f21;
  color: #ffffff;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.container {
  width: 100%;
  box-sizing: border-box;
}

/* Navigation dots for sections */
.section-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem;
}

.section-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-nav-dot.active {
  background-color: #38c7e0;
  transform: scale(1.2);
}

/* Footer styles */
footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #151617;
  padding: 2rem;
  scroll-snap-align: start;
  text-align: center;
  position: relative;
}

.footer-content {
  max-width: 900px;
  width: 100%;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #38c7e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #151617;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(56, 199, 224, 0.3);
}

.copyright {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

h1,
h2,
h3 {
  color: #38c7e0;
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
  width: 100%;
}

header h1,
header p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Background dots */
.dot-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: visible;
  pointer-events: none;
  /* Ensure the dot background is contained within the header */
  position: absolute;
  bottom: 0;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background-color: #38c7e0;
  opacity: 0.3;
  animation-name: bubble;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}

@keyframes bubble {
  0% {
    transform: translateY(100%) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    transform: translateY(0) translateX(var(--drift, 0));
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100%) translateX(0);
    opacity: 0;
  }
}

.logo {
  max-width: 460px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  scroll-snap-align: start;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
  /* Add right margin for navigation dots */
  padding-right: 4rem;
}

.app-showcase {
  background-color: #2a2b2d;
  padding: 2rem;
  border-radius: 8px;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .app-content {
    flex-direction: column;
  }
}

.app-text {
  flex: 1;
}

.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-image img {
  max-height: 400px;
  object-fit: contain;
}

.founders {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.founders .person {
  flex: 1;
  text-align: center;
}

.contact-form {
  background-color: #2a2b2d;
  padding: 2rem;
  border-radius: 8px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 4px;
  background: #1e1f21;
  color: #fff;
  box-sizing: border-box;
  max-width: 100%;
  outline: none;
}

.form-status {
  margin-top: 1rem;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.form-status.success {
  color: #38c7e0;
}

.form-status.error {
  color: #ff6b6b;
}

button {
  background-color: #38c7e0;
  color: #1e1f21;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}

button:hover {
  opacity: 0.9;
}
