/* Footer Styles */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
}

.service-list li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.service-list li:before {
  content: "•";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.subscription-form {
  display: flex;
  margin-top: 20px;
}

.subscription-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.subscription-form button {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.subscription-form button:hover {
  background-color: #249e8d;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #00102e;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-col {
  flex: 1;
  min-width: 100%;
  padding: 10px 0;
  text-align: center;
}

.footer-bottom-col p {
  margin: 0;
  padding: 0 15px;
}

/* Modal Overlay (Background) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-overlay.active {
  display: flex;
}

/* Newsletter Button Styles */
.newsletter-btn {
  background-color: #2ac6a7;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
  background-color: #1da58a;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.newsletter-btn:active {
  transform: translateY(0);
}

/* Full-Screen Modal Content */
#newsletterModal .modal-content {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: #00102e;
  border-radius: 0;
  padding: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Close Button Styling */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: rgb(233, 10, 10);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.close-modal:hover {
  transform: scale(1.2);
}

/* Iframe - Ensure it fits well */
.newsletter-iframe {
  width: 95%;
  height: 90%;
  border: none;
  border-radius: 8px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 20px;
}

.licensing-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.6;
  margin-top: 20px;
  padding: 0 20px;
}

<!-- /* Scroll to Top Button */
#scrollToTop {
  position: fixed;
  bottom: 30px; /* Position at the bottom */
  right: 30px; /* Position at the right */
  width: 50px;
  height: 50px;
  background-color: #2ac8a8; /* Button color */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  border-radius: 50%; /* Make it a circle */
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  opacity: 0; /* Initially hidden */
  visibility: hidden;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}
-- > #scrollToTop:hover {
  background-color: #249e8d;
  transform: translateY(-3px);
}

/* ----------------------------------------------------------------------------------------------------------*/

/* =========================
FOOTER RESPONSIVE STYLES
========================= */

/* Navbar Styles */
/* Navbar Styles */
.nav-toggle {
  display: none; /* Hidden by default */
  font-size: 30px;
  cursor: pointer;
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Hamburger menu and dropdown for all screen sizes */
.nav-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle-container {
    position: relative;
    display: inline-block;
  }

  .nav-toggle {
    display: block;
    padding: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #00102e;
    padding: 20px;
    width: 200px;
  }

  .nav-toggle-container:hover .nav-links {
    display: flex;
  }
}
