
.main-footer {
  position: relative;
  color: #ccc;
  z-index: 1;
}

.main-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* dark overlay */
  z-index: -1;
}

.main-footer {
  background: url('../images/footer.jpg') no-repeat center center;
  background-size: cover;
}


.newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e1e1e;
  color: #fff;
  padding: 20px 60px;
  border-bottom: 1px solid #444;
  flex-wrap: wrap;
  gap: 20px;
}

.newsletter-left {
  max-width: 50%;
}

.newsletter-left h3 {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: 'Bree Serif';
  font-weight: 400;
  color: #fff;
}

.newsletter-left p {
  font-size: 14px;
  color:#FFFFFF;
  font-family: 'jost';
  font-weight: 600;
 }

.newsletter-right form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-right input[type="email"] {
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  outline: none;
  width: 250px;
  font-family: 'jost';
  font-weight: 500;
}

.newsletter-right button {
  background-color: #D51920;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'jost';
  font-weight: 700;
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  padding: 35px;
  gap: 13px;
}

.footer-logo {
  width: 155px;
    height: 86px;
    margin-bottom: 15px;
    background-color: #fff;
    padding: 2px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.footer-column h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 23px;
    font-family: 'Bree Serif';
  font-weight: 400;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-family: 'jost';
  font-weight: 500;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  font-size: 14px;
  font-family: 'jost';
  font-weight: 400;
  color: #fff;
}

.contact-info p i {
  margin-right: 8px;
  color: #fff;
}

.social-icons1 a {
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  border: 1px solid #fff; /* thin white border */
  padding: 8px;
  border-radius: 50%; /* makes it circular */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons1 a:hover {
  background-color: #d71920; /* red background on hover */
  color: #fff; /* keep icon white */
  border-color: #d71920; /* match border with background on hover */
}


.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  padding: 2px 0;
  font-size: 13px;
  color: #aaa;
}



/* Common Icon Buttons */
.btn-icon {
  position: fixed;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* WhatsApp Button (Left) */
.whatsapp-btn {
  left: 20px;
  background: #25D366;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* Top Button (Right) */
.top-btn {
  right: 20px;
  background: #D51920;
}
.top-btn:hover {
  background: #4d4e50;
  color: #fff;
  transform: scale(1.1);
}
  