/*======= Hero Banner ========*/
.hero-banner-wrapper {
    width: 100%;
    min-height: calc(100vh - 126px);
    position: relative;
    background: url('https://advisar.netlify.app/images/hero_3_bg.jpg') center/cover no-repeat;
    z-index: 1;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-height: none;
    /* prevent forced cropping */
}

.right-image {
    position: relative;
    display: inline-block;
    padding-top: 5px;
    z-index: 1;
}

.right-image::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 0px;
    width: 500px;
    height: 300px;
    background-image: url('https://advisar.netlify.app/images/hero3_dot_shape.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}

.right-image img {
    padding-top: 10px;
    max-width: 84%;
    height: auto;
    object-fit: contain;
}

.homeBannerContent {
    background-color: transparent;
    padding: 30px;
    border-radius: 8px;
}

.homeBannerContent p {
    color: #000;
}

.pros-head {
    font-size: 20px;
}

/*================== Responsive Breakpoints ==================*/

/* Large Screens */
@media (max-width: 1400px) {
    .right-image img {
        padding-top: 30px;
        max-width: 70%;
    }
}

/* Medium Screens */
@media (max-width: 1199px) {
    .right-image img {
        padding-top: 0;
        max-width: 89%;
    }

    .right-image::before {
        width: 180px;
        height: 150px;
    }
}

/* Tablets - Fixed 992px Cropping Issue */
@media (max-width: 991.99px) {
    .hero-banner-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        /* let it expand naturally */
        padding: 40px 20px;
    }

    .right-image img {
        padding-top: 0 !important;
        max-width: 70%;
        /* was 40%, now larger */
        height: auto;
    }

    .right-image::before {
        width: 150px;
        height: 120px;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-banner-wrapper {
        padding: 30px 15px;
    }

    .right-image img {
        max-width: 80%;
    }

    .right-image::before {
        width: 100px;
        height: 80px;
        top: 20px;
    }

    .pros-head {
        font-size: 18px;
    }

    .homeBannerContent {
        padding: 15px;
    }
}

@media (max-width: 420px) {
    .hero-banner-wrapper {
        padding: 10px 15px;
    }

    .homeBannerContent .mega-heading {
        font-size: 17px;
    }

    .right-image img {
        max-width: 30%;
    }

    .homeBannerContent p {
        font-size: 15px;

    }
}

/*================== Responsive ==================*/

/* Large Screens */
@media (max-width: 1400px) {
    .right-image img {
        padding-top: 30px;
        max-width: 70%;
    }
}

/* Medium Screens */
@media (max-width: 1199px) {
    .right-image img {
        padding-top: 0;
        max-width: 89%;
    }

    .right-image::before {
        width: 180px;
        height: 150px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-banner-wrapper {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 40px 20px;
    }

    .right-image img {
        max-width: 60%;
    }

    .right-image::before {
        width: 150px;
        height: 120px;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile */
/* @media (max-width: 576px) {
    .hero-banner-wrapper {
        padding: 30px 15px;
    }

    .right-image img {
        max-width: 80%;
        padding-top: 0;
    }

    .right-image::before {
        width: 100px;
        height: 80px;
        top: 20px;
    }

    .pros-head {
        font-size: 18px;
    }

    .homeBannerContent {
        padding: 15px;
    }
} */


.cta-section {
    background: linear-gradient(rgba(23, 12, 2, 0.51), rgba(0, 0, 0, 0.52)),
        url(https://www.interioracebd.com/images/background/cta-background.webp);
    border-radius: 36px;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-heading {
    font-size: 47px;
    font-weight: 500;
    line-height: 60px;
    padding: 20px 0;
    max-width: 600px;
}

.round-shape {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 50%;
    flex-shrink: 0;
}

.rotating-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    transform: translate(-50%, -50%) rotate(0deg);
    background-image: url('https://xinterio-demo.pbminfotech.com/demo7/wp-content/themes/xinterio/images/offer-img.svg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    animation: rotate 22s linear infinite;
    filter: invert(33%) sepia(74%) saturate(7081%) hue-rotate(345deg) brightness(86%) contrast(105%);
}

.round-shape span {
    font-size: 22px;
    line-height: 36px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.round-shape span a {
    color: #fff;
}

.box-inner-contetns {
    text-align: center;
    display: inline-block;
    height: 180px;
    width: 180px;
    padding: 55px 10px 10px;
    z-index: 1;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.phone-box {
    display: inline-flex;
    align-items: center;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    position: absolute;
    right: -94px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    mask-image: url(/images/cta-curve-shape.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-image: url(/images/cta-curve-shape.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.phone-box a {
    font-size: 25px;
    color: #222;
    text-decoration: none;
    margin-left: 10px;
}

.phone-box img {
    width: 25px;
    height: 25px;
}

#js-rotating {
    display: inline-block;
    position: relative;
    width: 270px;
    height: 61px;
    overflow: hidden;
    vertical-align: bottom;
}

#js-rotating .word {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    animation: rotateWord 8s linear infinite;
    text-align: left;
}

#js-rotating .word:nth-child(1) {
    animation-delay: 0s;
}

#js-rotating .word:nth-child(2) {
    animation-delay: 4s;
}

/* Responsive tweaks */
@media (max-width: 1200px) {
    .cta-heading {
        font-size: 38px;
        line-height: 48px;
    }

    .round-shape {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
    }

    .cta-heading {
        font-size: 32px;
        line-height: 44px;
        padding: 10px 0;
    }

    .round-shape {
        margin: 20px auto 0;
        width: 220px;
        height: 220px;
    }

    .phone-box {
        position: static;
        transform: rotate(0);
        border-radius: 20px;
        margin: 20px auto 0;
    }
}

@media (max-width: 576px) {
    .cta-heading {
        font-size: 24px;
        line-height: 32px;
    }

    .round-shape {
        width: 140px;
        height: 140px;
    }

    .round-shape span {
        font-size: 16px;
    }

    .phone-box {
        padding: 10px 20px;
    }

    .phone-box a {
        font-size: 18px;
    }
}






/* .hero-banner-wrapper .item {
    width: 100%;
    display: flex;
    height: calc(100vh - 126px);
    max-height: 650px;
    position: relative;
    align-items: center;
    z-index: 0;
} */

.hero-banner-wrapper .item picture>img {
    object-fit: cover;
    object-position: center;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.hero-banner-wrapper .item .container {
    z-index: 2;
}



.homeBannerContent .mega-heading {
    font-size: 50px;
    line-height: normal;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #00796b;
}

.homeBannerContent p {
    color: #100101;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 20px;
}

.heroBtn {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 1199px) {

    /* .hero-banner-wrapper,
    .hero-banner-wrapper .item {
        max-height: 500px;
    } */

    .homeBannerContent .mega-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .homeBannerContent .mega-heading {
        font-size: 42px;
    }

    .right-image {
        width: 89%;
    }

    .right-image::before {
        width: 200px;
        height: 150px;

    }


}

@media (max-width: 575px) {
    .right-image::before {
        width: 189px;
        height: 98px;
        top: 0;
    }

    /* .hero-banner-wrapper,
    .hero-banner-wrapper .item {
        max-height: 400px;
    } */

    .homeBannerContent .mega-heading {
        font-size: 30px;
    }
}

@media (max-width: 450px) {
    .homeBannerContent .mega-heading {
        font-size: 24px;
    }
}

@media (max-width: 425px) {

    .hero-banner-wrapper,
    .hero-banner-wrapper .item {
        max-height: 550px;
    }
}































.whatWeOfferSec {
    background: url(../../images/background/section-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.whatWeOfferSec .mega-heading,
.stepSec .mega-heading,
.clients-sec .mega-heading {
    font-size: 42px;
    line-height: normal;
}

.whatWeOfferSec .common-box {
    height: 100%;
    border-radius: 15px;
    filter: drop-shadow(0px 10px 35px rgba(177, 235, 231, 0.3));
    background-color: rgb(255 255 255 / 75%);
    border: 3px solid rgb(255 255 255);
    padding: 30px;
    transition: 0.5s;
}

.whatWeOfferSec .common-box:hover {
    background-color: rgb(255 255 255 / 70%);
    border: 3px solid rgb(0 121 107 / 30%);
}

.whatWeOfferSec .common-box img {
    max-width: 75px;
    margin-bottom: 15px;
}

.whatWeOfferSec .common-box .small-heading {
    font-size: 20px;
}

.whatWeOfferSec .common-box p:last-child {
    margin-bottom: 0;
}

.refer-a-friend {
    padding: 45px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 15px;
    border: 1px solid var(--theme-primary-color);
    border-bottom: 7px solid var(--theme-primary-color);
    text-align: center;
    background-image: linear-gradient(0deg, #89e4f7 0%, #d9fbee 100%);
    margin-bottom: 70px;
}

.refer-a-friend .coins {
    font-size: 65px;
    line-height: normal;
    font-weight: 700;
    color: #595959;
}

.refer-a-friend .coins i {
    color: var(--theme-secondary-color);
}

.refer-a-friend .heroBtn {
    justify-content: center;
    margin-top: 25px;
}

.refer-a-friend .theme-btn a {
    padding: 13px 25px;
    min-width: 170px;
    font-size: 16px;
}

.steps-flow {
    padding-left: 30px;
    position: relative;
}

.steps-flow:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
    background-color: #ffdfdd;
}

.steps-flow .step {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.steps-flow .step+.step {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #ffdfdd;
}

.steps-flow .step>span {
    flex-basis: 80px;
    min-width: 0;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    background-color: #98e9f6;
    color: #3e3e3e;
    padding: 3px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.steps-flow .step>span::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 25px;
    background-color: var(--theme-secondary-color);
    clip-path: polygon(100% 75%, 50% 100%, 0 75%, 0 0, 50% 25%, 100% 0);
    left: -30px;
    top: 0;
}

.steps-flow .step>.content {
    min-width: 0;
    flex-basis: 100%;
    border-radius: 5px;
}

.steps-flow .step .content>*:last-child {
    margin-bottom: 0;
}

.steps-flow .step>.content .title {
    font-size: 22px;
    color: var(--theme-primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    [class*="col-lg"]:has(.steps-flow)+[class*="col-lg"] .steps-flow {
        padding-top: 15px;
    }

    [class*="col-lg"]:has(.steps-flow)+[class*="col-lg"]:has(.steps-flow) .step:first-child {
        padding-top: 15px;
        border-top: 1px solid #ffdfdd;
    }
}

@media (max-width: 767px) {
    [class*="col-lg"]:has(.steps-flow)+[class*="col-lg"] .steps-flow {
        padding-top: 15px;
    }

    [class*="col-sm"]:has(.steps-flow)+[class*="col-lg"]:has(.steps-flow) .step:first-child {
        padding-top: 15px;
        border-top: 1px solid #ffdfdd;
    }
}

.partners-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.partners-box .common-box img {
    max-width: 165px;
    padding: 3px;
    background: #fff;
    border-radius: 3px;
    box-shadow: rgb(0 0 0 / 13%) 0 3px 8px;
}

.referSec {
    background: url(../../images/background/section-bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}



/* Exclusive Offer  */
.exclusive-offer {
    background-color: #f9fafb;
    padding: 70px 20px;
    text-align: center;
}

.exclusive-offer h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.exclusive-offer .intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text);
}

.offer-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.benefit i {
    color: var(--primary);
    margin-bottom: 15px;
}

.benefit h4 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit p {
    color: var(--text);
}

.exclusive-cta p {
    margin-bottom: 20px;
    color: var(--text);
}

@media (max-width: 575px) {
    .exclusive-offer h2 {
        font-size: 1.8rem;
    }
}












.uren-shipping_area {
    padding-top: 40px;
    padding-bottom: 40px;
}

.uren-shipping_area .shipping-nav {
    border: 2px solid #ff572236;
    padding: 5px 0;
}

.uren-shipping_area .shipping-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    height: 100%;
}

.uren-shipping_area .shipping-icon {
    color: #fff;
    font-size: 32px;
    width: 55px;
    height: 55px;
    line-height: 60px;
    text-align: center;
    border-radius: 11px;
    flex-shrink: 0;
    background: #00796b;
}

.uren-shipping_area .shipping-content {
    padding-left: 12px;
    border-right: 1px solid #e5e5e5;
    flex: 1;
}

.uren-shipping_area .shipping-content h6 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    line-height: 1.4;
}

.uren-shipping_area .row>div:last-child .shipping-content {
    border-right: none;
}

/* ================= Responsive ================= */

/* Tablets */
@media (max-width: 991.99px) {
    .uren-shipping_area .shipping-content h6 {
        font-size: 18px;
    }

    .uren-shipping_area .shipping-icon {
        font-size: 28px;
        width: 50px;
        height: 50px;
        line-height: 54px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .uren-shipping_area .shipping-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 15px 10px;
        border-bottom: 1px solid #e5e5e5;
    }

    .uren-shipping_area .shipping-icon {
        margin-bottom: 8px;
    }

    .uren-shipping_area .shipping-content {
        padding-left: 0;
        border-right: none;
        /* remove vertical border for stacked items */
    }

    .uren-shipping_area .shipping-content h6 {
        font-size: 16px;
    }

    .uren-shipping_area .row>div:last-child .shipping-item {
        border-bottom: none;
        /* remove last divider */
    }
}


.faq-block details+details {
    margin-top: 15px;
}

.faq-block details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #dae6ff;
    color: #015d53;
}

.faq-block details summary:after {
    font-size: 26px;
    text-align: center;
    font-weight: 700;
}

.faq-block details summary:after {
    content: "\002B";
}

.faq-block details[open] summary:after {
    content: "\2212";
}

.faq-block details[open] .expand {
    padding: 15px;
    position: relative;
    background-color: #f7f8f9;
    border-bottom: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    border-left: 3px solid #dae6ff;
}

@media (max-width: 575px) {
    .faq-block details summary {
        font-size: 15px;
    }
}


.razor-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.razor-left {
    flex: 1 1 45%;
    min-width: 300px;
}

.razor-path {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.razor-title {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.razor-description {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
    max-width: 450px;
}

.razor-links {
    display: flex;
    gap: 20px;
}

.razor-link {
    color: #a02828;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
}

.razor-link:hover {
    text-decoration: underline;
}

.razor-right {
    flex: 1 1 45%;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.razor-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.razor-feature img {
    width: 30px;
    height: 30px;
    margin-top: 5px;
}

.razor-feature h4 {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 5px;
}

.razor-feature p {
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

.razor-feature p span {
    color: #a02828;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .razor-wrapper {
        flex-direction: column;
    }

    .razor-right {
        grid-template-columns: 1fr;
    }
}

.razor-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    padding: 20px 0;
}

/* Draw middle vertical and horizontal lines */
.razor-right::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-0.5px);
    width: 1px;
    height: calc(100% - 40px);
    /* Adds top/bottom spacing */
    background-color: #ccc;
    z-index: 1;
}

.list-img {
    margin-left: -330px;
    border-radius: 30px;
    overflow: hidden;

    img {
        width: 100%;
    }
}

.process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
    padding-top: 40px;
}

.process-list li {
    display: flex;
    gap: 30px;
    position: relative;
    padding-bottom: 40px;
}

.process-list li span {
    flex: none;
    font-size: 18px;
    font-weight: 600;
    color: #00a651;
    box-shadow: 0px 0px 20px 10px rgba(190, 190, 190, 0.25);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #fff;
}

.process-list li:after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% + 40px);
    background: #dfdfdf;
    left: 20px;
    z-index: -1;
    bottom: 0;
}

.process-list li>div>div {
    font-size: 22px;
    font-weight: 600;
    margin-top: 4px;
    color: #000;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 22px;
    margin-bottom: 21px;
}

.process-list li>div>p {
    margin-bottom: 0;
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-list li {
        gap: 20px;
        padding-bottom: 30px;
    }

    .process-list li span {
        font-size: 16px;
        width: 35px;
        height: 35px;
    }

    .process-list li>div>div {
        font-size: 20px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .list-img {
        margin-left: 0px;
        border-radius: 30px;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .process-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-list li span {
        margin-bottom: 8px;
    }
}
