.elementor-2798 .elementor-element.elementor-element-faba891{--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-2798 .elementor-element.elementor-element-d88efa7{--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-2798 .elementor-element.elementor-element-93c2a3d{--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-2798 .elementor-element.elementor-element-de32575{--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-6b4bf94 *//* 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-8ccf654 *//* Base Table Styling */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin-bottom: 30px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

/* Header Row */
.pricing-table thead th {
  background-color: #c7432e;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 18px;
  border-right: 1px solid #fff;
}

/* Plan Titles */
.pricing-table thead th:nth-child(2) {
  background-color: #337ab7;
}
.pricing-table thead th:nth-child(3) {
  background-color: #b0b0b0;
}
.pricing-table thead th:nth-child(4) {
  background-color: #e2b007;
}

/* Table Body */
.pricing-table td {
  padding: 10px 12px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* First Column - Features */
.pricing-table td:first-child {
  text-align: left;
  background-color: #f9f9f9;
  font-weight: bold;
}

/* Section Headers */
.pricing-table .section-header td {
  background-color: #f1f1f1;
  color: #333;
  font-weight: bold;
  padding: 10px;
  text-align: left;
  border: 1px solid #ccc;
}

/* Tick and Cross Styling */
.pricing-table td:contains("✔") {
  color: green;
  font-weight: bold;
}
.pricing-table td:contains("✘") {
  color: red;
  font-weight: bold;
}

/* Cost Row (Special Background) */
.pricing-table .section-header + tr:last-child td {
  background-color: #e8f4fd;
  font-weight: bold;
  color: #333;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .pricing-table thead {
    display: none;
  }

  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td {
    display: block;
    width: 100%;
  }

  .pricing-table tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fff;
  }

  .pricing-table td {
    text-align: left;
    padding: 8px 12px;
    border: none;
    position: relative;
  }

  .pricing-table td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    color: #666;
  }
}
/* Minimum Period Row */
.min-period-row td {
  background-color: #f8f8f8;
  color: #444;
  font-weight: 500;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
}

.min-period-row td:first-child {
  text-align: left;
  font-weight: bold;
  background-color: #f3f3f3;
}

/* Cost Per Month Row (Footer) */
.footer-row td {
  background-color: #2980b9;
  font-weight: bold;
  color: #000;
  text-align: center;
  padding: 12px 10px;
  border: 1px solid #ccc;
}

.footer-row td:first-child {
  background-color: #2980b9;
  text-align: left;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-88413c4 *//* 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 */