/* thili .net*/
    .team-section {
      display: flex;
      align-items: stretch;
      height: 100vh;
    }

  

    .team-content {
      flex: 1;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .team-content h1 {
      font-size: 32px;
      margin-bottom: 40px;
    }

    .team-member {
      margin-bottom: 40px;
    }

    .team-member h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .team-member p {
      font-size: 16px;
      line-height: 1.5;
      max-width: 500px;
    }

    @media (max-width: 768px) {
      .team-section {
        flex-direction: column;
      }
      .team-image, .team-content {
        flex: none;
        height: auto;
      }
    }
    .team-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.team-member h5 {
  font-size: 1.2rem;
  color: #333;
}

.team-member p {
  font-size: 1rem;
  line-height: 1.6;
}

    .subtitle {
      font-size: 16px;
      color: #555;
      margin-bottom: 60px;
    }

    .main {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
    }

    .column {
      flex: 1;
      max-width: 300px;
      text-align: left;
    }

    .column h3 {
      font-size: 18px;
      font-weight: 700;
      margin: 0 0 5px;
    }

    .column p {
      font-size: 14px;
      color: #555;
      margin: 0 0 25px;
    }

    .flower {
      position: relative;
      width: 300px;
      height: 300px;
    }

    .petal {
      position: absolute;
      width: 100px;
      height: 100px;
      background-color: #f4f2ee;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      color: #333;
    }

    /* Circular petal positions */
    .petal1 { top: 0%; left: 50%; transform: translate(-50%, -50%); }
    .petal2 { top: 25%; left: 95%; transform: translate(-50%, -50%); }
    .petal3 { top: 75%; left: 95%; transform: translate(-50%, -50%); }
    .petal4 { top: 100%; left: 50%; transform: translate(-50%, -50%); }
    .petal5 { top: 75%; left: 5%; transform: translate(-50%, -50%); }
    .petal6 { top: 25%; left: 5%; transform: translate(-50%, -50%); }

    @media (max-width: 1000px) {
      .main {
        flex-direction: column;
        gap: 40px;
      }

      .column {
        max-width: 100%;
        text-align: center;
      }
    }



    .pyramid-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }
 .pyramid {
      width: 400px;
      height: 300px;
      background: linear-gradient(to top, #eae6df 33.3%, #dcd7cf 33.3% 66.6%, #ccc6bd 66.6%);
      clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
      position: relative;
      margin-right: 2rem2;
    }

    .pyramid .layer {
      width: 0;
      height: 0;
      border-left: 125px solid transparent;
      border-right: 125px solid transparent;
      margin: 0 auto;
      position: relative;
    }

  

    .pyramid .icon {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 32px;
      height: 32px;
    }

    .pyramid .icon.lightbulb {
      top: 12%;
    }

    .pyramid .icon.gear {
      top: 45%;
    }

    .pyramid .icon.robot {
      top: 78%;
    }

    .pyramid-texts {
      display: flex;
      flex-direction: column;
      gap: 40px;
      justify-content: center;
    }

    .pyramid-texts .block h4 {
      margin: 0;
      font-size: 20px;
      font-weight: bold;
    }

    .pyramid-texts .block p {
      margin: 5px 0 0;
      font-size: 15px;
      color: #444;
    }

    
    @media (max-width: 768px) {
      .pyramid-section {
        flex-direction: column;
        gap: 30px;
      }
    }
   /* Cards Section */
    .cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .card {
      display: flex;
      align-items: flex-start;
      background: white;
      padding: 1.5rem;
      border-radius: 5px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      gap: 3rem;
    }

    .label img {
      width: 48px;
      height: auto;
    }

    .card-content h3 {
      margin: 0.2rem 0;
      font-size: 1.5rem;
    }

    .card-content p {
      margin: 0.5rem 0;
      font-size: 1rem;
      color: #555;
    }

    @media (max-width: 768px) {
      .pyramid-container {
        flex-direction: column;
        align-items: flex-start;
      }

      .cards {
        grid-template-columns: 1fr;
      }
    }
        .container {
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }
  

    .layout {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .text-block {
      width: 250px;
      text-align: left;
    }

    .text-block h3 {
      margin: 0;
      font-size: 18px;
    }

    .text-block p {
      margin: 4px 0 20px;
      font-size: 14px;
      color: #555;
    }

    .circle-image {
      width: 300px;
      height: auto;
    }

    @media (max-width: 768px) {
      .layout {
        flex-direction: column;
        gap: 40px;
      }

      .text-block {
        text-align: center;
        width: 100%;
      }
    }
       body {
      margin: 0;
      padding: 0;
      background-color: #f2f2f2;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .form-wrapper {
      max-width: 700px;
      
      margin: 50px auto;
      background-color: white; /* White container */
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #333;
    }

    input, select, textarea {
      width: 100%;
      height: 50px;
      padding: 12px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #fff;
      font-size: 15px;
      color: #333;
      box-sizing: border-box;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #888;
      outline: none;
    }

    button {
      background-color: #ff6600; /* Orange color */
      color: white;
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      width: 100%;
    }

    button:hover {
      background-color: #e65c00;
    }

    @media (max-width: 600px) {
      .form-wrapper {
        margin: 20px;
        padding: 20px;
      }
    }
   

