.elementor-1844 .elementor-element.elementor-element-f48060e{--display:flex;}.elementor-1844 .elementor-element.elementor-element-8e402a7{width:var( --container-widget-width, 134.121% );max-width:134.121%;--container-widget-width:134.121%;--container-widget-flex-grow:0;}.elementor-1844 .elementor-element.elementor-element-8e402a7.elementor-element{--align-self:stretch;--flex-grow:0;--flex-shrink:0;}.elementor-1844 .elementor-element.elementor-element-613e2c5{--display:flex;}.elementor-1844 .elementor-element.elementor-element-f821547{--display:flex;}.elementor-1844 .elementor-element.elementor-element-99800b9{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-d856557 *//* Teal Landing Section for WordPress Ealementor */

.hero-section-teal {
    background: linear-gradient(135deg, #f8fdfd 0%, #e6f7f7 100%);
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container-teal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Trustpilot Rating */
.trustpilot-rating-teal {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #333;
}

.rating-text-teal {
    font-weight: 600;
    color: #333;
}

.rating-subtext-teal {
    color: #666;
}

.stars-teal {
    display: flex;
    gap: 2px;
}

.star-teal {
    color: #00d4aa;
    font-size: 18px;
}

.trustpilot-text-teal {
    font-weight: 600;
    color: #333;
}

/* Hero Content */
.hero-content-teal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-teal {
    max-width: 500px;
}

.hero-title-teal {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hero-description-teal {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cta-button-teal {
    background: linear-gradient(135deg, #20b2aa 0%, #008080 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cta-button-teal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button-teal:hover::before {
    left: 100%;
}

.cta-button-teal:hover {
    background: linear-gradient(135deg, #1a9999 0%, #006666 100%);
    box-shadow: 0 6px 25px rgba(0, 128, 128, 0.4);
    transform: translateY(-2px);
}

.cta-button-teal:active {
    transform: translateY(0);
    box-shadow: 0 2px 15px rgba(0, 128, 128, 0.3);
}

/* Hero Image */
.hero-image-teal {
    position: relative;
}

.image-placeholder-teal {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-img-teal {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-teal {
        font-size: 3rem;
    }
    
    .hero-content-teal {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section-teal {
        padding: 40px 0;
        min-height: auto;
    }
    
    .container-teal {
        padding: 0 16px;
    }
    
    .trustpilot-rating-teal {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .hero-content-teal {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-teal {
        order: 2;
        max-width: none;
    }
    
    .hero-image-teal {
        order: 1;
    }
    
    .hero-title-teal {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description-teal {
        font-size: 1.125rem;
        margin-bottom: 28px;
    }
    
    .cta-button-teal {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-section-teal {
        padding: 30px 0;
    }
    
    .trustpilot-rating-teal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        font-size: 14px;
    }
    
    .hero-title-teal {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description-teal {
        font-size: 1rem;
    }
    
    .cta-button-teal {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Animation for smooth loading */
@keyframes fadeInUp-teal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text-teal {
    animation: fadeInUp-teal 0.8s ease-out;
}

.hero-image-teal {
    animation: fadeInUp-teal 0.8s ease-out 0.2s both;
}

.trustpilot-rating-teal {
    animation: fadeInUp-teal 0.8s ease-out 0.1s both;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-39719dc */.bank-section {
  text-align: center;
  padding: 90px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
}

.subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1150px;
  margin: 0 auto;
}

/* Card Styling */
.card {
  background: linear-gradient(180deg, #ffffff 0%, #f8ffff 100%);
  border-radius: 20px;
  padding: 35px 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 128, 128, 0.08);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #00c2c2;
  box-shadow: 0 14px 35px rgba(0, 194, 194, 0.2);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #008080, #00c2c2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

/* Icon Box */
.icon-box {
  width: 85px;
  height: 85px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: #f0fdfa;
  border: 2px solid #00c2c2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 194, 194, 0.15);
  transition: all 0.3s ease;
}

.icon-box img {
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
}

.card:hover .icon-box {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 194, 194, 0.25);
}

/* Text */
.card h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1e293b;
}

.card h3 span {
  color: #008080;
}

.card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8e402a7 */.bank-section {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cards-grid.two-cards {
  display: flex;
  justify-content: center;
  gap: 35px;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 20px rgba(0, 128, 128, 0.12);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  min-width: 260px;
  max-width: 350px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(0, 128, 128, 0.2);
  border-color: #00c2c2;
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 15px;
  background: linear-gradient(135deg, #008080, #00c2c2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
}

.card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1e293b;
}

.card h3 span {
  color: #008080;
}

.card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
  .cards-grid.two-cards {
    flex-direction: column;
    align-items: center;
  }
}/* End custom CSS */