
    /* Basic reset */
    * { margin:0; padding:0; box-sizing:border-box; }

    body {
      font-family: Arial, sans-serif;
      color: #333;
      line-height:1.4;
      background: #163973;
    }

    a { color: inherit; text-decoration:none; }

    /* Header */
    header {
      background: #163973;
      color: #fff;
      padding: 1rem;
    }
    header .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1000px;
      margin: auto;
    }
    header .nav ul {
      list-style:none;
      display:flex;
      gap:1rem;
    }
    header .nav a { font-weight: bold; }

    /* Hero */
    .hero {
      padding:2rem 1rem;
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      max-width:1000px;
      margin:auto;
    }
    .hero-text { flex:1; min-width:250px; }
    .hero-text h1 { font-size:2rem; margin-bottom:.5rem; }
    .btn {
      background:#f7941d;
      color:#fff;
      padding:.5rem 1rem;
      display:inline-block;
      margin-top:.5rem;
    }
    .hero-img { flex:1; min-width:250px; text-align:center; }
    .hero-img img { max-width:40%; height:auto; }
    

    /* Section titles */
    section { padding:2rem 1rem; }
    h2 { text-align:center; margin-bottom:1rem; color: white; }
    h1 { color: white; }
    

    /* Flex grids */
    .grid {
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      max-width:1000px;
      margin:auto;
    }
    .card {
      flex:1 1 200px;
      border:1px solid #ccc;
      padding:1rem;
      background:#fff;
      border-radius:4px;
    }
    .card img { max-width:40px; margin-bottom:.5rem; }
    .card h3 { font-size:1rem; margin-bottom:.5rem; }

    /* Case study cards */
    .case-card {
      flex:1 1 300px;
      background:#fff;
      border-radius:4px;
      overflow:hidden;
      display:flex;
      flex-direction:column;
    }
    .case-card img { width:100%; height:120px; object-fit:cover; }
    .case-card .info { padding:1rem; flex:1; }
    .case-card a {
      padding: .5rem 1rem;
      text-align:right;
      font-size:.9rem;
      color:#163973;
    }

    /* Testimonials */
    .testi-card {
      flex:1 1 240px;
      background:#f5f5f5;
      padding:1rem;
      border-radius:4px;
      display:flex;
      flex-direction:column;
    }
    .testi-card p { flex:1; margin-bottom:.5rem; }
    .testi-author {
      display:flex;
      align-items:center;
      gap:.5rem;
      font-weight:bold;
    }
    .testi-author img {
      width:32px;
      height:32px;
      border-radius:50%;
      object-fit:cover;
    }

    /* CTA */
    .cta {
      background:#163973;
      color:#fff;
      text-align:center;
      padding:2rem 1rem;
    }
    .cta input {
      padding:.5rem;
      width:200px;
      border:none;
      margin-right:.5rem;
    }

    /* Footer */
    footer {
      background:#163973;
      color:#fff;
      text-align:center;
      padding:1rem;
      font-size:.8rem;
    }
    footer a { margin: 0 .5rem; font-weight:bold; }
    
    /* General Utility */
.padded {
  padding: 3rem 1rem;
}
.text-center {
  text-align: center;
}
.bg-light {
  background-color: #f5f5f5;
}

/* Hero Section */
.hero-alt {
  background: linear-gradient(to right, #fff, #f9f9f9);
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}
.hero-left {
  flex: 1;
  padding: 1rem;
}
.hero-left h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.hero-right {
  flex: 1;
  text-align: center;
}
.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Story Section */
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}
.story-card {
  background: white;
  padding: 1rem;
  max-width: 400px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
.story-card h3 {
  margin: 1rem 0 0.5rem;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}
.team-card {
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}
.team-card h3 {
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.team-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Button */
.btn {
  background: #a00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #800000;
}



  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding: 60px 10%;
    background-color: #fff;
    color: #000;
  }

  .contact-form, .contact-info {
    flex: 1 1 45%;
    min-width: 300px;
  }

  .contact-form h2, .contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #000;
  }

  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 6px;
  }

  .contact-form form button {
    width: 100%;
    padding: 14px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
  }

  .contact-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
  }

  .contact-info ul li {
    margin-bottom: 10px;
  }

  .contact-info ul li i {
    margin-right: 8px;
    color: red;
  }

  .map-section {
    padding: 40px 10%;
  }

  iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-bottom: 30px;
    border-radius: 8px;
  }


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-img img {
    max-width: 80%;
  }
  .hero-left, .hero-right,
  .contact-form, .contact-info {
    flex: 1 1 100%;
    text-align: center;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .contact-container {
    flex-direction: column;
    padding: 30px 5%;
  }
  .map-section {
    padding: 20px 5%;
  }
}



.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive nav toggle */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

 .nav-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* default hidden */
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    background: #163973;
    padding: 1rem;
    border-radius: 5px;
  }

  .nav-links.show {
    display: flex;
  }
}




  