body {
      font-family: Arial, sans-serif;
      margin: 0;
      color: #fff;
      text-align: center;
      padding: 40px;
      background: linear-gradient(135deg, #007bff 50%, #409eff 50%);
      min-height: 100vh;
    }
    h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #00ffcc;
    }
    .adder-container {
      max-width: 500px;
      margin: auto;
      background-color: #1e1e1e;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 0 15px rgba(0, 255, 204, 0.3);
    }
    input[type="text"] {
      width: 150px;
      padding: 10px;
      margin: 10px;
      font-size: 1.2rem;
      text-align: center;
      border: none;
      border-radius: 8px;
    }
    button {
      padding: 12px 25px;
      font-size: 1rem;
      background-color: #00ffcc;
      color: #000;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s ease;
    }
    button:hover {
      background-color: #00ddb5;
    }
    .bit-input {
      width: 50px;
      height: 60px;
      text-align: center;
      margin: 0 5px;
      font-size: 2rem;
      border-radius: 10px;
      border: none;
    }
    .binary-input-group {
      margin-bottom: 20px;
    }
    #result {
      margin-top: 20px;
      font-size: 1.2rem;
    }
    #error {
      color: #ff5555;
      margin-top: 10px;
    }
    #resultImage, #secondResultImage {
      margin-top: 20px;
      max-width: 500px;
      height: 500px;
      border-radius: 20px;
      display: block;
      cursor: pointer;
      object-fit: cover;
      margin-left: auto;
      margin-right: auto;
    }
    #imageLabel, #secondImageLabel {
      text-align: center;
    }
    #imageModal, #imageModal2 {
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.8);
      display: none;
      justify-content: center;
      align-items: center;
    }
    #imageModal img, #imageModal2 img {
      box-shadow: 0 0 20px white;
      border-radius: 10px;
      max-width: 90%;
      max-height: 90%;
      transition: 0.3s;
    }
    #imageModal:hover, #imageModal2:hover {
      cursor: zoom-out;
    }
    .logo-container {
      position: absolute;
      top: 10px;
      left: 20px;
      z-index: 1000;
    }
    .logo-img {
      width: 200px;
      height: auto;
    }
    .citlogo {
      position: absolute;
      top: 10px;
      right: 20px;
      z-index: 1000;
    }
    .citlogoimg {
      width: 350px;
      height: top;
    }
    .logic {
      padding: 12px 25px;
    font-size: 1rem;
    background-color: #2c9aa4;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    }
    .truth {
      padding: 12px 25px;
    font-size: 1rem;
    background-color: #2c9aa4;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    }
    .footer {
      text-align: center;
      padding: 20px;
      background: linear-gradient(135deg, #007bff 50%, #409eff 50%);
      color: #000000;
      margin-top: 50px;
    }
    /* Partners Section */
.partners-section {
  background: whitesmoke;
  color: #000;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px auto;
  max-width: 1000px;
}

.partners-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.logos {
  flex: 1 1 50%;
  text-align: center;
}

.logos img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.text {
  flex: 1 1 40%;
}

.text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.text p {
  font-size: 1.1rem;
  line-height: 1.6;
}