/* NAVBAR SAME AS SOLUTIONS */

.custom-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 10%;   /* SAME as solutions */
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #1e3a8a;
}

.home-btn {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}

.home-btn:hover {
    color: #1e3a8a;
}

/* WHY PAGE HERO */
.why-hero {
    background: linear-gradient(135deg, #0a4fd6, #3b5bdb);
    color: white;
    padding: 80px 20px;
}

.why-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* WHY SECTION */
.why-section {
    padding: 80px 0;
    background: #f9fbff;
}

/* CARDS */
.why-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON */
.why-card i {
    font-size: 28px;
    color: #4f46e5;
    margin-bottom: 15px;
}

/* TITLE */
.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA */
.why-cta {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 60px 20px;
    color: white;
}

.why-cta h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px;
}
/*CSS for Contact form Popup*/
/* CONTACT FORM */
  .contact-form-wrap {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }
  .contact-form-wrap h3 {
    font-size: 26px; font-weight: 700;
    color: #1e2a78; margin-bottom: 25px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    font-size: 13px; font-weight: 600;
    color: #444; margin-bottom: 7px; display: block;
  }
  .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e7ff;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
    outline: none;
  }
  .form-control:focus {
    border-color: #0072ff;
    box-shadow: 0 0 0 4px rgba(0,114,255,0.08);
  }
  textarea.form-control { resize: vertical; min-height: 130px; }
  select.form-control { cursor: pointer; }

  .submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0072ff, #4f46e5);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.5px;
  }
  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,114,255,0.3);
  }
  /*Error messgaes on form fields*/
  .error {
    color: #dc2626;
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.input-error {
    border-color: #dc2626 !important;
}

  /* SUCCESS MESSAGE */
  .success-msg {
    display: none;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
  }