/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

/* Utilities */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.text-primary {
  color: goldenrod;
}

.m-heading {
  font-size: 32px;
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #333;
  color: white;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #444;
  color: goldenrod;
}

.btn-dark {
  background: #111;
}

.bg-dark {
  background-color: #333;
  color: white;
}

.bg-light {
  background-color: #f4f4f4;
}

.bg-primary {
  background-color: goldenrod;
  color: white;
}

/* Navbar */
#navbar {
  background: #333;
  color: white;
  padding: 10px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#navbar .logo a {
  color: white;
  font-size: 24px;
}

#navbar ul {
  display: flex;
  gap: 20px;
}

#navbar ul li {
  list-style: none;
}

#navbar ul li a {
  color: white;
  padding: 10px;
}

#navbar ul li a:hover {
  background: #444;
  color: goldenrod;
}

/* Header */
#header {
  height: 90vh;
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.6)
    ),
    url("https://images.unsplash.com/photo-1499310392581-322cec0355a6?auto=format&fit=crop&w=1074&q=80")
      no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.header-content {
  max-width: 700px;
  margin: 0 auto;
}

/* Boxes */
.boxes {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.box {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.box i {
  color: goldenrod;
  margin-bottom: 10px;
}

/* Section spacing for who, about, contact */
section {
  padding: 80px 0;
}

/* Who Section */
#who {
  background: #000000;
}

.who-content {
  max-width: 800px;
  margin: auto;
}

.who-content ul {
  margin-top: 10px;
  list-style: square;
  padding-left: 20px;
}

/* Clients Section */
.clients {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.clients img {
  max-width: 100px;
  margin: 10px;
}

/* Contact Section */
#contact {
  background-color: #111;
  color: white;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

/* Contact Form as card */
.contact-form {
  flex: 1;
  background-color: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  color: #222;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.map {
  flex: 1;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Footer */
#footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .boxes,
  .contact-grid {
    flex-direction: column;
  }

  .map iframe {
    height: 300px;
  }

  #navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
