/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  /* HEADER */
  header {
    background-color:  #0077b6;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    position: sticky;
    top: 0;
    z-index: 10;

  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  nav ul li a:hover,
  nav ul li a.active {
    color: #e0e0e0;
  }
  
  /* HERO SECTION */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #f8f9fa, #e0e7ff);
  }
  
  .hero-text {
    max-width: 50%;
  }
  
  .hero-text h2 {
    font-size: 36px;
    color: #333;
  }
  
  .hero-text span {
    color: #0077b6;
  }
  
  .hero-text p {
    margin-top: 15px;
    font-size: 18px;
    color: #555;
    line-height: 1.6;
  }
  
  .btn-primary {
    display: inline-block;
    margin-top: 25px;
    background: #0077b6;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn-primary:hover {
    background: #005f8a;
  }
  
  .hero-image .img-placeholder {
    width: 400px;
    height: 280px;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 12px;
  }
  
  /* SECTION STYLE */
  section {
    padding: 80px 60px;
    text-align: center;
  }
  
  h2 {
    font-size: 30px;
    color: #222;
    margin-bottom: 25px;
  }
  
  /* ABOUT */
  .about p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
  }
  
  /* SERVICES */
  .services .service-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .service-box {
    width: 300px;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .service-box h3 {
    color: #0077b6;
    margin-bottom: 10px;
  }
  
  /* CLIENTS */
  .client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
  }
  
  .client-box {
    background: #eaeaea;
    padding: 40px 0;
    border-radius: 8px;
    font-weight: 600;
    color: #555;
  }
  
  /* CONTACT */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  input, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  /* FOOTER */
  footer {
    background: #7d7d80;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
  }
  