.cta-card {
  /* Background image with semi-transparent green overlay */
  background-image: 
    linear-gradient(rgba(47, 127, 59, 0.7), rgba(63, 161, 75, 0.7)),
    url('../images/work/chit.jpg'); /* Replace with your image path */
  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  color: #fff;
  padding: 7rem 2rem;
  border-radius: 15px;
  text-align: center;
  max-width: 1200px;
  margin: 2rem auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(26, 26, 26, 0.2);
}

.cta-card h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #2F7F3B;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(255,255,255,0.85);
  color: #1B4F25;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-card {
    padding: 4rem 1.5rem;
  }
  .cta-card h3 {
    font-size: 2rem;
  }
  .cta-card p {
    font-size: 1rem;
  }
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
}




/* logi form */

.login-container {
    display: flex;
    min-height: 100vh;
  }

  /* Left side - image + overlay icons */
  .login-left {
    flex: 1;
    background-color: #2F7F3B;
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
  }

  /* Overlay for darkening image */
  .login-left::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(47, 127, 59, 0.7); */
    z-index: 0;
  }

  .login-left .overlay-content {
    position: relative;
    z-index: 1;
  }

  .login-left h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .feature-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .feature {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  /* Right side - form */
  .login-right {
    flex: 1;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .login-form {
    width: 100%;
    max-width: 400px;
  }

  .login-form img {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 150px;
  }

  .login-form h3 {
    text-align: center;
    color: #2F7F3B;
    margin-bottom: 1.5rem;
  }

  .login-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }

  .login-form button {
    width: 100%;
    padding: 0.9rem;
    background-color: #2F7F3B;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
  }

  .login-form button:hover {
    background-color: #1B4F25;
  }

  .login-form .forgot {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  .login-form .forgot a {
    color: #2F7F3B;
    text-decoration: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .login-container {
      flex-direction: column;
    }
    .login-left, .login-right {
      flex: none;
      width: 100%;
      min-height: 250px;
    }
    .login-left {
      padding: 1.5rem;
    }
    .login-right {
      padding: 1.5rem;
    }
  }

