@charset "utf-8";
/* CSS Document */

  /*footer section*/
/* === FOOTER === */
footer {
  background: #104a29 ;
   background-image:
        linear-gradient(to right, rgba(0,255,234,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,255,234,0.05) 1px, transparent 1px);
      background-size:10px 10px;
  color: #fff;
  padding: 60px 40px;
  font-family: "Poppins", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; /* Column 1: 2x width, others equal */
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Column 1: Logo + Description */
.footer-logo img {
  width: 300px;
  margin-bottom: 15px;
}
.footer-logo p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Column Titles */
.footer-logo h4,
.footer-links h4,
.footer-contact h4 {
  color: #c89b00;
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.footer-links h6{
  color: #ccc;
  margin-bottom: 5px;
  margin-top:10px;
  font-size: 1.15rem;
  font-weight:normal;
}

/* Column logo */
.footer-logo ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-logo ul li {
  margin-bottom: 8px;
}
.footer-logo ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-logo ul li a:hover {
  color: #c89b00;
}

/* Column 2: Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;

}
.footer-links ul li a:hover {
  color: #c89b00;
}

/* Column 3: Contact Info */
.footer-contact p {
  margin: 8px 0;
  display: flex;
  align-items: flex-start; /* align icons to top line */
  gap: 10px;
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Icons - clickable only */
.footer-contact i {
  font-size: 1.1rem;
  color: #c89b00;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  margin-top: 2px;
}
.footer-contact i:hover {
  color: #f4b400;
  transform: scale(1.15);
}

/* Address icon (map link) */
.footer-contact .map-link {
  margin-left: 6px;
  color: #c89b00;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-contact .map-link:hover {
  color: #f4b400;
  transform: scale(1.15);
}

/* Bottom strip */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 1rem;
  color: #bbb;
}

.footer-grid .adds {
width:250px;
}


/* === RESPONSIVE === */
@media (max-width: 768px) {
footer {

  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

  .footer-grid {
    grid-template-columns: 1fr; /* stack columns vertically on smaller screens */
    gap: 30px;
  }
}
