.elementor-3430 .elementor-element.elementor-element-2a570fc{--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-3430 .elementor-element.elementor-element-b8dbac6{--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-3430 .elementor-element.elementor-element-e02e489{--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;}/* Start custom CSS for html, class: .elementor-element-449b256 *//* General styles for the banner */
.animated-wave-banner {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, #4f46e5 0%, #1d4ed8 100%); /* Example gradient: Purple to Blue */
  color: white;
  padding: 100px 20px 150px 20px; /* Adjust padding: top right bottom left. Bottom padding must be enough for waves */
  overflow: hidden; /* Important to hide the parts of the waves that move out */
}

.animated-wave-banner .banner-content {
  position: relative;
  z-index: 10; /* Ensure content is above waves */
}

.animated-wave-banner h1 {
  font-size: 4rem; /* Adjust as needed */
  font-weight: bold;
  margin: 0 0 10px 0;
  text-transform: capitalize; /* If needed */
}

.animated-wave-banner .breadcrumbs {
  font-size: 0.9rem; /* Adjust as needed */
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin: 0;
}

/* Wave container and individual waves */
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* Adjust based on your wave SVG and desired height */
  overflow: hidden; /* Optional, but good practice */
}

.wave {
  position: absolute;
  bottom: 0; /* Align to the bottom of the waves-container */
  left: 0;
  width: 100%;
  height: 100%; /* Make SVG fill its designated space in waves-container */
  background-repeat: repeat-x; /* Not strictly needed with current SVG setup but good for other methods */
}

/*
  The SVG setup uses a path that's effectively 4 times its viewBox width for seamless looping.
  The <use> element uses `x="48"` (an arbitrary offset within the large path).
  The animation then moves the <use> element.
*/

.wave .parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.wave.wave1 .parallax > use {
  animation-delay: -2s;
  animation-duration: 10s; /* Slower for topmost wave */
}

.wave.wave2 .parallax > use {
  animation-delay: -4s;
  animation-duration: 15s;
}

.wave.wave3 .parallax > use {
  animation-delay: -6s;
  animation-duration: 20s;
}

.wave.wave4 .parallax > use {
  animation-delay: -5s; /* Different delay for variety */
  animation-duration: 25s; /* Slowest for bottommost wave */
}


/* Keyframes for the wave animation */
@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0); /* Start position of the wave slice */
  }
  100% { 
    transform: translate3d(85px,0,0);   /* End position of the wave slice */
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .animated-wave-banner {
    padding: 80px 15px 120px 15px;
  }
  .animated-wave-banner h1 {
    font-size: 2.5rem;
  }
  .waves-container {
    height: 80px; /* Adjust wave height for smaller screens */
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c378780 *//* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #007bff;
}

ul {
    list-style: none;
}

/* Footer Styles */
.site-footer {
    background-color: #f8f9fa;
    padding-top: 50px;
    padding-bottom: 0;
    color: #555;
    font-size: 14px;
    border-top: 1px solid #e7e7e7;
}

.footer-main-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 50px;
}

.footer-about {
    flex: 1 1 280px;
    min-width: 250px;
}

.footer-links {
    flex: 1 1 180px;
    min-width: 160px;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95em;
    color: #495057;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    color: #495057;
    font-size: 0.9em;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.social-icons li a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.footer-heading {
    font-size: 1.1em;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-link-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.footer-link-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-link-list li a .link-arrow,
.policy-links li a .link-arrow {
    margin-right: 8px;
    color: #6c757d;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background-color: #e9ecef;
    padding: 20px 0;
    font-size: 0.9em;
    border-top: 1px solid #ced4da;
    color: #495057;
}

.bottom-bar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.copyright-text {
    flex-grow: 1;
    text-align: center;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    justify-content: center;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .copyright-text {
        text-align: left;
    }
    .policy-links {
        justify-content: flex-end;
    }
}

@media (max-width: 991px) {
    .footer-main-content {
        gap: 25px;
    }
    .footer-about {
        flex-basis: 45%;
        min-width: 280px;
    }
    .footer-links {
        flex-basis: 45%;
        min-width: 200px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 30px;
    }
    .footer-main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        padding-bottom: 30px;
    }
    .footer-column, .footer-about, .footer-links {
        flex-basis: auto !important;
        width: 100% !important;
        min-width: unset !important;
        text-align: left;
    }
    .footer-logo-img {
        max-width: 180px;
    }
    .footer-heading {
        margin-bottom: 15px;
    }
    .bottom-bar-container {
        flex-direction: column;
        text-align: center;
    }
    .copyright-text {
        margin-bottom: 10px;
        text-align: center;
    }
    .policy-links {
        justify-content: center;
    }
}/* End custom CSS */