.footerDiv {
  width: 100%;
  background: linear-gradient(to right, #0e2769, #616064);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  color: white;
  box-sizing: border-box;
}

.footerLogoPanel {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.footerLogoPanel h2 {
  font-size: 2rem;
  margin: 0;
}

.footerLogoPanel h2 span {
  color: var(--btncolor, #00ffcc);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  background: inherit;
  color: white;
  width: 100%;
  max-width: 1000px;
  padding: 30px;
  border-radius: 10px;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  margin: 10px;
}

.contact-links p {
  margin: 10px 0;
}

.contact-links a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.menu-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-group a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-group a:hover {
  text-decoration: underline;
  color: #00e6d0;
}

.footerSocialMediaIcons {
  margin: 20px 0;
}

.footerSocialMediaIcons .fa {
  color: white;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: transform 0.3s ease;
}

.footerSocialMediaIcons .fa:hover {
  transform: scale(1.2);
  color: #00e6d0;
}

.footerDiv hr {
  width: 75%;
  border: 1px solid #ffffff33;
  margin: 30px 0 10px;
}

.copyRight {
  font-size: 0.9rem;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu {
    flex-direction: column;
    gap: 20px;
  }

  .footerLogoPanel {
    flex-direction: column;
    text-align: center;
  }

  .footerSocialMediaIcons .fa {
    margin: 10px;
  }
}


.contactusPage .contactUsImgDiv{

    background: url('../../images/getAQuote.png') center center / cover no-repeat;
    
}