.elementor-584 .elementor-element.elementor-element-85261f3{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-4e41d36 *//* Base Styles */
.modern-footer {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 80px 0 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231a1a2e" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%231a1a2e" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%231a1a2e"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  animation: waveAnimation 8s linear infinite;
}

@keyframes waveAnimation {
  0% { background-position-x: 0; }
  100% { background-position-x: 1200px; }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* About Section */
.footer-about {
  position: relative;
  z-index: 1;
}

.logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.logo-highlight {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  z-index: -1;
  transform: scale(0.95);
  transition: all 0.3s ease;
  opacity: 0;
}

.logo-container:hover .logo-highlight {
  opacity: 1;
  transform: scale(1);
}

.footer-logo {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo-container:hover .footer-logo {
  transform: translateY(-3px);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.social-icon:hover {
  background: #4cc9f0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
}

.social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #333;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-icon:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: -45px;
}

/* Links Section */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.links-column h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.links-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #4cc9f0;
}

.links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-item {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.link-item::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #4cc9f0;
}

.link-item:hover {
  color: #fff;
  padding-left: 15px;
  transform: translateX(5px);
}

.link-item:hover::before {
  opacity: 1;
  left: 0;
}

/* Newsletter Section */
.footer-newsletter {
  position: relative;
}

.newsletter-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.newsletter-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #4cc9f0;
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.newsletter-form {
  margin-bottom: 25px;
}

.input-group {
  position: relative;
  display: flex;
}

.input-group input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input:focus {
  background: rgba(255, 255, 255, 0.2);
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-btn {
  background: linear-gradient(45deg, #4cc9f0, #4895ef);
  color: #fff;
  border: none;
  padding: 0 25px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.subscribe-btn span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.subscribe-btn i {
  margin-left: 8px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.subscribe-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #4895ef, #4cc9f0);
  transition: all 0.4s ease;
}

.subscribe-btn:hover {
  box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
}

.subscribe-btn:hover::before {
  left: 0;
}

.subscribe-btn:hover span {
  transform: translateX(-5px);
}

.subscribe-btn:hover i {
  transform: translateX(5px);
}

/* Footer Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.back-to-top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #4cc9f0, #4895ef);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-to-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(76, 201, 240, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .input-group input {
    border-radius: 30px;
    margin-bottom: 10px;
  }
  
  .subscribe-btn {
    border-radius: 30px;
    padding: 12px;
  }
}/* End custom CSS */