  /* Reset & fonts */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }

  body {
    background: #f7f7f7;
    color: #333;
  }
/* HERO */
.hero{
    height:60vh;
    background:linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/BLUETTI\ LAAF\ Lighting\ An\ African\ Family\ \(LAAF\)_\ Lighting\ Homes\,\ Spreading\ Love\ 🌟.jfif");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero h1{
    font-size:50px;

}
.glass h2,
.card h3,.value h4{
       color: #fcfeff;
}
/* NAVBAR */
.navbar { 
    display:flex; 
    justify-content:space-between; 
    align-items:center; 
    padding:15px 50px; 
    position:fixed; 
    width:100%; 
    background:rgba(255,255,255,0.9); 
    z-index:1000; 
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
}
.logo img { 
    height:50px; 
}

.nav-links { 
    display:flex; 
    list-style:none; 
    gap:25px; 
    align-items:center; 
}

.nav-links a { 
    text-decoration:none; 
    color:#333; 
    font-weight:500; 
    transition:0.3s;
}

.nav-links a:hover{
     color: #2c7be5;
}
  .contact-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
  }

  h1 {
    text-align: center;
     color: #f3f5f8;
    font-size: 3rem;
    margin-bottom: 10px;
  }

  p.subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
  }

  /* Flex layout */
  .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .contact-info, .contact-form, .contact-map {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex: 1 1 300px;
  }

  /* Contact info boxes */
  .contact-info div {
    margin-bottom: 20px;
  }

  .contact-info h3 {
     color: #2c7be5;
    margin-bottom: 8px;
  }

  .contact-info p {
    color: #555;
  }

  /* Form styling */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  input, textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  input:focus, textarea:focus {
    border-color: #2c7be5;
    box-shadow: 0 0 10px rgba(191,161,54,0.3);
    outline: none;
  }

  textarea {
    resize: none;
    min-height: 120px;
  }

  button {
    background: linear-gradient(45deg, #2c7be5, #4891f1);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(191,161,54,0.4);
  }

  /* Map */
  .contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 15px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .contact-content {
      flex-direction: column;
    }
  }
