
/* 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;
}
  
  .page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #3b82f6 100%);
    color: white; padding: 100px 0 80px; text-align: center;
    position: relative; overflow: hidden;
  }
  .page-hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 15px; }
  .page-hero p { font-size: 18px; opacity: 0.85; max-width: 600px; margin: auto; }

  /* CONTACT SECTION */
  .contact-section {
    padding: 80px 0;
    background: #f9fbff;
  }

  /* CONTACT INFO CARDS */
  .contact-info-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    transition: 0.3s;
  }
  .contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,114,255,0.1);
  }
  .contact-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #0072ff, #4f46e5);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px;
    flex-shrink: 0;
  }
  .contact-info-card h5 { font-weight: 700; color: #1e2a78; margin-bottom: 5px; font-size: 15px; }
  .contact-info-card p { color: #555; font-size: 14px; margin: 0; line-height: 1.6; }
  .contact-info-card a { color: #0072ff; text-decoration: none; }
  .contact-info-card a:hover { text-decoration: underline; }

  /* SOCIAL LINKS */
  .social-links { display: flex; gap: 12px; margin-top: 25px; }
  .social-btn {
    width: 44px; height: 44px;
    background: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #0072ff; font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-decoration: none;
  }
  .social-btn:hover {
    background: #0072ff;
    color: white;
    transform: translateY(-3px);
  }

  /* 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;
  }

  /* MAP PLACEHOLDER */
  .map-section {
    padding: 0 0 80px;
    background: #f9fbff;
  }
  .map-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 350px;
    background: #e0e7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #0072ff;
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
  }
  .map-wrap i { font-size: 40px; opacity: 0.5; }

  /* FAQ */
  .faq-section { padding: 80px 0; background: #fff; }
  .accordion-button {
    font-weight: 600;
    color: #1e2a78;
    font-family: 'Poppins', sans-serif;
  }
  .accordion-button:not(.collapsed) {
    background: #e0e7ff;
    color: #0072ff;
  }
  /* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 40px;
}
