/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
   background-color: black;
    color: white;
    margin: 0;
    padding-top: 70px; /* Space for the fixed navbar */
  padding-left: 5px;
  padding-right: 5px;
  }

  .dotted-background {
    background-color: transparent;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10'><circle cx='2' cy='2' r='1' fill='white' /></svg>"); /* Increase SVG size */
    background-size: 20px 20px; /* Keep dot size the same */
    /* background-position: 5px 5px; Fine-tune gap if needed */
    width: 120px;
    height: 150px;
}

.dots{
    position: absolute;
    top: 15%;
    left: 90%;

}

.dots-2{
    position: absolute;
   top:21%;
   left: 2%;

}


  h1, h2, h3, h4, h5, h6, p {
    color: white;
    z-index: 10;
  }

  /* Navbar Styles */
  .navbar {
    background-color: black !important;

  }

  .navbar-brand {
    color: white;
    font-weight: 700;
  }

  .navbar-brand .logo {
    width: 40px;

  }

  .nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
    margin-right: 40px;
    text-transform: capitalize;
  }

  .nav-link:hover {
    color: #007bff;
  }

  .btn-primary {
    background-color: #007bff;
    border: 1px solid blue;

  }

  .login-btn{
    border-radius: 20px;
    padding: 5px 30px;
  }


  .btn-outline-primary {
    color: white;
    border: 1px solid #007bff;
    border-radius: 20px;
    padding: 5px 30px;
  }

  .btn:hover {
    opacity: 0.9;
  }

  /* Hero Section */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: black;

  }

  #hero .heading {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    z-index: 100;
  }

  #hero .boldy{
    font-size: 3rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

  .curved-underline {
    color: #007bff;
    position: relative;
    font-size: 3rem;
    font-weight: 500;
  }

  .curved-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 8px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10"><path d="M0,5 C30,15 70,-5 100,5" stroke="%23007bff" stroke-width="2" fill="transparent"/></svg>') no-repeat center;
    background-size: 100% 100%;
    width: 100%;
  }



  #hero img {
    max-width: 100%;
    height: auto;
  }



/*feature section*/
.feature-box {
    background-color:black;
    border: 2px solid #007bff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .feature-box:hover {
    transform: scale(1.05);
  }

  .icon {
    font-size: 2.5rem;
    background-color: #007bff;
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
  }

  .feature-box h3 {
    margin-top: 10px;
  }

  .feature-box p {
    color: #bbb;
  }

.features h2{
    margin-bottom: 100px;
}





/* Custom CSS for footer */
.footer {
    background-color: #1a1a1a; /* Dark background color */
    color: #fff; /* White text color */
    padding: 30px 0; /* Top and bottom padding */
    min-height: 60vh;
    position: relative;
  }

  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: start;

  }

  .footer h4{
    font-weight: 800;
  }

  .footer p{
    max-width: 300px;
    line-height: 1.8;
  }
  .footer-links {
    display: flex;
    gap: 8px;
    font-weight: 200;
    flex-direction: column;
    font-size: 0.9rem;
  }

  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px;

  }

  .footer-social-icons {
    display: flex;

  }

  .footer-social-icons a {
    color: #fff;
    margin-right: 10px;
  }

  .footer-social-icons a:hover {
    color: #f0f0f0; /* Lighter color on hover */
  }

  .copyright {
    text-align: center;
    position: absolute;
    bottom: 0%;
    background-color: black;
    padding: 20px;
    width: 100%;
  }



  .why-us {
    background-color:black; /* Blue background color */
    color: #fff; /* White text color */
    padding: 100px 0; /* Top and bottom padding */
    border: 2px solid #007bff;
    border-radius: 10px;
    margin-bottom: 100px;


  }

  .why-us h2 {
    font-size: 2.5rem; /* Adjust font size for responsiveness */
    margin-bottom: 20px;
  }

  .why-us p {
    margin-bottom: 20px;
  }

  .stats-container {
    display: flex;
    flex-wrap: wrap; /* Allow stats to wrap on smaller screens */
    justify-content: space-around;
  }

  .stat {
    text-align: center;
    margin-bottom: 20px; /* Space between stats */
  }

  .stat h3 {
    font-size: 1.8rem; /* Adjust font size for responsiveness */
    margin-bottom: 10px;
  }



  .demand-partners {
    text-align: center;
    padding: 50px 0;
  }

  .demand-partners h2 {
    margin-bottom: 30px;
    font-size: 2rem; /* Adjust font size for responsiveness */
  }

  .demand-partners img {
    max-width: 100%; /* Ensure images don't exceed container width */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center images */
  }

  .row {
    display: flex;
    flex-wrap: wrap; /* Allow rows to wrap on smaller screens */
    justify-content: space-around; /* Space images evenly */
  }












/*animations*/
.is-visible {
    animation-duration: 0.8s;
    animation-fill-mode: both;
  }

  #hero.is-visible {
    animation-name: fadeInUp;
  }

  .features.is-visible {
    animation-name: slideInUp;
  }

  .why-us.is-visible {
    animation-name: fadeInUp;
  }

  .demand-partners.is-visible {
    animation-name: fadeIn;
  }

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

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

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }







  .signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
  }

  .signup-card {
    width: 60%;
    background: #000; /* Black background for the card */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
  }

  .form-section {
    flex: 1;
    padding: 40px;
  }

  .form-section h2 {
    font-size: 32px;
    color: #fff; /* Text color updated to white for contrast */
    font-weight: bold;
    margin-bottom: 30px;
  }

  .form-control {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent; /* Prevent background change */
    color: #fff; /* Input text color */
  }

  .form-control:focus {
    border-bottom: 1px solid #fff;
    color: white;
    box-shadow: none;
    background-color: transparent; /* Keep background transparent on focus */
  }

  .form-control::placeholder {
    color: #fff; /* Placeholder text color set to white */
    opacity: 0.8; /* Optional: Make it slightly dimmer for better readability */
  }

  .form-check-label {
    font-size: 14px;
    color: #fff;
  }

  .form-check-input {
    background-color: #fff;
    border-color: #fff;
    color: white;
  }

  .image-section {
    flex: 1;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .image-section img {
    max-width: 100%;
    height: auto;
  }

  .btn-primary {
    background-color: #4e97ff;
    border: none;
  }

  .btn-primary:hover {
    background-color: #2d7efb;
  }

  .signin-link {
    font-size: 14px;
    color: #4e97ff;
    text-decoration: none;
  }

  .signin-link:hover {
    color: #2d7efb;
    text-decoration: underline;
  }

  .signup-card select{
    background-color: black !important;
  }



  .custom-card {
    background: #1a1a1a;
    border: 1px solid #4e97ff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.2);
  }
  .custom-icon {
    font-size: 2rem;
    color: #00bcd4; /* Cyan */
  }










  /* Responsive Styles */
  @media (max-width: 768px) {

    .dots-2{
         display: none;

      }
    #hero {
      flex-direction: column;
      justify-content: start;
      padding-top: 100px;
    }
    #hero .heading {
          font-size: 1.5rem;
          font-weight: 100;
          line-height: 1.3;
        }
    #hero img {
      margin-top: 20px;
    }
    #hero .curved-underline{
          font-size: 2.5rem;
    }

    #hero .boldy{
          font-size: 2.5rem;
          margin-top: 10px;
          margin-bottom: 10px;
    }



    .dots{
          position: absolute;
          top: 15%;
          left: 75%;
      }

      .feature-heading{
          font-size: 1rem;
      }

      .features .curved-underline{
          font-size: 1rem;
          white-space: pre;
      }

      .features .highlight{
          white-space: pre;
      }

      .footer .container {
          display: flex;
          flex-direction: column;
          gap:20px;
        }

        .footer {

          min-height: 100vh;
          position: relative;
        }

        .footer p{
          max-width: 100%;
          line-height: 1.8;
        }

        .stat {
          margin-bottom: 0; /* Remove bottom margin on larger screens */
        }

        .demand-partners h2 {
          font-size: 1.8rem; /* Further reduce font size on smaller screens */
        }
        .signup-card {
          width: 100%;
          background: #000; /* Black background for the card */
          border-radius: 8px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          display: flex;
          overflow: hidden;
        }
  }
