.elementor-19 .elementor-element.elementor-element-e9df2fa{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-19 .elementor-element.elementor-element-576e071{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-19 .elementor-element.elementor-element-f92018f{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-19 .elementor-element.elementor-element-576e071{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-f92018f */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Footer Base Styles */
.site-footer {
  position: relative;
  background: #5a43ef;
  overflow: hidden; /* Added to contain waves */
  padding: 40px 20px 60px;
  margin: 0px -15px 0 -15px;
}

.site-footer .footer-column h3 {
  color: #8cc0ff;
  font-weight: bold;
  padding-bottom: 18px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 20px;
}

.footer-column li i,
.footer-column p i {
  margin-right: 8px;
  width: 18px;
  text-align: center;
  color: #bb9df8;
}

.footer-column li:hover i {
  color: white;
}

.footer-column h3 {
    
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 5px;
  
}
.footer-column p {
    color: white;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
  display: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  color: white;
}

.footer-column li {
  margin: 8px 0;
  transition: color 0.3s;
  cursor: pointer;
  
}

.footer-column li:hover {
  color: #bb9df8;
}

.social-icons {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: white;
  color: #5a43ef;
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.subscribe-section {
   margin-left: 0; /* Override any centering margins */
   margin-bottom: 10px;
   margin-top: 20px;
   order: 2; /* Ensure proper stacking in mobile view */
  justify-content: flex-start; /* Left-align input and button */
  max-width: 600px; /* Match previous adjustment */
   
}

.subscribe-section input {
  max-width: 155px; /* Adjust based on your needs */
  flex: 1 1 70%; /* Prevent excessive expansion */
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  margin-top: -12px;
  margin-bottom: 12px;
  
}

.subscribe-section input::placeholder {
  color: rgba(255, 255, 255, 0.);
  flex: 1 1 00%; /* Maintain input/button ratio */
}

.subscribe-section button {
  padding: 17px 2px;
  background: white;
  color: #5a43ef;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100px;
  white-space: nowrap; /* Prevent text wrapping */
}

.subscribe-section button:hover {
  background: #bb9df8;
  color: white;
  transform: translateY(-1px);
}

.copyright {
  text-align: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.1);
}

.copyright p {
    color: white;
}

/* Wave Animation */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 1;
}

.wave {
  position: absolute;
  width: 200%;
  height: 800px;
  animation: wave-move linear infinite;
}

.wave1 {
  animation-duration: 10s;
  fill: #7a63ff;
}

.wave2 {
  animation-duration: 15s;
  fill: #9a83ff;
  animation-direction: reverse;
}

@keyframes wave-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-grid {
    gap: 20px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .social-column {
    text-align: center;
  }
  
  .subscribe-section {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
  
  .subscribe-section input {
    width: 100%;
    margin-bottom: 10px;
  }
}/* End custom CSS */