
/* Base Styles */
:root {
    /* --brand-purple: #7e57c2;
    --brand-light-purple: #dbd1f8;
    --brand-soft-purple: #f5f3ff; */
    --brand-purple: #ff6600;
    --brand-light-purple: #ffae00;
    --brand-soft-purple: rgb(255, 234, 156);
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --error: #ef4444;
    --success: #22c55e;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    min-height: 100vh;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  /* Button Styles */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-primary {
    background-color: var(--brand-purple);
    color: var(--white);
  }
  
  .btn-primary:hover {
    background-color: #6a46b0;
  }
  
  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--brand-purple);
    color: var(--brand-purple);
  }
  
  .btn-outline:hover {
    background-color: var(--brand-soft-purple);
  }
  
  /* Header Styles */
  .header {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .logo-icon {
    width: 2rem;
    height: 2rem;
    /* background-color: var(--brand-purple); */
    border-radius: 0.5rem;
  }
  
  .logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .nav-link {
    margin-left: 1.5rem;
    color: var(--text-gray);
    transition: color 0.2s ease;
  }
  
  .nav-link:hover {
    color: var(--brand-purple);
  }
  
  .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-gray);
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .mobile-nav.active {
    display: flex;
  }
  
  .mobile-nav .nav-link {
    margin: 0.75rem 0;
    display: block;
  }
  
  /* Hero Section */
  .hero {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, var(--white), var(--brand-soft-purple), var(--white));
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }
  
  .hero-text {
    max-width: 36rem;
  }
  
  .hero-text h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .text-purple {
    color: var(--brand-purple);
  }
  
  .hero-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero-image {
    position: relative;
    width: 20rem;
    height: 20rem;
  }
  
  .circle-outer {
    position: absolute;
    inset: 0;
    background-color: var(--brand-purple);
    border-radius: 50%;
    opacity: 0.1;
  }
  
  .circle-inner {
    position: absolute;
    inset: 1rem;
    background-color: var(--brand-light-purple);
    border-radius: 50%;
    opacity: 0.2;
  }
  
  .person-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Features Section */
  .features {
    padding: 4rem 0;
    background-color: var(--brand-soft-purple);
  }
  
  .section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }
  
  .section-header p {
    color: var(--text-gray);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  .benefit-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
  }
  
  .benefit-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .benefit-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--brand-soft-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
  }
  
  .benefit-icon svg {
    color: var(--brand-purple);
  }
  
  .benefit-title {
    font-weight: 600;
    font-size: 1.125rem;
  }
  
  .benefit-description {
    color: var(--text-gray);
  }
  
  /* Application Form */
  .application-form {
    padding: 4rem 0;
  }
  
  .form-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 64rem;
    margin: 0 auto;
  }
  
  .form-row, .form-third, .form-fourth  {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .date-input-group {
    display: flex;
    gap: 3px;
    align-items: center;
}

.date-input-group input, textarea  {
    width: 50%;
}
  
  input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    color: var(--text-dark);
  }
  
  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 2px rgba(126, 87, 194, 0.1);
  }
  
  textarea {
    resize: none;
    min-height: 8rem;
  }

  textarea.link {
    resize: none;
    min-height: 5rem;
  }
  
  
  .file-upload {
    border: 1px dashed var(--border-color);
    border-radius: 0.375rem;
    padding: 1rem;
    cursor: pointer;
    transition: border-color 0.3s;
  }
  
  .file-upload:hover {
    border-color: var(--brand-purple);
  }
  
  .file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }
  
  .upload-icon {
    display: flex;
    align-items: center;
    color: var(--text-light);
  }
  
  .hidden-file-input {
    display: none;
  }
  
  .file-status {
    display: flex;
    align-items: center;
    color: var(--brand-purple);
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }

  .info-help{
    color: var(--brand-light-purple);
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }

  .info-message{
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  
  .error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
  }
  
  /* Footer Styles */
  .footer {
    background-color: #1f2937;
    color: var(--white);
    padding: 1.5rem 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-column h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-column a {
    color: #9ca3af;
    transition: color 0.2s ease;
  }
  
  .footer-column a:hover {
    color: var(--brand-purple);
  }
  
  .footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid #374151;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: var(--brand-purple);
  }
  
  /* Toast Notification */
  .toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 90%;
    max-width: 24rem;
    z-index: 1000;
    transition: transform 0.3s ease;
  }
  
  .toast.show {
    transform: translateX(-50%) translateY(0);
  }
  
  .toast-content {
    display: flex;
    align-items: flex-start;
  }
  
  .toast-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    margin-right: 0.75rem;
  }
  
  .toast-icon.success {
    background-color: var(--success);
  }
  
  .toast-icon.error {
    background-color: var(--error);
  }
  
  .toast-message {
    flex: 1;
  }
  
  .toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .toast-description {
    color: var(--text-gray);
    font-size: 0.875rem;
  }
  
  /* Responsive Styles */
  @media (min-width: 640px) {
    .hero-text h1 {
      font-size: 2.5rem;
    }
  
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .form-row {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .form-third{
      grid-template-columns: repeat(3, 1fr);
    }
    
    .form-fourth {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .desktop-nav {
      display: flex;
    }
  
    .menu-toggle {
      display: none;
    }
  
    .hero-content {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .footer-content {
      grid-template-columns: repeat(4, 1fr);
    }
  
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .form-container {
      padding: 3rem;
    }
  }
  
  /* Animation Classes */
  .fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.5s ease forwards;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }