* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      "Helvetica Neue", Arial, sans-serif;
  }
}

html {
  scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.brand-logo img {
  width: 300px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 30px; /* Rounded buttons */
  background-color: transparent; /* Transparent by default */
  border: 2px solid #00ffcc; /* Border to match button theme */
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.nav-links li a:hover {
  background-color: #00ffcc; /* Background on hover */
  color: #000; /* Text color change on hover */
}

/* Landing Section Styles */
.landing-container {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 1.5s ease-in-out;
}

.content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  color: #00ffcc;
}

.content p {
  font-size: 24px;
  margin-bottom: 40px;
  color: #ccc;
}

.btn-main {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  background-color: #00ffcc;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s ease;
}

.btn-main:hover {
  background-color: #009688;
  box-shadow: 0 8px 20px rgba(0, 255, 204, 0.6);
}

/* Bottom Buttons Section */
.bottom-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: row; /* Align buttons in a row */
  gap: 15px; /* Add spacing between buttons */
  z-index: 1000;
}

.bottom-button {
  text-decoration: none;
  color: #00ffcc;
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s, text-decoration 0.3s; /* Smooth transitions */
}

.bottom-button:hover {
  color: white;
  text-decoration: underline; /* Add underline on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 30px;
  }

  .brand-logo img {
    width: 120px;
  }

  .content h1 {
    font-size: 40px;
  }

  .content p {
    font-size: 20px;
  }

  .btn-main {
    font-size: 16px;
    padding: 10px 25px;
  }

  .nav-links li a {
    padding: 8px 16px; /* Adjust button size for mobile */
  }
}

/* Fade-in Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
