  body {
    font-family: "Poppins", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #222222;
  }


  /* Value section 1 */
  .values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
  }

  .values-section h1 {
    color: #d4b15f;
    letter-spacing: 1px;
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .values-section h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 60px;
  }

  .values-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }

  .value-box {
    text-align: left;
  }



  /* ---- ICON STYLES ---- */
  .icon {
    width: 36px;
    height: 36px;
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
  }

  /* Gold color for all icons */
  .icon::before, .icon::after {
    content: "";
    position: absolute;
    border: 2.5px solid #d4b15f;
    border-radius: 3px;
  }



  /* 🔗 Link Icon */
  .link-icon::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    left: 0;
    top: 10px;
    border-color: #d4b15f transparent transparent #d4b15f;
    transform: rotate(-45deg);
  }

  .link-icon::after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    right: 0;
    top: 10px;
    border-color: #d4b15f transparent transparent #d4b15f;
    transform: rotate(135deg);
  }



  /* 📣 Megaphone Icon */
  .megaphone-icon::before {
    width: 18px;
    height: 12px;
    left: 8px;
    top: 12px;
    border: 2.5px solid #d4b15f;
    border-radius: 2px;
    transform: skew(-15deg);
  }

  .megaphone-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2.5px solid #d4b15f;
    border-radius: 50%;
    right: 0;
    top: 12px;
  }



  /* 🎯 Target Icon */
  .target-icon::before {
    width: 24px;
    height: 24px;
    border: 2.5px solid #d4b15f;
    border-radius: 50%;
    top: 4px;
    left: 4px;
  }

  .target-icon::after {
    width: 10px;
    height: 10px;
    border: 2.5px solid #d4b15f;
    border-radius: 50%;
    top: 12px;
    left: 12px;
  }

  .value-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
  }

  .value-box p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 768px) {
    .values-section {
      margin: 50px auto;
    }
    .values-section h2 {
      font-size: 32px;
      margin-bottom: 40px;
    }
  }

  @media (max-width: 480px) {
    .values-container {
      gap: 30px;
    }
    .value-box {
      text-align: center;
    }
    .icon {
      margin: 0 auto 20px;
    }
  }



    /* Value section 2 */
        body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background-color: #ffffff; /* deep navy */
      color: #fff;
    }

    .value-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #0b1221;
    }

    .value-section h2 {
      font-size: 2.5rem;
      color: #f4c542; /* gold */
      margin-bottom: 50px;
    }

    .value-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .value-item {
      flex: 1 1 300px;
      max-width: 350px;
      text-align: center;
      padding: 20px;
      background-color: #131b30;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(244, 197, 66, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .value-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(244, 197, 66, 0.3);
    }

    .value-item i {
      font-size: 40px;
      color: #f4c542;
      margin-bottom: 20px;
    }

    .value-item h3 {
      color: #fff;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .value-item p {
      color: #d9d9d9;
      line-height: 1.7;
      font-size: 1rem;
    }



    /* --- second section (Open Communication, Creativity, Human Touch) --- */
    .trust-section {
      background-color: #0b1221;
      padding: 60px 20px;
    }

    .trust-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .trust-item {
      flex: 1 1 300px;
      max-width: 350px;
      background-color: #131b30;
      border-radius: 12px;
      padding: 25px;
      text-align: left;
      box-shadow: 0 0 10px rgba(244, 197, 66, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .trust-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(244, 197, 66, 0.3);
    }

    .trust-item i {
      font-size: 36px;
      color: #f4c542;
      margin-bottom: 20px;
      display: block;
    }

    .trust-item h3 {
      color: #fff;
      font-size: 1.4rem;
      margin-bottom: 15px;
    }

    .trust-item p {
      color: #cfcfcf;
      line-height: 1.7;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .values-container, .trust-container {
        flex-direction: column;
        align-items: center;
      }
    }



    /* SLIDE VERSION */
    .success-section {
  background-color: #0b1221;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  overflow: hidden;
}

.success-section h2 {
  font-size: 2.5rem;
  color: #f4c542;
  margin-bottom: 10px;
}

.success-section .subtitle {
  color: #d9d9d9;
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.7;
}

.carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  background-color: #131b30;
  box-shadow: 0 0 20px rgba(244,197,66,0.1);
}

.carousel-track {
  display: flex;
  transition: transform 1s ease;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 50px 30px;
  text-align: center;
}

.carousel-item p {
  font-size: 1.1rem;
  color: #eaeaea;
  line-height: 1.7;
  margin: 20px 0;
}

.carousel-item span {
  color: #f4c542;
  font-weight: 600;
}

.svg-logo {
  margin-bottom: 15px;
}

.nav-btn {
  background-color: #f4c542;
  border: none;
  color: #0b1221;
  font-size: 22px;
  padding: 10px 15px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-btn:hover { background-color: #d9b83e; }
.prev { left: 20px; }
.next { right: 20px; }

@media (max-width: 768px) {
  .carousel-item p { font-size: 1rem; }
  .nav-btn { font-size: 18px; padding: 8px 12px; }
}



/* FOOTER SECTION */

.site-footer {
  background-color: #0b1221;
  color: #d9d9d9;
  text-align: center;
  padding: 25px 10px;
  border-top: 1px solid rgba(244,197,66,0.3);
  font-family: 'Poppins', sans-serif;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.site-footer span {
  color: #f4c542;
  font-weight: 600;
}

.site-footer a {
  color: #f4c542;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

@media (max-width: 600px) {
  .site-footer p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
}







