﻿  <style>
        /* Footer Base */
.main-footer {
  background: #004d5e; /* teal background */
  color: #fff;
  padding: 60px 0 20px;
  font-family: "Arial", sans-serif;
}

.main-footer .footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  flex-wrap: wrap;
}

/* Footer Logo */
.footer-logo img {
  max-height: 60px;
}

/* Social Links */
.footer-social-links ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-links ul li a {
  color: #fff;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social-links ul li a:hover {
  background: #00b4d8;
  color: #fff;
}

/* Footer Titles */
.footer-links h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

/* Footer Lists */
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #00b4d8;
}

/* Newsletter */
.footer-newsletter-form p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

.footer-newsletter-form .form-group {
  position: relative;
}

.footer-newsletter-form input {
  width: 100%;
  padding: 12px 50px 12px 15px;
  border: none;
  border-radius: 5px;
  outline: none;
}

.footer-newsletter-form .newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #00b4d8;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.footer-newsletter-form .newsletter-btn:hover {
  background: #0096c7;
}

/* Copyright */
.footer-copyright {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
}

.footer-copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

/* ===================== */
/*  Responsive Design */
/* ===================== */

@media (max-width: 991px) {
  .footer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding: 40px 20px;
  }

  .footer-links {
    margin-bottom: 25px;
  }

  .footer-links h3 {
    font-size: 16px;
  }

  .footer-social-links ul {
    gap: 10px;
  }

  .footer-social-links ul li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .footer-header {
    text-align: center;
    align-items: center;
  }

  .footer-logo img {
    max-height: 50px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-newsletter-form input {
    font-size: 14px;
    padding: 10px 45px 10px 12px;
  }
}

   