/* Reset and base */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: inter, sans-serif;
    background-color: #f9f9f8;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Navbar */
.navbar {
    /* background: white; */
    padding: 24px 0;
}

.logo {
    display: flex;
    color: #428273;
    font-size: 32px;
    align-items: center;
    /* font-weight: 600; */
}
.logo a{
    margin-left: 10px;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-btn {

    background-color: rgba(60, 130, 115, 80);
    margin-left: 20px;
    color: white !important;
    border: none;
    padding: 18px 25px;
    /* border-radius: 5px; */
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.nav-links a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    width: 100%;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    background-image: url('../images/hero.png');
    /* Replace this */
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 40px;
    min-height: 460px;
}

.hero-text {
    margin-top: 12rem;
    /* max-width: 900px; */
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
}

.hero-button {
    position: absolute;
    bottom: 0;
    right: 0;
    align-self: flex-end;
    margin-top: 40px;
}

.hero-button button{
    background-color: rgba(60, 130, 115, 80);

    color: white !important;
    border: none;
    padding: 25px 35px;
    /* border-radius: 5px; */
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.hero-button button a{
     color: white !important;
}
/* Features */
.features {
    text-align: left;
    margin-top: 80px;
}

.features h2 {
    font-size: 36px;
    font-weight: 900;
    color: #4A4843;
    margin-bottom: 10px;
}

.features .subtitle {
    color: #4A4843;
    margin-bottom: 40px;
    font-size: 16px;
}

.feature-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.card {
    background: #FAFAFA;
    border: 1px solid #D6E0DE;
    border-radius: 10px;
    padding: 24px;
    width: 32%;
    text-align: left;
}

.card img {
    width: 24px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card p {
    font-size: 14px;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 20px 30px;
    font-size: 14px;
    color: #63827A;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    /* gap: 40px; */
    margin-bottom: 20px;
}

.footer-links a {
    color: #63827A;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.signup {
    padding: 50px 0;
}
.text-muted{
  color: #A1A19F;
}
.powered-by{
  display: flex;
  flex-direction: column;
}
.small{
  font-weight: 600;
  font-size: 10px;
}
.signup h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
}

.signup-form input,
.signup-form select {
    margin-top: 6px;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background-color: #e8f0ec;
    font-size: 14px;
    color: #333;
}

.signup-form input::placeholder {
    color: #7ca79a;
}

.signup-form select {
    color: #7ca79a;
}

.terms {
    font-size: 13px;
    color: #666;
}

/* Upload Box */
.upload-section {
    display: flex;
    flex-direction: column;
}

.upload-box {
    background-color: #f2f2f2;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.upload-box img {
    width: 30px;
    margin-bottom: 12px;
}

.upload-text {
    color: #7ca79a;
    margin-bottom: 10px;
}

.upload-box ul {
    list-style: none;
    font-size: 14px;
    color: #7ca79a;
}

.upload-note {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Submit Button */
.submit-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.submit-btn {
    background-color: #38816f;
    color: white;
    border: none;
    padding: 12px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

/* ---------------------------------- */
/* RESPONSIVE STYLES */
/* ---------------------------------- */

@media (max-width: 1024px) {
  .container{
    
  margin: 0 15px;
}
  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-button button {
    padding: 20px 30px;
  }

  .card {
    width: 48%;
  }

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

@media (max-width: 768px) {
 

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    /* margin-top: 10px; */
  }

  .nav-links a {
    /* margin: 10px 10px 0 0; */
  }

  .hero-inner {
    padding: 40px 20px;
  }

  .hero-text {
    margin-top: 6rem;
  }

  .hero-text h1 {
    font-size: 30px;
     text-align: center;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
  }

  .hero-button {
    position: static;

    margin-top: 30px;
    align-self: center;
  }

  .hero-button button {
    padding: 18px 28px;
  }

  .feature-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .submit-container {
    justify-content: center;
  }

  .submit-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 30px;
  }

  .login-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-button button {
    padding: 16px 24px;
    font-size: 14px;
  }

  .features h2 {
    font-size: 24px;
  }

  .features .subtitle {
    font-size: 14px;
  }

  .card h3 {
    font-size: 15px;
  }

  .card p {
    font-size: 13px;
  }

  footer {
    padding: 60px 10px 20px;
    font-size: 12px;
  }

  .signup h1 {
    font-size: 20px;
  }

  .upload-note,
  .upload-box ul,
  .upload-text {
    font-size: 13px;
  }
}
