/* ==========================================================================
   1. Variables, Reset & Colored Text Classes
   ========================================================================== */

   :root {
    --black: #000000;
    --green-dark: #246241;
    --green-light-2: #DEF1E7;
    --primary-color: #007bff;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Figtree', sans-serif;
    line-height: 1.6;
    color: #333;
    transition: background-color 0.5s ease;
    overflow-x: hidden;
  }
  
  .colored-about {
    color: #246241;
  }
  .colored-services {
    color: #815D00;
  }
  .colored-framework {
    color: #39608E;
  }
  
  /* ==========================================================================
     2. Navbar & Header Buttons
     ========================================================================== */
  
  .navbar {
    display: flex;
    align-items: center;
    padding: 0px 100px;
    background: #000;
  }
  
  .logo img {
    height: 125px;
  }
  
  .hamburger {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }
  
  .nav-center {
    flex: 1;
    text-align: center;
  }
  .nav-links {
    list-style: none;
    display: inline-flex;
  }
  .nav-links li {
    margin: 0 20px;
  }
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.25s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  .nav-links a:hover {
    color: #2FE784;
  }
  
  .nav-contact a.button.small.secondary {
    letter-spacing: -0.14px;
    padding: 12px 22px;
    font-size: 14px;
    line-height: 144%;
    border-radius: 100px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .nav-contact a.button.small.secondary:hover {
    transform: scale(0.95);
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
  }
  
  /* ==========================================================================
     3. Hero Section & Buttons
     ========================================================================== */
  
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 50px 100px;
    background: #000;
    color: #fff;
    min-height: 100vh;
    text-align: center;
  }
  
  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-content h1 {
    display: block;
    font-family: 'Besley', serif;
    font-weight: 700;
    font-size: clamp(36px, 7vw, 72px);
    line-height: 1.12;
    margin-bottom: 40px;
  }
  
  .hero-content p {
    font-size: 18px;
    line-height: 1.44;
    margin: 0 auto 40px;
    max-width: 752px;
  }
  
  .hero-illustration {
    position: absolute;
    width: 200px;
    height: auto;
    max-width: 100%;
  }
  .hero-illustration-left {
    left: 150px;
    top: 60%;
    transform: translateY(-50%);
  }
  .hero-illustration-right {
    right: 150px;
    top: 60%;
    transform: translateY(-50%);
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .hero-buttons .button {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .hero-buttons .button:hover {
    transform: scale(0.95);
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }
  .hero-buttons .button.secondary {
    background: #2FE784;
    color: #000;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .hero-buttons .button.secondary:hover {
    transform: scale(0.95);
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2);
    background: #2FE784;
    color: #000;
  }
  
  /* ==========================================================================
     4. General Button Class
     ========================================================================== */
  
  .button {
    background: #fff;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
  }
  .button:hover {
    background: var(--primary-color);
    color: #fff;
  }
  
  /* ==========================================================================
     5. Section Base & Containers
     ========================================================================== */
  
  .section {
    padding: 100px 50px;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section.about,
  .section.yellow,
  .section.blue,
  .section.black {
    background: transparent;
  }
  
  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .about-heading,
  .services-heading {
    margin: 0;
  }
  .about-heading {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #000;
  }
  
  /* ==========================================================================
     6. Banners & Blocks
     ========================================================================== */
  
  .big-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-radius: 40px;
    padding: 64px 56px;
    margin-bottom: 40px;
  }
  .big-banner.black {
    background-color: #000;
    color: #fff;
  }
  .banner-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .banner-image img {
    border-radius: 20px;
  }
  
  .two-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .two-rectangles-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .two-rectangles-grid .illustration-and-text-block {
    flex: 1 1 0;
  }
  
  .banner-block {
    border-radius: 40px;
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .banner-block.green-dark {
    background-color: var(--green-dark);
    color: #fff;
  }
  .banner-block.green-light-2 {
    background-color: var(--green-light-2);
    color: #000;
  }
  
  /* ==========================================================================
     7. Services & White Cards (Card Layouts)
     ========================================================================== */
  
  .services-grid,
  .whitecards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .whitecards-grid {
    margin-top: 40px;
  }
  
  .service-card,
  .white-card {
    background-color: #fff;
    margin-top: 19px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 56px 56px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .service-card h3,
  .white-card h3 {
    color: #000;
    margin-bottom: 10px;
  }
  .service-card p,
  .white-card p {
    color: #666;
    line-height: 1.5;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  .step-icon {
    background: #2FE784;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .service-step-icon {
    background: #FDE680;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  /* ==========================================================================
     8. Contact Section & Form
     ========================================================================== */
  
  .contact-header {
    background: linear-gradient(135deg, #fff 0%, var(--light-gray) 100%);
    padding: 3rem 2rem;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .contact-header h1 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: #000;
    display: inline-block;
  }
  .contact-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1em;
  }
  
  .combined-contact-card {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    margin-top: 3rem;
    padding: 0;
    width: 100%;
  }
  .combined-contact-card .contact-section {
    flex: 1 1 calc(50% - 1rem);
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .combined-contact-card .card-header {
    background: #fff;
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .combined-contact-card .contact-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #000;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
  }
  .combined-contact-card .contact-section h2 i {
    color: #000;
  }
  .combined-contact-card .contact-section p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
  }
  .combined-contact-card .card-button-wrapper,
  .combined-contact-card .contact-form {
    padding: 2rem;
    width: 100%;
  }
  .combined-contact-card .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .combined-contact-card button {
    width: 100%;
    background: #2FE784;
    color: #000;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
  }
  .combined-contact-card button:hover,
  .combined-contact-card .card-button-wrapper button:hover {
    transform: scale(0.95);
    box-shadow: inset 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  .combined-contact-card .form-group {
    margin-bottom: 1rem;
    width: 100%;
  }
  .combined-contact-card .form-group input,
  .combined-contact-card .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
  }
  .combined-contact-card .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  .combined-contact-card .form-group input:focus,
  .combined-contact-card .form-group textarea:focus {
    outline: none;
    border-color: #3898ec;
    box-shadow: 0 0 0 4px rgba(56, 152, 236, 0.1);
  }
  .combined-contact-card .form-group input::placeholder,
  .combined-contact-card .form-group textarea::placeholder {
    color: #999;
  }
  
  /* ==========================================================================
     9. Additional Layouts & Media Queries
     ========================================================================== */
  
  .two-rectangles-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
  }
  .illustration-and-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 56px;
    border-radius: 40px;
    gap: 40px;
  }
  .illustration-and-text-block .banner-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .illustration-and-text-block.blue-dark {
    background-color: #39608e;
    color: #fff;
  }
  .illustration-and-text-block.blue-light-2 {
    background-color: #e2eefc;
    color: #000;
  }
  .banner-text h3 {
    font-size: 2.75rem;
    margin-bottom: 10px;
    line-height: 1.1;
  }
  .banner-text p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .big-banner.white {
    background-color: #fff;
    color: #000;
  }
  .big-banner .banner-text {
    max-width: 500px;
    word-wrap: break-word;
  }
  @media (max-width: 768px) {
    .big-banner .banner-text {
      max-width: 100%;
    }
  }
  
  .illustration-and-text-block.green-dark {
    background-color: var(--green-dark);
    color: #fff;
  }
  .illustration-and-text-block.green-light-2 {
    background-color: var(--green-light-2);
    color: #000;
  }
  
  .illustration-and-text-block.green-dark,
  .illustration-and-text-block.green-light-2 {
    display: flex;
    flex-direction: column;
  }
  .illustration-and-text-block.green-dark .banner-image,
  .illustration-and-text-block.green-light-2 .banner-image {
    order: 1;
  }
  .illustration-and-text-block.green-dark .banner-text,
  .illustration-and-text-block.green-light-2 .banner-text {
    order: 2;
  }
  
  /* ==========================================================================
     10. Section Title Cards
     ========================================================================== */
  
  .section-title-container {
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 40px;
    z-index: 1;
  }
  .section-title-card {
    border-radius: 40px;
    padding: 104px;
    transition: background-color 0.2s ease;
    width: 100%;
  }
  .about .section-title-card {
    background-color: #C2DECF;
    color: #000;
  }
  .yellow .section-title-card {
    background-color: #FDE680;
    color: #000;
  }
  .blue .section-title-card { 
    background-color: #cce5ff;
    color: #000;
  }
  .black .section-title-card {
    background-color: #000;
    color: #fff;
  }
  .section-title-card h2 {
    margin: 0;
    font-size: 4rem;
    line-height: 1.2;
    text-align: left;
  }
  #Employers .section-title-card,
  #JobSeekers .section-title-card,
  #FAQ .section-title-card,
  #Contact .section-title-card,
  #PerformanceMetrics .section-title-card,
  #Process .section-title-card {
    border: 3px solid #2FE784;
  }
  
  /* ==========================================================================
     11. Performance Metrics
     ========================================================================== */
  
  .four-blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  .value-block {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 56px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .value-content .large-heading {
    font-size: 4rem;
    color: #2FE784;
    font-weight: 600;
    padding-bottom: 32px;
  }
  .semibold-l {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
  }
  .regular-l {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.5;
  }
  @media (max-width: 768px) {
    .four-blocks-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* ==========================================================================
     12. FAQ / Accordion
     ========================================================================== */
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .accordion-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px 40px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
  }
  .accordion-item:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }
  .accordion-item-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    font-size: 18px;
  }
  .accordion-item-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.1s ease-in-out, opacity 0.3s ease-in-out;
    display: flex;
    justify-content: flex-start;
  }
  .accordion-item.active .accordion-item-content {
    max-height: 300px;
    opacity: 1;
    padding-top: 20px;
  }
  .accordion-item-content p {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.125rem;
    margin: 0;
    max-width: 720px;
  }
  .accordion-item-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2FE784;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
  }
  .icon-toggle {
    font-size: 16px;
    color: black;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
  }
  
  /* ==========================================================================
     13. Footer
     ========================================================================== */
  
  footer {
    padding-top: 104px;
    padding-bottom: 64px;
    background: #000;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo img {
    height: 50px;
  }
  .footer-socials {
    margin-right: 10px;
  }
  .footer-socials a {
    color: #ffffff99;
    margin-left: 15px;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  .footer-socials a:hover {
    color: #2FE784;
  }
  .footer-divider {
    border: none;
    border-top: 1px solid #ffffff1f;
    margin: 20px 0;
  }
  .footer-bottom p {
    margin: 0;
    color: #ffffff99;
    font-size: 0.75rem;
  }
  
  /* ==========================================================================
     14. MOBILE MENU OVERLAY (and Mobile Layout Tweaks)
     ========================================================================== */
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
  }
  
  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    text-align: center;
  }
  .mobile-nav-links a {
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .mobile-nav-links a:hover {
    color: #2FE784;
  }
  
  .mobile-menu .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
  }
  
  /* =========================
     MEDIA QUERIES: MOBILE
     ========================= */
  @media (max-width: 768px) {
    .navbar {
      padding: 0 20px;
    }
    .hamburger {
      display: block;
      margin-left: auto;
    }
    .nav-center {
      display: none;
    }
    .nav-contact {
      display: none;
    }
  
    .hero {
      min-height: 100vh;
      flex-direction: column;
      padding: 50px 20px;
    }
    .hero-illustration-left {
      display: none;
    }
    .hero-illustration-right {
      position: static;
      transform: none;
      margin: 20px auto 0;
      max-width: 200px;
    }
  
    .two-banner-grid,
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .two-rectangles-grid {
      flex-direction: column;
    }
  
    .banner-block,
    .service-card,
    .white-card {
      margin: 0 auto;
    }
  
    .banner-block h3,
    .illustration-and-text-block h3 {
      font-size: 1.85rem;
      text-align: center;
    }
  
    .illustration-and-text-block {
      align-items: center;
      text-align: center;
    }
  
    .section-title-card {
      padding: 40px;
    }
    .section-title-card h2 {
      font-size: 2.5rem;
      text-align: center;
    }
  
    #Services .service-card,
    #Process .service-card {
      text-align: left !important;
      align-items: flex-start !important;
    }
  
    .combined-contact-card .contact-section {
      flex: 1 1 100%;
    }
  
    .big-banner {
      flex-direction: column;
    }
  
    .banner-block h3,
    .illustration-and-text-block h3,
    .big-banner .banner-text h3 {
      font-size: 1.85rem;
      text-align: center;
    }
    .big-banner .banner-text p {
      text-align: center;
    }
  
    .accordion-item-trigger {
      gap: 20px;
    }
    .accordion-item-content {
      padding: 0;
    }
    .accordion-item.active .accordion-item-content {
      padding-bottom: 0;
    }
  
    footer {
      padding: 104px 20px 64px;
    }
  
    .section {
      padding: 60px 20px;
    }
  
    .big-banner {
      padding: 64px 56px;
      gap: 40px;
    }
  
    .service-card {
      padding: 56px;
    }
  }