    .about {
      margin: 0;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: url('../images/1backgroundblue.png') no-repeat center center/cover;
      font-family: Arial, sans-serif;
      color: #fff;
    }

    .glass-container {
      margin-top: 5rem;
      margin-bottom: 3rem;
      width: 1260px;
      max-width: 90%;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      backdrop-filter: blur(16px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
      padding: 2.5rem;
      border: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
    }
.contact{
  color: #fff;
}
    .about-header {
      text-align: center;
    }

    .about-header h1 {
      font-size: 28px;
      font-weight: 600;
    }

    .about-header p {
      color: #d3d3d3;
      font-size: 15px;
      max-width: 700px;
      margin: 0.5rem auto 0;
      line-height: 1.6;
    }

    .about-content {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2rem;
      align-items: start;
    }


    .about-text {
      font-size: 14px;
      line-height: 1.8;
    }

    .about-text h2 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #5ab9ff;
    }

    .about-text p {
      margin-bottom: 1.5rem;
      color: #e0e0e0;
    }

    .employee-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      backdrop-filter: blur(10px);
    }

    .employee-card img {
      width: 250px;
      height: 250px;
      border-radius: 10%;
      border: 2px solid rgba(255, 255, 255, 0.3);
      object-fit: cover;
      margin-bottom: 1rem;
    }

    .employee-card h3 {
      margin: 0.3rem 0 0.2rem;
      font-weight: 600;
    }

    .employee-card p {
      font-size: 13px;
      color: #ccc;
    }

    .values-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .value-box {
      flex: 1 1 250px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 1.2rem;
      text-align: center;
      backdrop-filter: blur(10px);
      transition: transform 0.2s ease;
    }

    .value-box:hover {
      transform: translateY(-5px);
    }

    .value-box h4 {
      
      margin-bottom: 0.5rem;
    }

    .value-box p {
      font-size: 13px;
      color: #dcdcdc;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .about-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .employee-card {
        margin-top: 2rem;
      }

      .glass-container {
        max-width: 410px;
        width: 100%;
        padding: 1.5rem;
      }
    }