  * {margin:0;padding:0;box-sizing:border-box;scroll-behavior:smooth;}
  
    body {
      /* font-family: "Roboto", sans-serif; */
      font-family: "Lato", sans-serif;
      /* background:#0a0a0a; */
      background: #FFFFFF;
      /* color:white; */
      color: #0A1015;
      font-weight: 400;
    }

    .nav-logo {
      width: 80px;
      margin: 0px 5px;
    }

    .nav-left {
      align-items: center;
      display: flex;
    }

    .nav-mudesa {
      height: 40px;
    }

    header {
      position:fixed;
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items: center;
      padding:10px 60px;
      background: #1D3557; 
      backdrop-filter: blur(10px);
      z-index:1000;
    }

    header a {
      color:white;
      margin-left:25px;
      text-decoration:none;
      font-size:16px;
      transition:0.3s;
      letter-spacing: 1px;
    }

    header a:hover {
      color:#aaa;
      text-decoration: underline #aaa 2px;
      text-underline-offset: 4px;
    }

    .hero {
      height:100vh;
      /* background:url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80') center/cover no-repeat; */
      background:url('hero-bg.webp') center/cover no-repeat;
      background-position: top center;
      display:flex;
      align-items:center;
      padding:10px;
    }

    .hero-content {
      max-width:450px;
      animation:fadeUp 1.2s ease forwards;
      background:rgba(0,0,0,0.3);
      backdrop-filter: blur(2px);
      padding: 15px;
      opacity: 2;
      border-radius: 32px;
      color: white;
    }

    .hero-content h1 {
      font-size:26px;
      font-weight: 400;
      margin-bottom:20px;
    }

    .hero-content p {
      /* opacity:0.8; */
      /* line-height:1.2; */
      margin-bottom:15px;
    }

    .btn {
      padding:12px 24px;
      border:1px solid white;
      border-radius: 4px;
      cursor:pointer;
      transition:0.3s;
    }

    .btn:hover {
      background:transparent;
      color:white;
    }

    .about-container {
      text-align: justify;
        margin-bottom: 50px;
    }

    .about-container p {
      margin: 10px 0px;
      padding: 0px 120px;
      font-size: 18px;
    }

/* VALUE SECTION */

.value-section {
  background: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.title {
  font-size: 42px;
  font-weight: 700;
  /* color: #555; */
  margin-bottom: 60px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

.item {
  padding: 40px 20px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

/* stagger animation */
.item:nth-child(1) { animation-delay: 0.1s; }
.item:nth-child(2) { animation-delay: 0.2s; }
.item:nth-child(3) { animation-delay: 0.3s; }
.item:nth-child(4) { animation-delay: 0.4s; }
.item:nth-child(5) { animation-delay: 0.5s; }
.item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ICONS */
/* .icon svg {
  width: 40px;
  height: 40px;
  stroke: #1bb58a;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, stroke 0.3s ease;
} */

.icon img {
  width: 40px;
  height: 40px;
  /* stroke: #1bb58a;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease, stroke 0.3s ease; */
}

/* hover effect */
/* .item:hover .icon svg {
  transform: scale(1.15);
  stroke: #2a7de1;
} */

.item p {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

.item span {
  color: #007FFF;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 32px;
  }

  .item {
    padding: 30px 15px;
  }
}
/* ENDS HERE */


  section {
    padding:140px 60px;
  }

    section h2 {
      text-align:center;
      margin-bottom:50px;
      /* font-size:32px;
      font-weight: 300; */
      font-size: 42px;
      font-weight: 700;
      letter-spacing:2px;
    }

    .grid-3 {
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:30px;
    }

    .card-markets {
      display: flex;
      /* justify-content: space-around; */
      flex-wrap: wrap;
      justify-content: center;

    }

    /* .card-markets p {
      border: 1px solid grey;
      border-radius: 8px;
      margin-top: 6px;
    } */

    .card {
      /* background:#111; */
      background: #FFFFFF;
       padding:30px;
      /* border:2px solid #888888; */
      transition:0.4s;
      border-radius: 8px;
    }

    .card:hover {
      transform:translateY(-10px);
      /* background:#1a1a1a; */
      /* background:#a8a8a8; */
      /* box-shadow: 5px 5px #888888 */
    }

    .card h3 {
      text-align: center;
      margin-bottom: 15px;
      font-weight: 500;
      letter-spacing: 2px;
      font-size: 22px;
    }

    .card img { 
      width: 100%;
      border-radius: 10px;
      margin-bottom: 10px;
    }

    .card p {
      text-align: center;
      /* border: 1px solid white; */
      border:1px solid #888888;
      border-radius: 4px;
      padding: 2px 5px;
      margin: 4px 8px;
      font-size: 18px;
    }

    .lead {
      /* background:#111; */
      text-align:center;
      /* background: #1D3557; */
    }

    .lead h2 {
      /* color: white; */
      color: black
    }

    form {
      width: 100%;
      display: grid;      
      justify-items: center;
    }

    input, textarea {
      width:70%;
      padding:12px;
      margin:10px 0;
      border:1px groove grey;
      border-radius: 4px;
      color:black;
      font-size: 18px;
      font-family: 'DM Sans', sans-serif;
      resize: vertical;  
      outline: none;
    }

    textarea {
      resize: vertical; 
      height: 200px;
    }

    input:hover, textarea:hover {
      border: 1px solid black;
    }

    input:focus, textarea:focus {
      border: 1px solid black;
    }

    .success-message {
      display:none;
      margin-top:15px;
      color:#4caf50;
    }

    form .btn {
      margin-top: 20px;
      background: #1D3557; 
      letter-spacing: 2px;
      border-radius: 4px;
      color: white;
    }

    form .btn:hover {
      border: 1px solid black;
      color: black;
    }

    footer {
      text-align:center;
      padding:30px;
      /* background:#000; */
      background: #1D3557; 
      font-size:14px;
      /* opacity:0.6; */
      color: white;
    }

    @keyframes fadeUp {
      from {opacity:0; transform:translateY(30px);}
      to {opacity:1; transform:translateY(0);}
    }

    @media(max-width:768px){
      header {padding:20px;}
      section {padding:80px 20px;}
      .hero h1 {font-size:32px;}
    }