.alert {
    padding: 15px;
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-error {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.form-box-v2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9eef2;
}

.form-box-v2 .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-box-v2 .form-header h3 {
    font-size: 2em;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.form-box-v2 .form-header p {
    font-size: 1.1em;
    color: #666;
}

.form-section-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #17b978;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eefaf6;
}

.form-box-v2 .form-group input[type="text"],
.form-box-v2 .form-group input[type="email"],
.form-box-v2 .form-group input[type="tel"],
.form-box-v2 .form-group input[type="number"],
.form-box-v2 .form-group select {
    width: 100%;
    height: 55px;
    padding: 10px 20px;
    border: 1px solid #dce4e9;
    background-color: #f9fafb;
    border-radius: 8px;
    font-size: 16px;
    color: #555;
    transition: all 0.3s ease;
}

/* Removes the number input arrows in Chrome, Safari, Edge, Opera */
.form-box-v2 .form-group input::-webkit-outer-spin-button,
.form-box-v2 .form-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Removes the number input arrows in Firefox */
.form-box-v2 .form-group input[type=number] {
    -moz-appearance: textfield;
}

.form-box-v2 .form-group input:focus,
.form-box-v2 .form-group select:focus {
    border-color: #17b978;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(23, 185, 120, 0.15);
}

/* Adjust placeholder color */
.form-box-v2 .form-group ::-webkit-input-placeholder {
    color: #888;
}

.form-box-v2 .form-group :-moz-placeholder {
    color: #888;
    opacity: 1;
}

.form-box-v2 .form-group ::-moz-placeholder {
    color: #888;
    opacity: 1;
}

.form-box-v2 .form-group :-ms-input-placeholder {
    color: #888;
}

.btn-style-one-v2 {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(90deg, #17b978, #18d7a3);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(23, 185, 120, 0.25);
}

.btn-style-one-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(23, 185, 120, 0.35);
    background: linear-gradient(90deg, #18d7a3, #17b978);
}

.secure-note {
    margin-top: 15px;
    font-size: 0.95em;
    color: #777;
}

.secure-note .fa-lock {
    color: #28a745;
    margin-right: 5px;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.conversion-banner-v2 {
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    background: linear-gradient(110deg, #f0fdfa, #fffbeb);
    box-shadow: 0 10px 40px rgba(0, 123, 85, 0.1), 0 0 0 1px #e0f2ec;
    position: relative;
    overflow: hidden;
}

.conversion-banner-v2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%);
    animation: shimmer 4s infinite;
    opacity: 0.8;
}

.banner-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.pill-item {
    background-color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.pill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pill-item .fa {
    margin-right: 5px;
}

.esteem-pill .fa {
    color: #17a2b8;
}

.rating-pill .fa {
    color: #ffc107;
}

.award-pill .fa {
    color: #28a745;
}

.banner-cta {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.banner-cta span {
    color: #007bff;
    text-decoration: underline;
    text-decoration-color: rgba(0, 123, 255, 0.3);
}

.banner-alert {
    margin-top: 15px;
    padding: 8px 15px;
    background-color: #ffeaa7;
    color: #543c00;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
}

.feature-item .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-color: #e3f9f1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2.5s infinite;
}

.feature-item:hover .icon-box {
    background-color: #17b978;
    transform: scale(1.1);
    animation: none;
}

.feature-item:hover .icon-box .fa {
    color: #fff;
}

.feature-item .icon-box .fa {
    font-size: 2.2em;
    color: #17b978;
    transition: all 0.3s ease;
}

.feature-item h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
}

.offer-box {
    background: #fff;
    border: 2px dashed #17b978;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 40px auto;
    box-shadow: 0 8px 30px rgba(23, 185, 120, 0.1);
}

.offer-title {
    font-size: 1.5em;
    font-weight: 700;
    color: #17b978;
    margin-bottom: 15px;
}

.offer-body p {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 10px;
}

.offer-body .guarantee {
    font-weight: 600;
    color: #333;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.offer-cta-footer {
    margin-top: 20px;
    font-size: 1.1em;
    color: #555;
}
/* Fix for intl-tel-input library alignment */
.iti {
    display: block !important;
    width: 100%;
}
.page-wrapper {
     color: #000000;
     }
      .page-wrapper h1,
      .page-wrapper h2,
      .page-wrapper h3,
      .page-wrapper h4,
      .page-wrapper p {
       color: #000000 !important;
}
.page-title h1, .page-title .styled-font {
              color: #ffffff !important;
}
/*
 * Fix for intl-tel-input:
 * Adds padding to the left of the phone number input field
 * to prevent the number from being hidden behind the flag icon.
 */
.iti--allow-dropdown input[type="tel"],
.iti--allow-dropdown input[type="text"] {
    /* Adjust this value as needed to fit the flag dropdown */
    padding-left: 45px !important;
}
.btn-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1051; /* Ensures the button is on top of other modal elements */
}

.btn-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}
.modal-content {
    position: relative;
}



