@keyframes backgroundShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #fff; /* White text for readability on dark background */
  background: radial-gradient(circle, #382E57, #1A1A1A, #000000);
  background-size: 100%; /* Large size to allow for the 'movement' */
  /* animation: backgroundShift 5s ease infinite; Adjust timing as needed */
  overflow-x: hidden; /* Prevent horizontal scroll */
  font-family: 'Plus Jakarta Sans', sans-serif;
}


/* Navbar Styles */
.navbar {
  margin-top: 2%;
  background-color: #262527; /* Dark background for navbar */
  padding: 1rem 1.5rem; /* Add padding to navbar */
  border-radius: 10px; /* Rounded edges */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
  width: 80%;
}


/* Google Sign-In Button */
.gsi-material-button {
  background-color: white; /* White background for Google sign-in */
  border: none;
  padding: 10px 20px;
  border-radius: 15px; /* Rounded corners */
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.gsi-material-button:hover {
  background-color: #f8f8f8; /* Light grey on hover */
}

.gsi-material-button .gsi-material-button-icon svg {
  height: 20px;
  margin-right: 8px;
}

.gsi-material-button .gsi-material-button-contents {
  color: black; /* Black text for Google sign-in */
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-nav {
      flex-direction: column;
      gap: 10px; /* Space between items when stacked */
  }
  
  .btn-pricing, .gsi-material-button {
      margin-right: 0;
      margin-bottom: 10px; /* Add spacing between buttons */
  }
}

.dotted-border {
  border: 2px dashed #606060;
  border-radius: 15px;
  padding: 30px;
}

.contact-border {
  /* padding: 30px; */
  font-size: 30px;
}

@media (max-width: 576px) {
  .contact-border {
      /* padding: 30px; */
      font-size: 23px;
  }
}
@media (max-width: 375px) {
  .contact-border {
      /* padding: 30px; */
      font-size: 18px;
  }
}

.normal-border {
  border: 2px solid #2D2D2D;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Space between each feature */
}

.gradient-text {
  font-size: 24px; /* Adjust size */
  font-weight: bold;
  background: linear-gradient(90deg, #A083F7, #561EFF); /* Text gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -2%;
}

p {
  color: #ffffff; /* White text for paragraph */
  font-size: 16px;
  margin-top: 10px;
}
