/* About Us Page */

/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3 {
  color: #3b2f2f; /* Earthy brown for headings */
}

p {
  color: #5a5a5a; /* Neutral dark gray text */
  line-height: 1.6;
}

/* Header Section */
.header {
  background: #3b2f2f; /* Deep brown for a natural feel */
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: #a3c586; /* Earthy green accent */
}

.agency-icon {
  width: 30px; /* Adjust size of the icon */
  height: 30px;
  margin-right: 10px; /* Space between icon and text */
}

/* Navigation */
.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #a3c586;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* About Us Section */
.about-us {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 60px 15px;
  background: #f5f1e3;
}

.about-content, .about-image {
  flex: 1;
  min-width: 300px;
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 50px 15px;
  background: #f5f1e3;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: #3b2f2f;
  margin-bottom: 30px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: #a3c586; /* Earthy green for cards */
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card i {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 15px;
  background-color: #f5f1e3;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  color: #3b2f2f;
  margin-bottom: 30px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: center;
}

.feature-card {
  background: #a3c586;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .feature-card i {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/* Footer Section */
.footer {
  background-color: #3b2f2f; /* Deep earthy brown */
  color: #fff;
  padding: 40px 15px;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-branding {
  flex: 1;
  min-width: 200px;
}

.footer-branding h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #a3c586; /* Earthy green accent */
}

.footer-branding h2 .white-text {
  color: #fff; 
}

.footer-branding p {
  font-size: 0.9rem;
  color: #f5f1e3;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a3c586;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-contact i {
  margin-right: 10px;
  color: #a3c586;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #a3c586;
}

/* Copyright Section */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #a3c586;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #f5f1e3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-branding h2 {
    font-size: 1.5rem;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 1rem;
  }

  .footer-links a,
  .footer-contact p,
  .footer-social a {
    font-size: 0.8rem;
  }
}
