/* Brand Colors */
:root {
    --royal-blue: #1a237e;
    --royal-blue-light: #303f9f;
    --white: #ffffff;
    --red: #e53935;
    --red-light: #ef5350;
  }

  .solutions-accordion {
    background: linear-gradient(135deg, #dae1e7 0%, #dae1e7 100%);
    position: relative;
    overflow: hidden;
}

.accordion-container {
    /* max-width: 900px; */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accordion-item {
    margin-bottom: 10px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: #f9fafc;
}

.accordion-header[aria-expanded="true"] {
    background: #f8fafc;
}

.accordion-header[aria-expanded="true"] .accordion-indicator {
    transform: rotate(180deg);
}

.accordion-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.accordion-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e266d;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

.accordion-indicator {
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #4a6cf7;
}

.accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.accordion-content-inner {
    padding: 0 0 30px 70px;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
    max-height: 500px;
    padding: 0 30px 30px;
}

.accordion-content p {
    color: #56607d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.solution-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #56607d;
    font-size: 0.95rem;
}

.solution-features li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4a6cf7;
}

/* Keep existing gradient classes and button styles */
.bg-gradient-primary { background: linear-gradient(45deg, #4a6cf7, #6a8af8); }
.bg-gradient-success { background: linear-gradient(45deg, #28c76f, #48d88f); }
.bg-gradient-info { background: linear-gradient(45deg, #00cfe8, #20dffd); }
.bg-gradient-warning { background: linear-gradient(45deg, #ff9f43, #ffb976); }
.bg-gradient-danger { background: linear-gradient(45deg, #ea5455, #f08182); }
.bg-gradient-purple { background: linear-gradient(45deg, #7367f0, #9389f3); }

.btn-primary {
    background-color: #4a6cf7;
    border-color: #4a6cf7;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a5ce9;
    border-color: #3a5ce9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3);
}

/* Keep existing section header styles */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #4a6cf7;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e266d;
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #4a6cf7, #8a63f7);
    border-radius: 2px;
}



  /* Careers Section */
  .careers-section {
    background: white;
    position: relative;
    overflow: hidden;
  }

  .careers-container {
    position: relative;
  }

  .careers-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a6cf7;
    margin-bottom: 15px;
    font-weight: 600;
    background: rgba(74, 108, 247, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
  }

  .careers-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 992px) {
    .careers-card {
      flex-direction: row;
    }
  }

  .careers-illustration {
    background: linear-gradient(135deg, #4a6cf7 0%, #6a8af8 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  @media (min-width: 992px) {
    .careers-illustration {
      width: 40%;
    }
  }

  .illustration-container {
    position: relative;
    width: 200px;
    height: 200px;
  }

  .illustration-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }

  .illustration-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
  }

  .careers-content {
    padding: 40px;
    flex-grow: 1;
  }

  @media (min-width: 992px) {
    .careers-content {
      width: 60%;
    }
  }

  .careers-content h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #343a40;
    position: relative;
    padding-bottom: 15px;
  }

  .careers-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4a6cf7;
  }

  .vacancy-status {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
  }

  .status-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #4a6cf7;
    font-size: 1.5rem;
  }

  .status-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #343a40;
  }

  .status-details p {
    color: #6c757d;
    margin: 0;
  }

  .careers-cta p {
    margin-bottom: 20px;
    color: #6c757d;
  }

  .btn-subscribe {
    background: #4a6cf7;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
  }

  .btn-subscribe:hover {
    background: #3a5ce9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 108, 247, 0.4);
    color: white;
  }

  .btn-subscribe i {
    margin-right: 8px;
  }

  /* Surveys Section */
  .surveys-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
  }

  .surveys-container {
    position: relative;
  }

  .surveys-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a6cf7;
    margin-bottom: 15px;
    font-weight: 600;
    background: rgba(74, 108, 247, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
  }

  .surveys-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 992px) {
    .surveys-card {
      flex-direction: row;
    }
  }

  .construction-animation {
    background: linear-gradient(135deg, #ff9f43 0%, #ffb976 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  @media (min-width: 992px) {
    .construction-animation {
      width: 40%;
    }
  }

  .construction-icon {
    position: relative;
    font-size: 4rem;
    color: white;
    animation: bounce 2s infinite ease-in-out;
  }

  .tools {
    position: absolute;
  }

  .tools i {
    position: absolute;
    color: white;
    font-size: 1.5rem;
    animation: swing 3s infinite ease-in-out;
  }

  .tools i:first-child {
    top: -30px;
    left: -30px;
    transform-origin: bottom right;
  }

  .tools i:last-child {
    bottom: -30px;
    right: -30px;
    transform-origin: top left;
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  @keyframes swing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
  }

  .surveys-content {
    padding: 40px;
    flex-grow: 1;
  }

  @media (min-width: 992px) {
    .surveys-content {
      width: 60%;
    }
  }

  .surveys-content h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #343a40;
    position: relative;
    padding-bottom: 15px;
  }

  .surveys-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff9f43;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 159, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #ff9f43;
    font-size: 1.2rem;
  }

  .feature-text {
    font-weight: 500;
    color: #343a40;
  }

  .progress-container {
    margin: 30px 0;
  }

  .progress-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 8px;
  }

  .progress-bar {
    height: 10px;
    background: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(to right, #ff9f43, #ff6b6b);
    border-radius: 5px;
    position: relative;
    transition: width 1.5s ease;
  }

  .progress-fill span {
    position: absolute;
    right: 5px;
    top: -25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff9f43;
  }

  .launch-countdown {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-weight: 500;
    color: #343a40;
  }

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }

    .solution-card {
        padding: 25px;
    }

    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .reflections-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header h3 {
        font-size: 2rem;
    }

    .poem-intro-card {
        padding: 20px;
    }

    .poem-content {
        padding: 0 20px 20px 60px;
    }

    .poem-number {
        margin-right: 15px;
        font-size: 1.5rem;
    }

    .poem-title {
        font-size: 1.1rem;
    }

    .display-3 {
        font-size: 2.5rem;
      }

      .careers-illustration, .construction-animation {
        padding: 30px;
      }

      .careers-content, .surveys-content {
        padding: 30px;
      }

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

