
body, html {
  height: 100%;
}
.column {
  flex: 1 1 45%;
  margin: 20px;
}

.column h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: black;
}

.column ul {
  list-style: disc inside;
  line-height: 1.8;
  color: #333;
}

/* Why Us Section */
.whyus-container {
  display: flex;
  justify-content: center; /* centers the boxes horizontally */
  align-items: flex-start; /* aligns them at the top */
  gap: 20px; /* space between boxes */
  flex-wrap: wrap; /* makes it responsive on smaller screens */
  margin-top: 20px;
}

.box {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px; /* adjust as needed */
}

.icon img {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.large-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.small-text {
  font-size: 14px;
  color: #555;
}

/* Blog Section */
#blog-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

#blog-section h1 {
  text-align: center;
  margin-bottom: 30px;
}

/* Footer */
footer {
  background-color:goldenrod; /* gold */
  color: #222; /* dark text for contrast */
  padding: 40px 20px;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  border: 2px solid #222;
  border-radius: 50%;
}

.footer-links a {
  color: #222;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007acc; /* ATC Market blue */
  text-decoration: none;
}

footer p {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  footer p {
    font-size: 0.9rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .whyus-container .box {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .hero-banner h1 {
    font-size: 2rem;
  }

  .hero-banner p {
    font-size: 1rem;
  }
}
  .column
  {
    flex: 1 1 100%;
    max-width: 100%;
  }
/* Hero Banner */
.hero-banner {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  color: goldenrod;
  text-align: center;
}

.hero-banner .column {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  text-align: center;
}

.hero-banner h1 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-banner p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  display: block;
}

.hero-logo img {
  width: 80px;
  height: auto;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.hero-logo img:hover {
  transform: scale(1.05);
}
.footer-logo-img {
  width: 90px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}