.elementor-2775 .elementor-element.elementor-element-77fb502{--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-2775 .elementor-element.elementor-element-c60d36d{--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-2775 .elementor-element.elementor-element-34e8065{--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-2775 .elementor-element.elementor-element-551f3fe{--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-4632efd *//* 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-1e0632e *//* Main table styling */
.pricing-table {
  font-family: Arial, sans-serif;
  border: 1px solid #ddd;
  margin: 20px auto;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse; /* Removes space between cells */
  text-align: center;
}

/* Header and Cell styling */
.pricing-table th,
.pricing-table td {
  padding: 12px 15px;
  font-size: 14px;
}

/* Header Row Styling */
.pricing-table thead th {
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
}

/* Specific Header Colors from the image */
.pricing-table thead th:nth-child(1) { background-color: #d9534f; } /* Packages */
.pricing-table thead th:nth-child(2) { background-color: #6caddf; } /* Basic */
.pricing-table thead th:nth-child(3) { background-color: #b08d57; } /* Bronze */
.pricing-table thead th:nth-child(4) { background-color: #c0c0c0; color: #333; } /* Silver */
.pricing-table thead th:nth-child(5) { background-color: #e6b800; color: #333; } /* Gold */


/* Body Row Styling */
.pricing-table tbody tr:nth-child(even) {
  background-color: #f9f9f9; /* Alternating row color */
}

.pricing-table tbody td {
  border-right: 1px solid #e0e0e0; /* Vertical lines */
}

.pricing-table tbody td:last-child {
  border-right: none; /* No line on the far right */
}

/* Align first column text to the left */
.pricing-table tbody td:first-child {
  text-align: left;
  color: #333;
  font-weight: 500;
}

/* --- ICON COLOR FIX --- */
/* This will style the '✔' icon GREEN */
.pricing-table td.tick {
  color: #27ae60; /* Green color for checkmarks */
  font-size: 18px;
  font-weight: bold;
}

/* This will style the '✘' icon RED */
.pricing-table td.cross {
  color: #d9534f;  /* Red color for crosses */
  font-size: 18px;
  font-weight: bold;
}

/* Cost Row Styling */
.pricing-table .cost-row td {
  background-color: #6caddf; /* Blue background */
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-top: 2px solid #fff; /* White separator line */
}

/* For the first cell in the cost row ("Cost") */
.pricing-table .cost-row td:first-child {
    text-align: left;
    color: white; /* Ensure text is white */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c840cae *//* 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 */