/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Header */
header {
  background-color: #ffffff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between; /* keeps logo on left, nav on right */
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}


.logo img {
  height: 100px;
  width: auto;
  border-radius: 5px;
}

/* Navigation */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

nav ul {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

nav ul li a {
  color: #000000;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #264653;
  color: #fff;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Button */
.btn {
  background-color: #e76f51;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #d65a3a;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px 20px;
  background-color: white;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
}

.feature {
  flex: 1 1 280px;
  background-color: #f1faee;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.feature h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

/* Business Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.business-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 18px;
  text-align: center;
}

.business-card img {
  max-width: 90px;
  max-height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.business-card h3 {
  margin: 8px 0 4px;
}

.business-card button {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.business-card button:hover {
  opacity: 0.9;
}

/* Footer */
footer {
  background-color: #264653;
  color: white;
  text-align: center;
  padding: 20px 10px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #333;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 10px 0;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    margin: 0;
  }

  nav ul li a {
    padding: 12px 20px;
    color: white;
    border-top: 1px solid #444;
  }

  .features {
    flex-direction: column;
    max-width: 90%;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
