/***
=============================================
Quote One
=============================================
***/
.quote-one {
    position: relative;
    display: block;
    background: linear-gradient(13deg,rgba(1, 0, 86, 1) 50%, rgba(71, 71, 73, 1) 100%, rgba(241, 242, 242, 1) 65%);
    padding: 65px 0px 65px;
    z-index: 1;
}

.quote-one::before {
    position: absolute;
    top: 650px;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--tanspot-white-rgb), 1);
    content: "";
}

.quote-one-shape__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 650px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: .10;
    z-index: -1;
}

.quote-one .section-title__tagline-border {
    border: 1px dashed var(--tanspot-white);
}

.quote-one .section-title__shape-1>i,
.quote-one .section-title__shape-2>i,
.quote-one .section-title__tagline,
.quote-one .section-title__title {
    color: var(--tanspot-white);
}

.quote-one .section-title__title span {
    color: var(--tanspot-base);
}

.quote-one .quote-tab {
    position: relative;
    display: block;
    background: var(--tanspot-black);
    padding: 60px 60px 60px;
    border-radius: 20px;
}

.quote-tab__button {
    position: relative;
    display: block;
    margin-bottom: 41px;
    z-index: 1;
}

.quote-tab__button ul {
    display: flex;
    gap: 15px;
}

.quote-tab__button ul li {
    border-radius: 5px;
}

.quote-tab__button .tabs-button-box {
    position: relative;
}

.quote-tab__button .tabs-button-box .tab-btn-item {
    position: relative;
    display: block;
    width: 190px;
    background-color: var(--tanspot-white);
    float: left;
    text-align: center;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.quote-tab__button .tabs-button-box .tab-btn-item.active-btn-item,
.quote-tab__button .tabs-button-box .tab-btn-item:hover {
    background-color: var(--tanspot-base);
}

.quote-tab__button-inner {
    position: relative;
    display: block;
}

.quote-tab__button-inner h3 {
    position: relative;
    display: block;
    padding: 15px 0;
    color: var(--tanspot-black);
    font-size: 17px;
    line-height: 30px;
    font-weight: 600;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.quote-tab__button .tabs-button-box .active-btn-item .quote-tab__button-inner h3 {
    color: var(--tanspot-white);
}

.quote-tab__button .tabs-button-box .tab-btn-item:hover .quote-tab__button-inner h3,
.quote-tab__button .tabs-button-box .tab-btn-item.active-btn-item .quote-tab__button-inner h3 {
    color: var(--tanspot-white);
}

.tabs-content-box {
    position: relative;
    display: block;
}

.quote-one .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
}

.quote-one .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
}

.quote-one .tab-content-box-item .quote-tab-content-box-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: scaleY(0.9);
    transform-origin: top bottom;
}

.quote-one .tab-content-box-item.tab-content-box-item-active .quote-tab-content-box-item {
    opacity: 1.0;
    transform: scaleY(1);
    transform-origin: bottom top;
}

.tab-content-box-item-img {
    position: absolute;
    top: -60px;
    right: -60px;
    bottom: -60px;
    width: 390px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.quote-tab-content-box-item .quotes-wrapper {
    position: relative;
    display: block;
    max-width: 810px;
    width: 100%;
}

.quote-tab-content-box-item .quotes-wrapper-inner {
    position: relative;
    display: block;
}

.quote-tab-content-box-item .quotes-wrapper-inner .title-box {
    position: relative;
    display: block;
    margin-bottom: 39px;
}

.quote-tab-content-box-item .quotes-wrapper-inner .title-box h2 {
    color: var(--tanspot-white);
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
    text-transform: capitalize;
}

.quote-one__form {
    position: relative;
    display: block;
}

.quote-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 36px;
}

.quote-one__form .input-box label {
    color: var(--tanspot-white);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 12px;
}

.quote-one__form .input-box .error {
  color: #f55222;
}

.quote-one__form .input-box input[type="text"],
.quote-one__form .input-box input[type="email"],
.quote-one__form .input-box input[type="number"],
.quote-one__form .input-box input[type="tel"] {
    position: relative;
    display: block;
    height: 55px !important;
    width: 100%;
    background-color: transparent;
    border: 1px solid;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--tanspot-white-rgb), .40);
    border-radius: 10px;
    font-family: var(--tanspot-font);
}

.quote-one__form .input-box .select-box {
    position: relative;
    width: 100%;
}

/* CRITICAL: Hide original select element when nice-select is present */
.quote-one__form .input-box .select-box select:not(.ignore) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.quote-one__form .input-box .select-box select:not(.ignore) + .nice-select {
    display: block !important;
}

/* CRITICAL: Prevent browser autofill styling and behavior */
.quote-one__form input:-webkit-autofill,
.quote-one__form input:-webkit-autofill:hover,
.quote-one__form input:-webkit-autofill:focus,
.quote-one__form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: inherit !important;
    background-color: transparent !important;
    background-image: none !important;
    transition: background-color 5000s ease-in-out 0s !important;
    animation-name: none !important;
}

.quote-one__form input[autocomplete="new-password"] {
    background-color: transparent !important;
    background-image: none !important;
}

/* Prevent autofill on all browsers */
.quote-one__form input[readonly] {
    background-color: transparent !important;
    cursor: text !important;
}

/* CRITICAL: Hide autofill dropdowns and suggestions for ALL browsers */
.quote-one__form input::-webkit-contacts-auto-fill-button,
.quote-one__form input::-webkit-credentials-auto-fill-button {
    visibility: hidden !important;
    display: none !important;
    pointer-events: none !important;
    position: absolute !important;
    right: -9999px !important;
    opacity: 0 !important;
}

/* Hide Edge autofill dropdown */
.quote-one__form input::-ms-clear,
.quote-one__form input::-ms-reveal {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Prevent autofill UI from appearing */
.quote-one__form input[autocomplete="chrome-off"],
.quote-one__form input[autocomplete="off"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Hide any autofill suggestion dropdowns */
.quote-one__form input::placeholder {
    opacity: 0.6 !important;
}

/* Prevent browser from showing autofill UI */
.quote-one__form input[data-edge-ignore="true"],
.quote-one__form input[data-1p-ignore="true"],
.quote-one__form input[data-lpignore="true"] {
    background-clip: padding-box !important;
}

/* CRITICAL: Hide Edge autofill dropdown completely */
.quote-one__form input::-ms-autofill {
    background-color: transparent !important;
    background-image: none !important;
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    box-shadow: 0 0 0 30px transparent inset !important;
}

/* Hide autofill suggestion lists for all browsers */
.quote-one__form input::-webkit-list-button,
.quote-one__form input::-webkit-calendar-picker-indicator {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* Prevent Edge from showing autofill dropdown */
.quote-one__form input[aria-autocomplete="none"] {
    -ms-autocomplete: none !important;
}

.quote-one__form .form-check-input[type=checkbox] {
    border: 1px solid #fff;
}


/* Additional Edge-specific prevention */
@supports (-ms-ime-align: auto) {
    .quote-one__form input {
        -ms-autocomplete: none !important;
        autocomplete: off !important;
    }
}

.quote-one__form .input-box .nice-select {
    position: relative;
    display: block;
    height: 55px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--tanspot-white-rgb), .20);
    color: rgba(var(--tanspot-white-rgb), .40);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    color: rgba(var(--tanspot-white-rgb), .40);
    border-radius: 10px;
    font-family: var(--tanspot-font);
    float: none;
}

.quote-one__form .input-box .nice-select:after {
    position: absolute;
    top: 21px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid rgba(var(--tanspot-white-rgb), .40);
    border-right: 1px solid rgba(var(--tanspot-white-rgb), .40);
    margin-top: 0px;
    z-index: 10;
}

.quote-one__form .input-box .nice-select .option {
    color: var(--tanspot-white);
}

.quote-one__form .input-box .icon {
    position: absolute;
    top: 55px;
    right: 20px;
}

.quote-redio-box {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.quote-redio {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap : 50px;
    margin-top: 12px;
}

.custom-rario {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.quote-one__form .input-box textarea
 {
    position: relative;
    display: block;
    background-color: rgba(var(--tanspot-white-rgb), .01);
    border: 1px solid;
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--tanspot-white-rgb), .60);
    border-radius: 10px;
    font-family: var(--tanspot-font);
    width: 100%;
    height: 140px;
    padding-top: 11px;
    outline: none;
    resize: none;
}

.custom-rario input[type="radio"] {
    display: none;
}

.custom-rario .radio-dot {
    position: absolute;
    left: 0;
    top: 0;
    height: 25px;
    width: 25px;
    border-radius: 2px;
    border: 2px solid rgba(var(--tanspot-white-rgb), .40);
    display: block;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.custom-rario .radio-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--tanspot-white);
    margin-left: 40px;
}

.custom-rario .radio-dot::after {
    content: "";
    height: 15px;
    width: 15px;
    border-radius: 3px;
    background-color: var(--tanspot-base);
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.3s ease-in-out 0s;
}

.custom-rario input[type="radio"]:checked~.radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
}

.custom-rario input[type="radio"]:checked~.radio-dot {
    border-color: var(--tanspot-base);
}

.custom-rario input[type="radio"]:checked~.radio-text {
    color: var(--tanspot-white);
}

.quote-two__btn {
    position: relative;
    display: block;
    margin-top: 39px;
}

.quote-two__btn .thm-btn {
    border: none;
}

.quote-two__btn .thm-btn::before,
.quote-two__btn .thm-btn::after {
    background-color: var(--tanspot-white);
}

.quote-two__btn .thm-btn:hover {
    color: var(--tanspot-base);
}

.quote-two__btn .thm-btn:hover>span {
    background-color: var(--tanspot-black);
    color: var(--tanspot-white);
}
