* {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
  overflow-x: hidden;   /* Prevent horizontal overflow (side scrolling) */
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Galada&family=Work+Sans:ital,wght@0,500;1,500&display=swap');
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
}

h1 {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-size: 77px;
  font-weight: 500;
  line-height: 87px;
  text-align: center;
  letter-spacing: -3.2px;
}

/* Mobile responsive h1 */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1.5px;
  }
}

.rainbow-h1 {
  font-family: "Galada"; /* Cursive font */
  font-weight: 500;
  font-style: italic;
  font-size: 92px; /* Increase font size for more space */
  line-height: 120px;
  background: linear-gradient(90deg, #444, #888, #777, #aaa, #999); /* Shades of green */
  background-size: 300% 300%;  /* Increased background size to cover more space */
  background-clip: text;
  letter-spacing: -3px;
  -webkit-background-clip: text;
  color: transparent;  /* Make text transparent so the gradient shows */
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite; /* Gradient animation */
}

/* Mobile responsive rainbow-h1 */
@media (max-width: 768px) {
  .rainbow-h1 {
    font-size: 58px;
    line-height: 72px;
    letter-spacing: -2px;
  }
}

@media (max-width: 480px) {
  .rainbow-h1 {
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -1.5px;
  }
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;  /* Adjust starting position */
  }
  100% {
    background-position: 0 0;  /* Ending position */
  }
}


p {
  text-align: center;
  margin-left: 70px;
  margin-right: 70px;
  margin-top: -55px;
  font-size: 21px;
  line-height: 28px;
  color: rgb(163, 163, 163);
}

/* Mobile responsive p */
@media (max-width: 768px) {
  p {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  p {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 22px;
  }
}

.part2 {
  text-align: center;
  margin-left: 70px;
  margin-right: 70px;
  margin-top: 120px;
  margin-bottom: 30px;
  font-size: 21px;
  line-height: 28px;
  color: rgb(163, 163, 163);
}

/* Mobile responsive part2 */
@media (max-width: 768px) {
  .part2 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .part2 {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 22px;
  }
}

.select-p {
  color:white;
  font-weight: 500;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 20px;
  gap: 15px;
  
  /* Black background with some transparency */
  background-color: rgba(14, 14, 14, 0.8); /* 60% opacity black background */

  /* Blur effect */
  backdrop-filter: blur(8px);  /* Blurs the background behind the element */
  
  /* Fixes the navbar to the top */
  position: fixed;              /* Fix the navbar to the top */
  top: 0;                       /* Align to the top of the page */
  left: 0;                      /* Align to the left of the page */
  right: 0;                     /* Align to the right of the page */
  z-index: 1000;                /* Ensure navbar is on top of other content */
}

/* Mobile responsive nav */
@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
    gap: 10px;
  }
}

main {
  padding: 1rem;
  padding-top: 100px; /* Add top padding to account for fixed navbar */
}

.section-1, .section-2, .section-3, .section-4, .section-5 {
  display: flex;               /* Enables flexbox */
  justify-content: center;     /* Centers content horizontally */
  align-items: center;         /* Centers content vertically */
  flex-direction: column;      /* Stacks children vertically (use 'row' if horizontal layout) */
  gap: 10px;                   /* Adds space between items */
  padding: 10px;               /* Adds padding inside the section */
  min-height: 100vh;           /* Full viewport height */
  width: 80%;                  /* Set width for the section (80% of the parent container) */
  margin: 0 auto;              /* Centers the section horizontally with auto margin */
}

/* Mobile responsive sections */
@media (max-width: 768px) {
  .section-1, .section-2, .section-3, .section-4, .section-5 {
    width: 90%;
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .section-1, .section-2, .section-3, .section-4, .section-5 {
    width: 95%;
    padding: 15px 5px;
  }
}

.get-started {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-decoration:none;
  display: inline-flex;                   /* Aligns items horizontally */
  justify-content: center;                /* Centers items horizontally */
  align-items: center;                    /* Centers items vertically */
  padding-left: 3rem;                   /* 24px padding */
  padding-right: 3rem;                  /* 24px padding */
  padding-top: 0.9rem;                   /* 12px padding */
  padding-bottom: 0.9rem;               /* 10px padding */
  border-radius: 9999px;                  /* Fully rounded border */
  background-color: #0e0e0e;              /* Dark background color */
  color: white;                           /* White text color */
  font-size: 20px;                        /* Base font size                      /* Medium font weight */
  min-height: 44px;                       /* Minimum height */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  border: 1px solid #222;  /* White border, 1px thick, solid line */
}

/* Mobile responsive get-started */
@media (max-width: 768px) {
  .get-started {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .get-started {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 16px;
  }
}

.get-started:hover {
  background-color: #222;
}

.signup {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;                   /* Aligns items horizontally */
  justify-content: center;                /* Centers items horizontally */
  align-items: center;                    /* Centers items vertically */
  padding-left: 2.5rem;                   /* 24px padding */
  padding-right: 2.5rem;                  /* 24px padding */
  padding-top: 0.9rem;                    /* 12px padding */
  padding-bottom: 0.9rem;                 /* 10px padding */
  border-radius: 9999px;                    /* Rounded corners */
  border: 5px solid transparent;          /* Transparent border to reveal the gradient */
  background-color: #fff;                 /* Background color */
  color: black;                           /* Text color */
  font-size: 20px;                        /* Font size */
  min-height: 44px;                       /* Minimum height */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  position: relative;
  overflow: hidden;                       /* Ensure the border radius applies to the gradient too */
}

/* Mobile responsive signup */
@media (max-width: 768px) {
  .signup {
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .signup {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 16px;
  }
}

.signup:hover {
  background-color: #eee;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8); /* subtle glow by default */
}

.button-container {
  display: flex;               /* Use flexbox to align buttons horizontally */
  gap: 20px;                   /* Add space between buttons */
  flex-wrap: wrap;             /* Allow buttons to wrap on smaller screens */
  justify-content: center;     /* Center buttons */
}

/* Mobile responsive button-container */
@media (max-width: 480px) {
  .button-container {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
}

/* Responsive padding */
@media (min-width: 640px) {
  .section {
    padding-left: 1.5rem;               /* 24px padding */
    padding-right: 1.5rem;              /* 24px padding */
    padding-top: 0.625rem;              /* 10px padding */
    padding-bottom: 0.625rem;           /* 10px padding */
  }
}

@media (min-width: 768px) {
  .section {
    padding-left: 2rem;                 /* 32px padding */
    padding-right: 2rem;                /* 32px padding */
    padding-top: 0.75rem;               /* 12px padding */
    padding-bottom: 0.75rem;            /* 12px padding */
    font-size: 1.25rem;                 /* Larger font size */
  }
}

/* Dark mode styling */
@media (prefers-color-scheme: dark) {
  .section {
    background-color: white;            /* White background in dark mode */
    color: #1d1d1f;                     /* Dark text color in dark mode */
  }

  .section:hover {
    background-color: #f5f5f7;          /* Lighter hover background in dark mode */
  }
}

/* Hover effect for all themes */
.section:hover {
  background-color: #313133;            /* Darker hover background */
}

/* Font size changes on screen size */
@media (min-width: 640px) {
  .section {
    font-size: 1.125rem;                /* Increase font size for sm */
  }
}

@media (min-width: 768px) {
  .section {
    font-size: 1.25rem;                 /* Increase font size for md */
  }
}

.icon {
  padding-left: 10px;
  scale: 0.9;
}

.clear {
  font-family: "Work Sans", sans-serif;
  font-weight: 550;
  text-decoration:none;
  display: inline-flex;                   /* Aligns items horizontally */
  justify-content: center;                /* Centers items horizontally */
  align-items: center;                    /* Centers items vertically */
  padding-left: 0.1rem;                   /* 24px padding */
  padding-right: 0.1rem;                  /* 24px padding */
  padding-top: 0.9rem;                   /* 12px padding */
  padding-bottom: 0.9rem;               /* 10px padding */
  border-radius: 9999px;                  /* Fully rounded border */
  background-color: 0,0,0;              /* Dark background color */
  color: white;                           /* White text color */
  font-size: 22px;                        /* Base font size                      /* Medium font weight */
  min-height: 44px;                       /* Minimum height */
  transition: background-color 0.3s ease; /* Smooth background color transition */
  margin-right: -10px;
}

/* Mobile responsive clear */
@media (max-width: 480px) {
  .clear {
    font-size: 18px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.clear:hover {
  color: #ddd
}

.signup-nav {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;                  /* Aligns items horizontally */
  justify-content: flex-end;             /* Aligns items to the right */
  align-items: center;                   /* Centers items vertically */
  padding-left: 2rem;                    /* 24px padding */
  padding-right: 2rem;                   /* 24px padding */
  padding-top: 0.9rem;                   /* 12px padding */
  padding-bottom: 0.9rem;                /* 10px padding */
  border-radius: 9999px;                 /* Fully rounded border */
  background-color: #fff;                /* White background color */
  color: black;                          /* Black text color */
  font-size: 20px;                       /* Font size */
  min-height: 44px;                      /* Minimum height */
  transition: background-color 0.3s ease; /* Smooth background color transition */

}

/* Mobile responsive signup-nav */
@media (max-width: 480px) {
  .signup-nav {
    font-size: 18px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.signup-nav:hover {
  background-color: #bbb;
}

      .logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-right: 18px;
        margin-left: 0;
        order: 0;
      }

      .nav-buttons {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
      }

      /* Mobile responsive logo */
      @media (max-width: 480px) {
        .logo {
          width: 32px;
          height: 32px;
        }
        
        .nav-buttons {
          gap: 10px;
        }
      }

.back {
  background-color: #000;
}

      /* User Carousel System */
      .user-carousel-system {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 60px auto;
        overflow: hidden;
        position: relative;
      }

      .carousel-row {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        position: relative;
        height: 80px;
        width: 200%;
      }

      .user-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 20px;
        background: rgba(11, 11, 11, 0.8);
        border: 1px solid #555;
        border-radius: 50px;
        margin: 0 8px;
        min-width: 200px;
        transition: all 0.3s ease;
        animation: float 3s ease-in-out infinite;
        flex-shrink: 0;
      }

      .user-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgb(187, 187, 187);
        border-color: #fff;
      }

      .user-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
  font-weight: 600;
        color: white;
        flex-shrink: 0;
      }

      .user-comment {
        font-size: 14px;
        color: rgb(220, 220, 220);
  font-style: italic;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
      }

      /* Row 1 - Left to Right */
      .row-1 {
        animation: slideLeft 25s linear infinite;
      }

      /* Row 2 - Right to Left */
      .row-2 {
        animation: slideRight 22s linear infinite;
      }

      /* Row 3 - Left to Right */
      .row-3 {
        animation: slideLeft 28s linear infinite;
      }

      /* Row 4 - Right to Left */
      .row-4 {
        animation: slideRight 20s linear infinite;
      }

      /* Gradient fade effect on edges */
      .carousel-row::before,
      .carousel-row::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 5;
        pointer-events: none;
      }

      .carousel-row::before {
        left: 0;
        background: linear-gradient(to right, #0e0e0e 0%, transparent 100%);
      }

      .carousel-row::after {
        right: 0;
        background: linear-gradient(to left, #0e0e0e 0%, transparent 100%);
      }

      /* Dimming effect for items not in focus */
      .user-item {
        opacity: 0.7;
        filter: blur(0.3px);
      }

      .user-item:hover {
        opacity: 1;
        filter: blur(0);
        z-index: 10;
      }

      /* Floating animation */
      @keyframes float {
        0%, 100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-3px);
        }
      }

      /* Sliding animations */
      @keyframes slideLeft {
        0% {
          transform: translateX(0%);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      @keyframes slideRight {
        0% {
          transform: translateX(-50%);
        }
        100% {
          transform: translateX(0%);
        }
      }

      /* Mobile responsive carousel */
      @media (max-width: 768px) {
        .user-carousel-system {
          margin-bottom: 40px;
        }

        .carousel-row {
          height: 60px;
          margin-bottom: 20px;
        }

        .user-item {
          padding: 10px 15px;
          min-width: 150px;
          margin: 0 10px;
        }

        .user-avatar {
          width: 30px;
          height: 30px;
          font-size: 12px;
        }

        .user-comment {
          font-size: 12px;
          max-width: 80px;
        }
      }

      @media (max-width: 480px) {
        .user-carousel-system {
          margin-bottom: 30px;
        }

        .carousel-row {
          height: 50px;
          margin-bottom: 15px;
        }

        .user-item {
          padding: 8px 12px;
          min-width: 120px;
          margin: 0 8px;
        }

        .user-avatar {
          width: 25px;
          height: 25px;
          font-size: 10px;
        }

        .user-comment {
          font-size: 11px;
          max-width: 60px;
        }
      }

span {
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(90deg, #444, #888, #777, #aaa, #999); /* Shades of green */
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
}

/* Mobile responsive span */
@media (max-width: 768px) {
  span {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  span {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;  /* Adjust starting position */
  }
  100% {
    background-position: 0 0;  /* Ending position */
  }
}

.part3 {
  text-align: center;
  margin-left: 70px;
  margin-right: 70px;
  margin: 10px;
  font-size: 40px;
  line-height: 28px;
  color: #eee;
}

/* Mobile responsive part3 */
@media (max-width: 768px) {
  .part3 {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 32px;
    line-height: 36px;
  }
}

@media (max-width: 480px) {
  .part3 {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 28px;
    line-height: 32px;
  }
}

/* Style for individual reviews */
.review {   
  background-color: #0b0b0b;            /* Background color of each review */
  border-radius: 20px;                 /* Rounded corners for the reviews */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow for depth */
  width: 320px;                       /* Set a fixed width for each review */
  border: 1px solid #555;
  padding: 0;                          /* Remove padding from container */
  overflow: hidden;                    /* Ensure content stays within bounds */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.review-content {
  padding: 35px 30px;                  /* Padding inside the review content */
  height: 100%;                        /* Take full height of parent */
  display: flex;                       /* Use flexbox for layout */
  flex-direction: column;              /* Stack content vertically */
  justify-content: center;             /* Center content vertically */
  align-items: center;                 /* Center content horizontally */
  text-align: center;                  /* Center text */
}

.review-content p {
  font-size: 18px;                     /* Text size for the reviews */
  line-height: 1.6;                    /* Good line height for readability */
  color: rgb(220, 220, 220);          /* Light gray color for better readability */
  margin: 0 0 20px 0;                 /* Bottom margin for spacing */
  font-style: italic;                  /* Italic for quote style */
}

.review-content span {
  font-weight: 600;                    /* Bold for highlighted words */
  font-style: normal;                  /* Remove italic from highlighted words */
  background: linear-gradient(90deg, #C0C0C0, #aaa, #C0C0C0, #555, #999); /* Shades of green */
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
}

.review-author {
  font-size: 14px;                     /* Smaller font for author */
  color: rgb(150, 150, 150);          /* Muted color for author */
  font-weight: 500;                    /* Medium weight */
  margin-top: auto;                    /* Push to bottom */
}

/* Mobile responsive review */
@media (max-width: 768px) {
  .review {
    width: 280px;
  }
  
  .review-content {
    padding: 30px 25px;
  }
  
  .review-content p {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .review-author {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .review {
    width: 100%;
    max-width: 320px;
    margin-bottom: 20px;
  }
  
  .review-content {
    padding: 25px 20px;
  }
  
  .review-content p {
    font-size: 15px;
    line-height: 1.4;
  }
  
  .review-author {
    font-size: 12px;
  }
}

/* Style for the reviews container */
.reviews {   
  display: flex;                      /* Enable flexbox */
  justify-content: center;            /* Centers reviews horizontally */
  align-items: center;                /* Centers reviews vertically */
  flex-direction: row;                /* Aligns reviews side-by-side */
  gap: 30px;                          /* Adds space between each review */
  padding: 40px 20px;                 /* Adds padding inside the container */
  min-height: 70vh;                   /* Adequate height for reviews */
  width: 90%;                         /* Set width to 90% of the parent container */
  margin: 0 auto;                     /* Centers the container horizontally */
  flex-wrap: wrap;                    /* Allow reviews to wrap on smaller screens */
}

/* Mobile responsive reviews */
@media (max-width: 768px) {
  .reviews {
    width: 90%;
    gap: 10px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .reviews {
      flex-direction: column;          /* Stack reviews vertically on smaller screens */
    width: 95%;                      /* Adjust width for smaller screens */
      padding: 10px;                   /* Adjust padding for smaller screens */
    gap: 15px;
  }
}

/* New section styles for additional sections */
.section-3, .section-4, .section-5 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.section-3 h2, .section-4 h2, .section-5 h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  color: white;
}

/* Mobile responsive section headings */
@media (max-width: 768px) {
  .section-3 h2, .section-4 h2, .section-5 h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .section-3 h2, .section-4 h2, .section-5 h2 {
    font-size: 28px;
  }
}

.section-3 p, .section-4 p, .section-5 p {
  font-size: 18px;
  line-height: 28px;
  color: rgb(163, 163, 163);
  max-width: 600px;
  margin: 0 auto 30px auto;
}

/* Mobile responsive section paragraphs */
@media (max-width: 768px) {
  .section-3 p, .section-4 p, .section-5 p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section-3 p, .section-4 p, .section-5 p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 15px;
  }
}

/* Feature cards for section 3 */
.feature-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.feature-card {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 20px;
  padding: 40px 30px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: white;
}

.feature-card p {
  font-size: 16px;
  line-height: 24px;
  color: rgb(163, 163, 163);
  margin: 0;
}

/* Mobile responsive feature cards */
@media (max-width: 768px) {
  .feature-cards {
    gap: 20px;
  }
  
  .feature-card {
    width: 200px;
    padding: 30px 20px;
  }
  
  .feature-card h3 {
    font-size: 20px;
  }
  
  .feature-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card {
    width: 100%;
    max-width: 280px;
  }
}

/* Stats container for section 4 */
.stats-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: rgb(163, 163, 163);
}

/* Mobile responsive stats */
@media (max-width: 768px) {
  .stats-container {
    gap: 40px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stats-container {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 14px;
  }
}

/* Section 6 - CTA Styling */
.section-6 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.section-6 h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  color: white;
}

.section-6 p {
  font-size: 18px;
  line-height: 28px;
  color: rgb(163, 163, 163);
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.cta-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile responsive section 6 */
@media (max-width: 768px) {
  .section-6 h2 {
    font-size: 36px;
  }
  
  .section-6 p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section-6 h2 {
    font-size: 28px;
  }
  
  .section-6 p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Section 5 - Common Problems Styling */
.section-5 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.section-5 h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 30px;
  color: white;
}

.section-5 p {
  font-size: 18px;
  line-height: 28px;
  color: rgb(163, 163, 163);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Mobile responsive section 5 */
@media (max-width: 768px) {
  .section-5 h2 {
    font-size: 36px;
  }
  
  .section-5 p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .section-5 h2 {
    font-size: 28px;
  }
  
  .section-5 p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 15px;
  }
}

/* Tabs Container */
.tabs-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Tab Buttons */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: #0b0b0b;
  border: 1px solid #555;
  color: rgb(163, 163, 163);
  padding: 15px 25px;
  border-radius: 9999px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.tab-btn:hover {
  background-color: #222;
  color: white;
  border-color: #666;
}

.tab-btn.active {
  background-color: #fff;
  color: black;
  border-color: #fff;
}

/* Mobile responsive tab buttons */
@media (max-width: 768px) {
  .tab-buttons {
    gap: 10px;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .tab-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .tab-btn {
    width: 100%;
    max-width: 250px;
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* Tab Content */
.tab-content {
  position: relative;
  min-height: 300px;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Problem Solution Layout */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.problem, .solution {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem:hover, .solution:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.problem h3, .solution h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.problem h3 {
  color: #ff6b6b;
}

.solution h3 {
  color: #51cf66;
}

.problem p, .solution p {
  font-size: 16px;
  line-height: 1.6;
  color: rgb(220, 220, 220);
  margin: 0;
}

.problem p {
  color: rgb(200, 200, 200);
}

.solution p {
  color: rgb(220, 220, 220);
}

.solution span {
  font-weight: 600;
  font-style: normal;
}

/* Mobile responsive problem-solution */
@media (max-width: 768px) {
  .problem-solution {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .problem, .solution {
    padding: 25px 20px;
  }
  
  .problem h3, .solution h3 {
    font-size: 20px;
  }
  
  .problem p, .solution p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .problem-solution {
    gap: 20px;
  }
  
  .problem, .solution {
    padding: 20px 15px;
  }
  
  .problem h3, .solution h3 {
    font-size: 18px;
  }
  
  .problem p, .solution p {
    font-size: 13px;
  }
}
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Work+Sans:ital,wght@0,500;1,500&display=swap');

/* Admin Layout */
.admin-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background-color: #0b0b0b;
  border-right: 1px solid #555;
  padding: 30px 20px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
}

.sidebar-header {
  margin-bottom: 40px;
  text-align: center;
}

.sidebar-header h2 {
  font-family: "Galada";
  font-size: 28px;
  font-weight: 500;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
  margin: 0;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 18px;
  margin-left: 0;
  display: block;
}

@media (max-width: 480px) {
  .logo {
    width: 32px;
    height: 32px;
  }
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-bottom: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: rgb(163, 163, 163);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  background-color: #222;
  color: white;
}

.nav-link.active {
  background-color: #fff;
  color: white;
}

.nav-icon {
  margin-right: 15px;
  font-size: 20px;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 30px;
  background-color: #0e0e0e;
}

/* Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}

.header-left h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.header-left p {
  color: rgb(163, 163, 163);
  margin: 5px 0 0 0;
  font-size: 14px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-profile:hover {
  background-color: #222;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.user-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.user-info p {
  margin: 0;
  font-size: 12px;
  color: rgb(163, 163, 163);
}

/* Content Cards */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.content-card {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
}

.card-title {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.card-content {
  color: rgb(163, 163, 163);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-action {
  background-color: #fff;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-action:hover {
  background-color: #b01ce6;
}

/* Client Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.client-card {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.client-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-right: 15px;
}

.client-details h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0 0 5px 0;
}

.client-details p {
  font-size: 14px;
  color: rgb(163, 163, 163);
  margin: 0;
}

.client-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.stat-label {
  font-size: 12px;
  color: rgb(163, 163, 163);
}

.add-client-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 20px;
}

.add-client-btn:hover {
  background-color: #b01ce6;
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .sidebar {
    width: 240px;
  }
  
  .main-content {
    margin-left: 240px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    padding: 20px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .header-right {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 15px;
  }
  
  .content-grid {
    gap: 20px;
  }
  
  .clients-grid {
    gap: 15px;
  }
}
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Work+Sans:ital,wght@0,500;1,500&display=swap');

/* Admin Layout */
.admin-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background-color: #0b0b0b;
  border-right: 1px solid #555;
  padding: 30px 20px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
}

.sidebar-header {
  margin-bottom: 40px;
  text-align: center;
}

.sidebar-header h2 {
  font-family: "Galada";
  font-size: 28px;
  font-weight: 500;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
  margin: 0;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 18px;
  margin-left: 0;
  display: block;
}

@media (max-width: 480px) {
  .logo {
    width: 32px;
    height: 32px;
  }
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-bottom: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: rgb(163, 163, 163);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  background-color: #222;
  color: white;
}

.nav-link.active {
  background-color: white;
  color: black;
}

.nav-icon {
  margin-right: 15px;
  font-size: 20px;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 30px;
  background-color: #0e0e0e;
}

/* Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}

.header-left h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.header-left p {
  color: rgb(163, 163, 163);
  margin: 5px 0 0 0;
  font-size: 14px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-profile:hover {
  background-color: #222;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.user-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.user-info p {
  margin: 0;
  font-size: 12px;
  color: rgb(163, 163, 163);
}

/* Content Cards */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.content-card {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
}

.card-title {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.card-content {
  color: rgb(163, 163, 163);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-action {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-action:hover {
  background-color: #b01ce6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.stat-title {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgb(163, 163, 163);
}

.stat-icon {
  font-size: 24px;
  color: white;
}

.stat-value {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.stat-change {
  font-size: 14px;
  color: #51cf66;
}

.stat-change.negative {
  color: #ff6b6b;
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .sidebar {
    width: 240px;
  }
  
  .main-content {
    margin-left: 240px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    padding: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .header-right {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .content-grid {
    gap: 20px;
  }
}
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Work+Sans:ital,wght@0,500;1,500&display=swap');

/* Admin Layout */
.admin-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background-color: #0b0b0b;
  border-right: 1px solid #555;
  padding: 30px 20px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
}

.sidebar-header {
  margin-bottom: 40px;
  text-align: center;
}

.sidebar-header h2 {
  font-family: "Galada";
  font-size: 28px;
  font-weight: 500;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
  margin: 0;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 18px;
  margin-left: 0;
  display: block;
}

@media (max-width: 480px) {
  .logo {
    width: 32px;
    height: 32px;
  }
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-bottom: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: rgb(163, 163, 163);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  background-color: #222;
  color: white;
}

.nav-link.active {
  background-color: #fff;
  color: #000;
}

.nav-icon {
  margin-right: 15px;
  font-size: 20px;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 30px;
  background-color: #0e0e0e;
}

/* Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}

.header-left h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.header-left p {
  color: rgb(163, 163, 163);
  margin: 5px 0 0 0;
  font-size: 14px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-profile:hover {
  background-color: #222;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #999, #fff, #777, #aaa, #999); /* Shades of green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.user-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.user-info p {
  margin: 0;
  font-size: 12px;
  color: rgb(163, 163, 163);
}

/* Help Grid */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.help-card {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.help-card h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.help-card h3::before {
  content: "❓";
  margin-right: 10px;
  font-size: 18px;
}

.help-card.getting-started h3::before {
  content: "🚀";
}

.help-card.features h3::before {
  content: "⚡";
}

.help-card.troubleshooting h3::before {
  content: "🔧";
}

.help-card.contact h3::before {
  content: "📞";
}

.help-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.help-btn:hover {
  background-color: #b01ce6;
}

/* FAQ Section */
.faq-section {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}

.faq-section h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 25px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-question::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 14px;
  color: rgb(163, 163, 163);
  line-height: 1.6;
  padding: 0 0 15px 0;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .sidebar {
    width: 240px;
  }
  
  .main-content {
    margin-left: 240px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    padding: 20px;
  }
  
  .help-grid {
    grid-template-columns: 1fr;
  }
  
  .header-right {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 15px;
  }
  
  .help-grid {
    gap: 20px;
  }
  
  .help-card {
    padding: 25px 20px;
  }
}
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Work+Sans:ital,wght@0,500;1,500&display=swap');

h1 {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-size: 77px;
  font-weight: 500;
  line-height: 87px;
  text-align: center;
  letter-spacing: -3.2px;
}

/* Mobile responsive h1 */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1.5px;
  }
}

.rainbow-h1 {
  font-family: "Galada";
  font-weight: 500;
  font-style: italic;
  font-size: 92px;
  line-height: 120px;
  background: linear-gradient(90deg, #999, #fff, #777, #aaa, #999); /* Shades of green */
  background-size: 300% 300%;
  background-clip: text;
  letter-spacing: -3px;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
}

/* Mobile responsive rainbow-h1 */
@media (max-width: 768px) {
  .rainbow-h1 {
    font-size: 58px;
    line-height: 72px;
    letter-spacing: -2px;
  }
}

@media (max-width: 480px) {
  .rainbow-h1 {
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -1.5px;
  }
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

p {
  text-align: center;
  margin-left: 70px;
  margin-right: 70px;
  margin-top: -55px;
  font-size: 21px;
  line-height: 28px;
  color: rgb(163, 163, 163);
}

/* Mobile responsive p */
@media (max-width: 768px) {
  p {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  p {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 22px;
  }
}

span {
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 20px;
  gap: 15px;
  background-color: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Mobile responsive nav */
@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
    gap: 10px;
  }
}

main {
  padding: 1rem;
  padding-top: 100px;
}

.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  min-height: 100vh;
  width: 80%;
  margin: 0 auto;
}

/* Mobile responsive sections */
@media (max-width: 768px) {
  .login-section {
    width: 90%;
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .login-section {
    width: 95%;
    padding: 15px 5px;
  }
}

.clear {
  font-family: "Work Sans", sans-serif;
  font-weight: 550;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-radius: 9999px;
  background-color: 0,0,0;
  color: white;
  font-size: 22px;
  min-height: 44px;
  transition: background-color 0.3s ease;
  margin-right: -10px;
}

/* Mobile responsive clear */
@media (max-width: 480px) {
  .clear {
    font-size: 18px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.clear:hover {
  color: #ddd;
}

.signup-nav {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-radius: 9999px;
  background-color: #fff;
  color: black;
  font-size: 20px;
  min-height: 44px;
  transition: background-color 0.3s ease;
}

/* Mobile responsive signup-nav */
@media (max-width: 480px) {
  .signup-nav {
    font-size: 18px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.signup-nav:hover {
  background-color: #bbb;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-right: 18px;
  margin-left: 0;
  order: 0;
}

/* Mobile responsive logo */
@media (max-width: 480px) {
  .logo {
    width: 32px;
    height: 32px;
  }
}

/* Login Form Styling */
.login-form-container {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 20px;
  padding: 50px 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.form-header p {
  font-size: 16px;
  color: rgb(163, 163, 163);
  margin: 0;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgb(200, 200, 200);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 15px 20px;
  background-color: #0e0e0e;
  border: 1px solid #555;
  border-radius: 10px;
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #fff;
}

.form-group input::placeholder {
  color: rgb(150, 150, 150);
}

.forgot-password {
  text-align: right;
  margin-bottom: 25px;
}

.forgot-password a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background-color: #fff;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.submit-btn:hover {
  background-color: #eee;
}

.signup-link {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: rgb(163, 163, 163);
}

.signup-link a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.signup-link a:hover {
  text-decoration: underline;
}

.divider {
  display: flex;
  align-items: center;
  margin: 30px 0;
  color: rgb(163, 163, 163);
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: #555;
}

.divider span {
  padding: 0 15px;
  background: none;
  color: rgb(163, 163, 163);
  animation: none;
}

.social-login {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #555;
  border-radius: 10px;
  background-color: #0e0e0e;
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-btn:hover {
  background-color: #222;
  border-color: #666;
}

.features {
  margin-top: 50px;
  text-align: center;
}

.features h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}

.feature-item h4 {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: rgb(163, 163, 163);
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsive form */
@media (max-width: 768px) {
  .login-form-container {
    padding: 40px 30px;
  }

  .form-header h2 {
    font-size: 28px;
  }

  .social-login {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .login-form-container {
    padding: 30px 20px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .form-group input {
    padding: 12px 15px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Work+Sans:ital,wght@0,500;1,500&display=swap');

/* Admin Layout */
.admin-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background-color: #0b0b0b;
  border-right: 1px solid #555;
  padding: 30px 20px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  z-index: 1000;
}

.sidebar-header {
  margin-bottom: 40px;
  text-align: center;
}

.sidebar-header h2 {
  font-family: "Galada";
  font-size: 28px;
  font-weight: 500;
  background: linear-gradient(90deg, #ca1cff, #c813ff, #ff1da8, #ff36c3, #7023ff);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
  margin: 0;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 18px;
  margin-left: 0;
  display: block;
}

@media (max-width: 480px) {
  .logo {
    width: 32px;
    height: 32px;
  }
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-bottom: 10px;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  color: rgb(163, 163, 163);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  background-color: #222;
  color: white;
}

.nav-link.active {
  background-color: #fff;
  color: white;
}

.nav-icon {
  margin-right: 15px;
  font-size: 20px;
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: 280px;
  padding: 30px;
  background-color: #0e0e0e;
}

/* Header */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}

.header-left h1 {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.header-left p {
  color: rgb(163, 163, 163);
  margin: 5px 0 0 0;
  font-size: 14px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-profile:hover {
  background-color: #222;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(90deg, #222, #555, #777, #222, #666); /* Shades of green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.user-info h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.user-info p {
  margin: 0;
  font-size: 12px;
  color: rgb(163, 163, 163);
}

/* Settings Grid */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.settings-card {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.settings-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.settings-card h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.settings-card h3::before {
  content: "⚙️";
  margin-right: 10px;
  font-size: 18px;
}

.settings-card.profile h3::before {
  content: "👤";
}

.settings-card.notifications h3::before {
  content: "🔔";
}

.settings-card.business h3::before {
  content: "🏢";
}

.settings-card.security h3::before {
  content: "🔒";
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgb(200, 200, 200);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #0e0e0e;
  border: 1px solid #555;
  border-radius: 8px;
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fff;
}

.form-group input::placeholder {
  color: rgb(150, 150, 150);
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: .4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #fff;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.toggle-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.toggle-label span {
  font-size: 14px;
  color: rgb(200, 200, 200);
  background: none;
  animation: none;
  color: rgb(200, 200, 200);
  -webkit-text-fill-color: rgb(200, 200, 200);
}

.save-btn {
  background-color: #fff;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  margin-top: 30px;
}

.save-btn:hover {
  background-color: #b01ce6;
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .sidebar {
    width: 240px;
  }
  
  .main-content {
    margin-left: 240px;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  
  .sidebar.open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
    padding: 20px;
  }
  
  .settings-grid {
    grid-template-columns: 1fr;
  }
  
  .header-right {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 15px;
  }
  
  .settings-grid {
    gap: 20px;
  }
  
  .settings-card {
    padding: 25px 20px;
  }
}
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: system-ui, sans-serif;
  color: white;
  background-color: #0e0e0e;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&family=Work+Sans:ital,wght@0,500;1,500&display=swap');

h1 {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-size: 77px;
  font-weight: 500;
  line-height: 87px;
  text-align: center;
  letter-spacing: -3.2px;
}

/* Mobile responsive h1 */
@media (max-width: 768px) {
  h1 {
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -2px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: -1.5px;
  }
}

.rainbow-h1 {
  font-family: "Galada";
  font-weight: 500;
  font-style: italic;
  font-size: 92px;
  line-height: 120px;
  background: linear-gradient(90deg, #C0C0C0, #aaa, #C0C0C0, #555, #999); /* Shades of green */
  background-size: 300% 300%;
  background-clip: text;
  letter-spacing: -3px;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
}

/* Mobile responsive rainbow-h1 */
@media (max-width: 768px) {
  .rainbow-h1 {
    font-size: 58px;
    line-height: 72px;
    letter-spacing: -2px;
  }
}

@media (max-width: 480px) {
  .rainbow-h1 {
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -1.5px;
  }
}

/* Keyframes for rainbow animation */
@keyframes rainbowAnimation {
  0% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

p {
  text-align: center;
  margin-left: 70px;
  margin-right: 70px;
  margin-top: -55px;
  font-size: 21px;
  line-height: 28px;
  color: rgb(163, 163, 163);
}

/* Mobile responsive p */
@media (max-width: 768px) {
  p {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  p {
    margin-left: 15px;
    margin-right: 15px;
    font-size: 16px;
    line-height: 22px;
  }
}

span {
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(90deg, #C0C0C0, #fff, #C0C0C0, #ddd, #999); /* Shades of green */
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rainbowAnimation 6s ease-in-out infinite;
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 20px;
  gap: 15px;
  background-color: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Mobile responsive nav */
@media (max-width: 480px) {
  nav {
    padding: 10px 15px;
    gap: 10px;
  }
}

main {
  padding: 1rem;
  padding-top: 100px;
}

.signup-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  min-height: 100vh;
  width: 80%;
  margin: 0 auto;
}

/* Mobile responsive sections */
@media (max-width: 768px) {
  .signup-section {
    width: 90%;
    padding: 20px 10px;
  }
}

@media (max-width: 480px) {
  .signup-section {
    width: 95%;
    padding: 15px 5px;
  }
}

.clear {
  font-family: "Work Sans", sans-serif;
  font-weight: 550;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-radius: 9999px;
  background-color: 0,0,0;
  color: white;
  font-size: 22px;
  min-height: 44px;
  transition: background-color 0.3s ease;
  margin-right: -10px;
}

/* Mobile responsive clear */
@media (max-width: 480px) {
  .clear {
    font-size: 18px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.clear:hover {
  color: #ddd;
}

.signup-nav {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-radius: 9999px;
  background-color: #fff;
  color: black;
  font-size: 20px;
  min-height: 44px;
  transition: background-color 0.3s ease;
}

/* Mobile responsive signup-nav */
@media (max-width: 480px) {
  .signup-nav {
    font-size: 18px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.signup-nav:hover {
  background-color: #bbb;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-right: 18px;
  margin-left: 0;
  order: 0;
}
@media (max-width: 480px) {
  .logo {
    width: 32px;
    height: 32px;
  }
}

/* Signup Form Styling */
.signup-form-container {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 20px;
  padding: 50px 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.form-header p {
  font-size: 16px;
  color: rgb(163, 163, 163);
  margin: 0;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgb(200, 200, 200);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  background-color: #0e0e0e;
  border: 1px solid #555;
  border-radius: 10px;
  color: white;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #fff;
}

.form-group input::placeholder {
  color: rgb(150, 150, 150);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  width: 100%;
  background-color: #fff;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 9999px;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background-color: #eee;
}

.login-link {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: rgb(163, 163, 163);
}

.login-link a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.login-link a:hover {
  text-decoration: underline;
}

.benefits {
  margin-top: 50px;
  text-align: center;
}

.benefits h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  background-color: #0b0b0b;
  border: 1px solid #555;
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-item h4 {
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 14px;
  color: rgb(163, 163, 163);
  margin: 0;
  line-height: 1.4;
}

/* Mobile responsive form */
@media (max-width: 768px) {
  .signup-form-container {
    padding: 40px 30px;
  }

  .form-header h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .signup-form-container {
    padding: 30px 20px;
  }

  .form-header h2 {
    font-size: 24px;
  }

  .form-group input,
  .form-group select {
    padding: 12px 15px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
}