.elementor-28298 .elementor-element.elementor-element-e1eb38c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-ed041f6 *//* Footer Section */
.footer {
  position: relative;
  background: #004767;
  color: white;
  padding: 70px 0 0;
  overflow: hidden;
  font-family: 'Poppins', serif
}

.footer .container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* Footer Columns */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  grid-column: 1 / 2;
}

.footer-logo img {
  max-width: 75px;
  height: auto;
  margin-bottom: 20px;
  margin-left: 150px;
}

.footer-description {
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;

}

.social-link:hover {
  background: #2D6CF6;
  transform: translateY(-3px);
  color:white;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Titles */
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2D6CF6, #22C6B5);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
    text-decoration: none !important;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D6CF6;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(45, 108, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D6CF6;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: white
}

.contact-item span {
  color: #CBD5E1;
  font-size: 0.95rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom-content p {
  color: #94A3B8;
  margin: 0;
  text-align: center;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D6CF6, #22C6B5);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(45, 108, 246, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(45, 108, 246, 0.4);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: 1 / 2;
  }
  
  .footer-contact {
    grid-column: 1 / 2;
  }
  .footer-logo img {
  max-width: 70px;
  margin-left: 270px;
}
}

@media (max-width: 480px) {
  .social-links {
    justify-content: center;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
.footer-logo img {
  max-width: 60px;
  margin-left: 150px;
}
}/* End custom CSS */