* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #f5f5f5;
  }
  .logo {
    height: 50px;
  }
  .navbar a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #0077b6, #90e0ef);
    color: white;
    padding: 2rem;
  }
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .left h2 {
    font-size: 2.5rem;
  }
  .left h2 span {
    color: #00ffcc;
  }
  .qr {
    width: 100px;
    margin-top: 1rem;
  }
  .right {
    max-width: 400px;
  }
  .pm-image {
    width: 100%;
    max-width: 200px;
  }
  .quote {
    font-size: 1rem;
    margin-top: 1rem;
  }
  
  /* Skills Quote */
  .skills-quote {
    background: #f0f8ff;
    display: flex;
    padding: 1.5rem;
    align-items: center;
    gap: 1rem;
  }
  .skills-quote img {
    height: 80px;
  }
  .skills-quote .quote {
    font-size: 1.2rem;
  }
  .skills-quote .date {
    font-size: 0.9rem;
    color: #333;
  }
  
  /* Announcements */
  .announcements {
    padding: 2rem;
    background: #fff;
    text-align: center;
  }
  .announcements h2 {
    font-size: 2rem;
    color: #900;
  }
  .update-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
  }
  .latest-updates,
  .whats-new {
    background: #e0f7fa;
    padding: 1rem;
    width: 300px;
    border-radius: 8px;
  }
  .latest-updates h3,
  .whats-new h3 {
    color: #004d40;
  }
  .latest-updates ul,
  .whats-new ul {
    list-style: none;
  }
  .latest-updates li,
  .whats-new li {
    background: #fff;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: left;
  }
  .latest-updates li span,
  .whats-new li span {
    background: #00bcd4;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
    font-weight: bold;
  }
  
  /* Trades */
  .trades {
    background: #004d40;
    color: white;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  .trade-box {
    text-align: center;
    font-size: 2rem;
  }
  .trade-box span {
    display: block;
    font-size: 1rem;
  }

  .trusted {
    width: 80%;
    margin: 0 auto;
  }
  
  .trusted-row {
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    align-items: center;
  }
  
  .trusted-row img {
    width: 200px;
    margin: 20px;
  }
  
  @media (max-width: 1000px) {
    .trusted {
      width: 100%;
    }
    .trusted-row img {
      width: 100px;
      margin: 20px;
    }
    .section-subtitle {
      width: 100%;
    }
  }
   
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
    .update-boxes {
      flex-direction: column;
      align-items: center;
    }
    .trades {
      flex-direction: column;
    }
  }
  

  .simple-slider-wrapper {
    max-width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
  
    position: relative;
  }
  
  .control_prev,
  .control_next {
    z-index: 1;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #000000;
    font-weight: bold;
    font-size: 30px;
    transition: .6s ease;
    border-radius: 0 3px 3px 0
  }
  
  .control_prev:hover,
  .control_next:hover {
    color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.8)
  }
  
  .control_prev {
    left: 60px;
    border-radius: 8px 8px 8px 8px;
  }
  
  .control_next {
    right: 60px;
    border-radius: 8px 8px 8px 8px;
  }
  
  .simple-slider-overflow-hidden {
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* padding: 0 50px; */
  }
  
  .simple-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    height: 100%;
  }
  
  .simple-slider-element {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    position: relative;
    background: none;
    overflow: hidden;
  }
  
  .slide-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  .slide-image {
    transition: transform 0.2s ease-in-out;
  }
  
  .slide-image:hover {
    transform: scale(1.02);
    transition: transform 0.4s ease-in-out;
  }
  
  .dot-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
  }
  
  .dot.active {
    background-color: #333;
  }

  /* annoucement */

  .announcement-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
  }
  
  .announcement-box {
    flex: 1 1 300px;
    max-width: 480px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
    overflow-y: auto;
  }
  
  .announcement-box h3 {
    background-color: #005c5c;
    color: white;
    padding: 10px;
    margin: 0;
    font-size: 1.2rem;
  }
  
  .announcement-list {
    padding: 10px;
    max-height: 300px;
    overflow-y: auto;
  }
  
  .announcement-item {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    justify-content: space-between;
  }
  
  .date-box {
    background: #a4ddff;
    padding: 10px;
    border-radius: 6px;
    margin-right: 10px;
    text-align: center;
    font-weight: bold;
    min-width: 60px;
  }
  
  .day {
    font-size: 1.1rem;
  }
  
  .month {
    font-size: 0.8rem;
    display: block;
    margin-top: 4px;
  }
  
  .text {
    flex: 1;
    font-size: 1rem;
    color: #006666;
    position: relative;
  }
  
  .new-tag {
    background: green;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-left: 10px;
  }
  

  /* trades */

  .stats-section {
    background-color: #0e5959;
    padding: 40px 20px;
  }
  
  .stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .stat-box {
    text-align: center;
  }
  
  .circle {
    background-color: #f2f2f2;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 100px;
    font-size: 22px;
    font-weight: bold;
    color: #8b1c2d;
    margin: 0 auto 10px;
    transition: transform 0.3s;
  }
  
  .circle:hover {
    transform: scale(1.1);
  }
  
  .label {
    font-size: 18px;
    color: white;
    font-weight: 500;
  }
  