* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Development Environment Banner */
.dev-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.dev-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.dev-banner-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.dev-banner-text {
    animation: devGlow 3s ease-in-out infinite alternate;
}

.dev-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    backdrop-filter: blur(5px);
}

.dev-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dev-banner-close:active {
    transform: scale(0.95);
}

@keyframes devGlow {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4); }
}

/* Body padding adjustments */
.dev-banner-visible {
    padding-top: 52px !important;
}

/* Mobile responsive adjustments for dev banner */
@media (max-width: 767px) {
    .dev-banner-content {
        padding: 8px 15px;
    }
    
    .dev-banner-info {
        font-size: 12px;
        gap: 6px;
    }
    
    .dev-banner-close {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .dev-banner-visible {
        padding-top: 44px !important;
    }
}

body {
    font-family: "Poppins", serif;
    background-color: #282974;
    scroll-behavior: smooth;
}

.main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: url(assets/Hello-Background1.webp) no-repeat center center;
    background-size: cover;
    border-radius: 0px 0px 90px 90px;
    position: relative;
    padding: 20px;
}

.main-container {
    position: absolute;
    max-width: 500px !important;
    margin-left: -48%;
}

.cont {
    padding: 18px;
    background-color: rgb(250 250 250 / 28%);
    backdrop-filter: blur(5px);
    border: solid 2px #ccc;
    box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0.2);
    border-radius: 22px !important;
    max-width: 500px;
    margin: auto;
    position: relative;
}

/* The hidden toast */
.hover_toast {
    position: absolute;
    bottom: -20px;
    /* adjust as needed */
    transform: translateX(-50%);
    background: #fffff0;
    color: #000;
    padding: 20px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, bottom 0.4s;
    z-index: 10;
    text-align: center;
}

.hover_toast_skipbtn {
    position: absolute;
    bottom: -20px;
    /* adjust as needed */
    transform: translateX(-50%);
    background: #fffff0;
    color: #000;
    padding: 20px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, bottom 0.4s;
    z-index: 10;
    left: -3%;
}

.hover_toast_logo {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fffff0;
    color: #000;
    padding: 20px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.8s ease-in-out;
    z-index: 10;
    text-align: center;
}

.imgDiv:hover .hover_toast_logo {
    opacity: 1;
    transform: translate(50%, 0px);
    pointer-events: auto;
}

.demo-avatar {
    width: 90px;
}

.hover_toast_policy {
    position: absolute;
    bottom: -20px;
    /* adjust as needed */
    transform: translateX(-50%);
    background: #fffff0;
    color: #000;
    padding: 20px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, bottom 0.4s;
    z-index: 10;
}

.hover_toast_report {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #fffff0;
    color: #000;
    padding: 20px 12px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease-in-out;
    z-index: 10;
    text-align: center;
}

/* Show the toast on hover */
.submit-btn-desktop:hover .hover_toast_report {
    opacity: 1;
    transform: translate(50%, -10px);
    pointer-events: auto;
}


/* Show the toast on hover */
.call_anch:hover .hover_toast {
    opacity: 1;
    bottom: -80px;
    /* move slightly up */
    pointer-events: auto;
}

.skipbtn-div:hover .hover_toast_skipbtn {
    opacity: 1;
    bottom: -80px;
    /* move slightly up */
    pointer-events: auto;
}

.policy_span:hover .hover_toast_policy {
    opacity: 1;
    bottom: -50px;
    /* move slightly up */
    pointer-events: auto;
}

.agency-under-logo {
    color: #282974;
    font-weight: 700;
    text-shadow: 2px 2px 4px #fffff0;
}

.any_rental {
    color: #282974;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-top: 10px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #fffff0;
}

.any_rental_img {
    width: 20% !important;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    background-color: #282974;
    border: 2px solid #ccc;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.upload-logo {
    padding: 18px 48px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    background-color: #a3abb9;
    border: 2px solid #ccc;
    border-radius: 22px;
    margin-bottom: 12px;
}

.test-report-tools {
    margin-top: 210px;
    margin-left: 0px !important;
    z-index: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
}

.test-report-tools img {
    width: 30%;
    margin-left: -130px;
}

.test-report-tools span {
    font-weight: 300;
    font-size: 13px;
    margin-top: 10px;
    transform: rotate(-25deg);
}

h4 {
    color: #282974;
    font-size: 16px;
    font-weight: 700;
}

form label {
    display: block;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0px;
    outline: none;
    border-radius: 16px;
    box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    background-color: #fffce559;
}

::placeholder {
    color: #00000098;
    font-size: 12px;
    font-weight: 400;
}

.policy_para {
    color: #000;
    font-size: 1rem;
    line-height: 20px;
    text-align: start;
}

.policy_span {
    font-weight: 700;
    color: #282974;
}

.policy_anch {
    font-weight: 1000;
}

.policy_text {
    color: #000;
    font-size: 12px !important;
    font-weight: 300;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    text-decoration: underline !important;
}

hr {
    margin-top: 0px;
}

.anchr_div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.call_anch {
    color: #282974;
    font-weight: bold;
    text-decoration: none !important;
    border: 2px solid #282974;
    border-radius: 28px;
    padding: 5px;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    animation: scaleAnimation 1.5s infinite alternate;
    max-width: 180px;
}

@keyframes scaleAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.submit-btn-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 16px;
    text-align: center;
    gap: 6px;
}

.submit-btn {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    background-color: #282974;
    border-radius: 16px;
    padding: 16px 32px 16px 32px;
    color: #fff;
    border: none;
    transition: 0.3s;
}

.submit-btn-desktop {
    display: block !important;
}

.submit-btn-mobile {
    display: none !important;
}

.skipBtn {
    font-size: 20px;
    font-weight: 600;
    border-radius: 16px;
    padding: 12px 32px 12px 32px;
    color: #fff;
    border: none;
    transition: 0.3s;
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 998;
}

.skipBtn .bi-arrow-right {
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 5px;
    margin-top: 10px;
}

.skipBtn:hover {
    background-color: #282974;
    color: #fff;
}

/*===============video section==============*/
/* .video{
} */
.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.effort-div-animation {
    background-color: #282974;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 22px;
    padding: 6px 12px;
    text-align: center;
}

.effort-div {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    background-color: #282974;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 22px;
    padding: 36px;
    text-align: center;
    margin-top: -20px;
}

.effort-div-mobile {
    display: none;
}

.video-div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 140px;
    margin-bottom: 150px;
    position: relative;
    width: 100%;
}

.myVideo {
    width: 100%;
    height: 400px;
    max-width: 700px;
    border-radius: 26px;
}

.mobile-video-div {
    display: none;
}

.social-div img:hover {
    cursor: pointer;
    scale: 1.10;
}

.social-div2 img:hover {
    cursor: pointer;
    scale: 1.05;
}

.social-div2-p {
    color: #ccc !important;
    font-size: 0.7rem;
    text-align: center;
}

footer {
    position: relative;
}

.wave-div {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    max-height: 100vh;
}

.wave-cont {
    position: relative;
    z-index: 1;
}

.social-div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.powerDiv h4 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 20px 0;
}

.social-div2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 60px;
}

.social-div2 h5 {
    font-size: 1rem;
}

/*pricing section*/
.pricing-section {
    overflow: hidden;
    padding: 20px;
}

.pricing-section .price-heading {
    color: #fffff0;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.price-card {
    color: #282974;
    background-color: #fffff0;
    border-radius: 34px;
    padding: 50px 40px;
    max-height: 900px;
}

/* 1) Make a positioning context for each card + badge */
.price-wrapper {
    position: relative;
    overflow: visible;
    /* so the badge can poke outside the box */
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 auto;
        width: 30%;
    }
}


/* 2) Lift the card above the badge */
.price-wrapper .price-card {
    position: relative;
    z-index: 2;
    /* sits above the badge */
    overflow: hidden;

    /* new: prepare the transform */
    transform-origin: top right;
    transition: transform 0.3s ease;
}

.price-wrapper .price-card:hover {
    /* scale out from that top-right anchor */
    transform: scale(1.05);
}

/* 3) Pin the badge behind the card */
.price-wrapper .badge {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 100px;
    height: auto;
    z-index: 3;
    pointer-events: none;
}

.price-wrapper .badge img {
    display: block;
    width: 100%;
    height: auto;
}

.text_under_card {
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 12px;
    text-align: center;
    color: #fffff0;
    font-weight: 400 !important;
}

.price-card:hover {
    scale: 1.05;
}

.price-card:hover .set-up button {
    background-color: #282974;
    color: #fff;
}

.price-card h4 {
    font-size: 1.8rem;
    margin-bottom: 0px !important;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.price-card .unlock-para {
    font-size: 15px;
    font-weight: 300 !important;
    margin-bottom: 10px !important;
}

.unlock-second-para {
    margin-bottom: 10px !important;
}

.price-card .unlock-span {
    font-size: 14px;
    font-weight: 300 !important;
}

.price-card h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.price-card .landlord-para {
    font-size: 18px;
    font-weight: 300 !important;
}

.price-card .include-para {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 42px !important;
}

.price-card .include-para-second {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px !important;
}

.price-card .include-para-third {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px !important;
}

.price-card .include-para2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
}

.include-para:nth-child(1) {
    margin-top: 20px !important;
}

.price-card .include-span {
    font-size: 18px;
    font-weight: 300 !important;
}

.price_ul {
    list-style: none;
    margin-bottom: 50px;
    width: 100%;
    padding: 0 !Important;
}

.price_ul .price_li {
    font-size: 13px;
    letter-spacing: 1px;
    word-spacing: 1px;
    font-weight: 300 !important;

    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.price_ul .price_li::before {
    content: "âœ”";
    position: absolute;
    left: 0;
    top: 0;
    color: #282974;
    font-weight: bold;
}

.price-card .price-effort {
    font-size: 14px;
    font-weight: 400 !important;
}

.set-up button {
    color: #fff;
    background-color: #a7aaa4;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 50px;
}

.set-up button:hover {
    background-color: #282974;
    color: #fff;
}

/* agency modal */
.agency-form input {
    width: 100%;
    border-radius: 6px;
    border: 2px solid #000;
    margin: 8px auto;
    padding: 0.75rem 0.75rem;
}

.agencyBtn {
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    background-color: #282974;
    border-radius: 6px;
    padding: 14px 26px 14px 26px;
    color: #fff !important;
    border: none;
    transition: 0.3s;
    /* position: absolute !important;
    margin-left: 37px !important;
    margin-top: -54px !important; */
}

.agency-form::placeholder {
    color: #000 !important;
    font-size: 1em;
    font-weight: 400;
}

/* ===================Style the Image Used to Trigger the Modal=================== */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

/* ======================The Modal (background)====================== */
.myModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

/* ===================Modal Content (Image)=================== */
.modalContent {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    margin-top: 40px;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* ======================The Close Button====================== */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.home_div a.text-decoration-none {
    padding: 10px 40px;
    font-size: 1.2em;
    font-weight: 600;
    background-color: #fffff0;
    color: #282974;
    cursor: pointer;
    border-radius: 16px !important;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.home_div a.text-decoration-none:hover {
    color: #fffff0;
    background-color: #282974;
    border: 2px solid #fff;
}

/* =================100% Image Width on Smaller Screens================= */
@media only screen and (max-width: 700px) {
    .modalContent {
        width: 100%;
    }
}

/*==================MY FORM CSS==================*/
.myForm .form-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: #282974;
    margin-bottom: 6px;
}

.myForm input {
    padding: 0.75rem 1.5625rem;
    font-size: 1rem;
    height: auto;
    border: 2px solid #f0f0f0;
    color: #a0a1a3;
    background-color: #fff;
    border-radius: 0.375rem;
    box-shadow: none !important;
}

.myForm input:focus {
    border-color: #000;
}

.form-btn {
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    background-color: #282974;
    border-radius: 16px;
    padding: 16px 32px 16px 32px;
    color: #fff;
    border: none;
    transition: 0.3s;
}

.form-para {
    color: #5D5D66;
    opacity: 0.7;
    font-size: 14px;
}

.form-anch {
    color: #000 !important;
    text-decoration: none;
}

.form-anch:hover {
    color: #282974 !important;
}

.call_white {
    color: #f4ea10;
    font-weight: bold;
    text-decoration: none !important;
    border: 2px solid #f4ea10;
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
}

/*=====================fixify modal content=====================*/
.fixify-content {
    max-width: 550px;
    border-radius: 22px;
}

.first-main-content {
    width: 750px !important;
    border-radius: 22px;
}

.fixify_anch {
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #282974;
}

.maintenance-content {
    width: 570px;
    height: auto;
    border-radius: 22px;
    overflow-y: auto;
}

/* 1. set size of scrollbar */
.maintenance-content::-webkit-scrollbar {
    width: 9px;
}

/* 2. the track (background) of the scrollbar */
.maintenance-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

/* 3. the draggable â€œthumbâ€ */
.maintenance-content::-webkit-scrollbar-thumb {
    background-color: #282974;
    border-radius: 4px;
    border: 2px solid #f1f1f1;
}

/* 4. thumb on hover */
.maintenance-content::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.phone_img {
    width: 20%;
}

.call_img {
    width: 10%;
}

.modal_call_white {
    color: #fff;
    font-weight: bold;
    text-decoration: none !important;
    border: 2px solid #fff;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 16px;
    margin-bottom: 40px;
}

.modal_call_img {
    width: 40px;
}

.agency-form input {
    width: 80%;
    border-radius: 6px;
    border: 2px solid #000;
    margin: 8px auto;
}

#agencyForm .agency-btn {
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    background-color: #282974;
    border-radius: 6px;
    padding: 12px 26px 12px 26px;
    color: rgb(243 127 10) !important;
    border: none;
    transition: 0.3s;
    position: absolute;
    margin-left: -120px;
    margin-top: 12px;
}

.maintenance-logo-container {
    width: 25% !important;
}

.maintenance-logo {
    width: 100% !important;
}


.report-form {
    width: 70%;
}

.maintenance_reclaim_div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0;
    background: url("assets/blue_bg.png") no-repeat center center;
    background-size: contain;
    /* Ensures the image fills the div */
    border-radius: 10px;
    padding: 40px 20px;
    /* Add space around text */
    color: white;
    text-align: center;
    flex-wrap: wrap;
    /* Wrap if needed */
    width: 100%;
    min-height: 150px;
    /* Adjust if needed, or remove if content is enough */
}

.maintenance_reclaim_div span {
    font-weight: 800;
    font-size: 2rem;
}

.maintenance_reclaim_div .first_div h2 {
    color: #fff !important;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0px;
}

.maintenance_reclaim_div .first_div span {
    margin-right: 10px;
    color: rgb(243 127 10) !important;
}

#staticBackdrop2 .modal-content {
    background-color: #fffff0;
}

.agency-form ::placeholder {
    font-weight: bold;
    text-transform: capitalize;
    font-size: 0.9em;
}

.call_div {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mobile-policy {
    display: none !important;
}

.dekstop-policy {
    display: block !important;
}

.any_rental_mobile {
    width: 5% !important;
}

#staticBackdrop5 {
    overflow-y: auto;
}

#staticBackdrop5 .modal-dialog {
    max-width: fit-content;
    background-color: #fffff0;
    border-radius: 22px;
    padding: 0px;
    margin: auto;
    height: 100%;
}

.privacy-main-content {
    width: 650px !important;
    border-radius: 22px;
    overflow-y: auto;
}

#staticBackdrop6 {
    overflow-y: auto;
}

#staticBackdrop6 .modal-dialog {
    max-width: fit-content;
    background-color: #fffff0;
    border-radius: 22px;
    padding: 0px;
    margin: auto;
    height: 100%;
}

.agreement-main-content {
    width: 650px !important;
    border-radius: 22px;
    overflow-y: auto;
}


/* ==================Loader Styling================== */
#loaderScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 9999;
    transition: opacity 0.8s ease-in-out;
}

#logo {
    margin-top: 90px;
}

#logo,
#loaderText,
#anyRental,
#vanAnimation {
    opacity: 0;
    transition: opacity 1s ease-in;
}

#logo.fade-in,
#loaderText.fade-in,
#anyRental.fade-in,
#vanAnimation.fade-in {
    opacity: 1;
}




/* Hide content initially */
.hidden {
    display: none;
}

/*===================staticBackdrop3 modal css===================*/
#staticBackdrop3 {
    overflow-y: auto;
}

#staticBackdrop3 .modal-dialog {
    max-width: fit-content;
    background-color: #fffff0;
    border-radius: 22px;
    padding: 0px;
    margin: auto;
    height: 100%;
}

#staticBackdrop3 .first-main-content {
    width: 850px !important;
}

.mobile_break {
    display: none !important;
}

/*===================for mobile devices===================*/
@media only screen and (max-width:767px) {
    #staticBackdrop5 .privacy-main-content {
        width: auto !important;
    }

    #staticBackdrop5 {
        overflow-y: auto;
    }

    #staticBackdrop5 .modal-dialog {
        max-width: 100%;
        background-color: #fffff0;
        border-radius: 22px;
        padding: 0px;
        margin: auto;
        height: 100%;
    }

    #staticBackdrop6 .agreement-main-content {
        width: auto !important;
    }

    #staticBackdrop6 {
        overflow-y: auto;
    }

    #staticBackdrop6 .modal-dialog {
        max-width: 100%;
        background-color: #fffff0;
        border-radius: 22px;
        padding: 0px;
        margin: auto;
        height: 100%;
    }

    .mobile_break {
        display: block !important;
    }

    .privacy-main-content {
        width: 650px !important;
        border-radius: 22px;
        overflow-y: auto;
    }

    .agreement-main-content {
        width: 650px !important;
        border-radius: 22px;
        overflow-y: auto;
    }

    .agency-modal-content {
        width: 450px !important;
    }

    .agency-form input {
        width: 100%;
        border-radius: 6px;
        border: 2px solid #000;
        margin: 8px auto;
        padding: 0.55rem 0.75rem;
    }

    .agencyBtn {
        font-size: 14px;
        font-weight: 700;
        line-height: 0.8em;
        background-color: #282974;
        border-radius: 6px;
        padding: 12px 8px 12px 8px;
        color: #fff !important;
        border: none;
        transition: 0.3s;
        /* position: absolute;
          margin-left: 34px !important;
          margin-top: -48px !important; */
    }

    .main {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background: url(assets/17.jpg) center no-repeat;
        background-size: cover;
        background-position: -115px 0px;
        position: relative;
        padding: 20px;
        border-radius: 0px !important;
    }

    .cont {
        padding: 12px !important;
    }

    .main-container {
        position: absolute;
        max-width: 520px;
        margin-left: 0%;
        margin-top: 0% !important;
    }

    .submit-btn-div {
        margin-top: 4px !important;
    }

    .submit-btn {
        font-size: 14px !important;
        font-weight: 700;
        line-height: 1em;
    }

    .skipBtn {
        display: none !important;
    }

    .cont {
        padding: 18px;
        background-color: rgb(250 250 250 / 68%);
        backdrop-filter: blur(5px);
        border: solid 2px #ccc;
        box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0.2);
        border-radius: 22px !important;
    }

    /*    ================video section================*/
    .effort-div {
        display: none;
    }

    .effort-div-mobile {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 90%;
        background-color: #282974;
        color: #fff;
        font-size: 15px !important;
        text-align: center;
        font-weight: 700;
        border-radius: 22px;
        padding: 12px;
        margin-top: 0px;
        word-spacing: 2px;
    }

    .submit-btn-desktop {
        display: none !important;
    }

    .submit-btn-mobile {
        display: block !important;
    }

    .dekstop-policy {
        display: none !important;
    }

    .mobile-policy {
        display: block !important;
    }

    .policy_para {
        color: #000;
        font-size: 1rem;
        line-height: 22px;
        text-align: start;
    }

    .wave-div {
        height: 88vh;
        object-fit: cover;
    }

    .video-div {
        display: none;
    }

    .mobile-video-div {
        display: block;
        margin-top: 70px !important;
        margin-bottom: 50px;
    }

    .mobile-video-div video {
        height: 70vh;
        /* Make video almost full-screen height */
        width: auto;
        /* Adjust width automatically */
        max-width: 100%;
        display: block;
        margin: auto;
        border-radius: 26px;
    }

    .powerDiv {
        margin-top: 20px;
    }

    .maintenance-content {
        width: auto !important;
        height: auto;
        border-radius: 22px;
    }

    .first-main-content {
        width: auto !important;
    }

    .phone_img {
        width: 15%;
    }

    .call_img {
        width: 10%;
    }

    .social-div2 {
        display: none !important;
    }

    #staticBackdrop3 .first-main-content {
        width: auto !important;
    }

    .call_anch {
        color: #000080;
        background-color: #fffff0;
        font-weight: bold;
        text-decoration: none !important;
        border: 2px solid #fff;
        border-radius: 32px;
        padding: 5px;
        font-size: 12px;
        text-align: center;
        width: 50% !important;
        transition: transform 0.3s ease-in-out;
        animation: scaleAnimation 1.5s infinite alternate;
    }

    @keyframes scaleAnimation {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.1);
        }
    }

    .mobile-video-div {
        display: block;
        margin-top: 90px !important;
        margin-bottom: 40px;
    }

    .wave-div {
        height: 95vh;
        object-fit: cover;
        z-index: -1;
    }

    .maintenance-logo-container {
        width: 70% !important;
    }

    .maintenance-logo {
        width: 100% !important;
    }

    .imgDiv img {
        width: 75% !important;
    }

    #logo {
        width: 70% !important;
    }

    .any_rental_animation img {
        width: 12% !important;
    }

    .any_rental_animation .any_rental {
        font-size: 22px !important;
        font-weight: 400 !important;
    }

    #vanAnimation {
        width: 60% !important;
    }

    .any_rental {
        font-size: 18px !important;
        font-weight: 600 !important;
        text-align: center;
    }

    .upload-logo {
        padding: 15px 54px;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        background-color: #a3abb9;
        border: 2px solid #ccc;
        border-radius: 22px;
        margin-bottom: 12px;
    }

    .topbar {
        padding: 11px;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        background-color: #282974;
        border: 2px solid #ccc;
        text-align: center;
    }

    .any_rental_img {
        width: 15% !important;
    }

    .report-form {
        width: 94%;
    }

    .submit-btn-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 12px;
        text-align: center;
        gap: 6px;
        padding: 12px 26px;
    }

    .phone_img {
        width: 15%;
    }

    .maintenance_reclaim_div .first_div h2 {
        font-weight: 800;
        font-size: 1.2rem;
    }

    .maintenance_reclaim_div .first_div span {
        font-weight: 800;
        font-size: 1.2rem;
    }

    .call_div {
        display: none !important;
    }

    .call_anch {
        display: none !important;
    }

    .effort-div-animation {
        background-color: #282974;
        color: #fff;
        font-size: 1.1rem !important;
        font-weight: 700;
        border-radius: 22px;
        padding: 12px !important;
        text-align: center;
        position: absolute;
        bottom: 60px !important;
        width: 80%;
    }

    #loaderScreen {
        position: relative;
    }

    .test-report-tools {
        display: none !important;
    }

    .pricing-section .price-heading {
        color: #fffff0;
        font-size: 1.6rem;
        font-weight: 600;
        text-align: center;
        margin-top: 50px;
        margin-bottom: 40px;
    }

    .powerDiv h4 {
        color: #fff;
        font-size: 1.4rem;
        font-weight: 400;
        margin-top: 20px;
        text-align: center;
    }

    .text_under_card {
        margin-bottom: 0px;
    }

    .hover_toast {
        display: none !important;
    }

    .hover_toast_policy {
        display: none !important;
    }

    .hover_toast_logo {
        display: none !important;
    }

    .hover_toast_skipbtn {
        display: none !important;
    }
}





/* media query for tablet */
@media (min-width: 768px) and (max-width: 1024px) {

    .main {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        position: relative;
        padding: 20px;
        border-radius: 0px !important;
    }

    .test-report-tools {
        display: none !important;
    }

    .main-container {
        position: absolute;
        max-width: 520px;
        margin-left: 0%;
        margin-top: 0% !important;
    }

    .cont {
        padding: 18px;
        background-color: rgb(250 250 250 / 68%);
        backdrop-filter: blur(5px);
        border: solid 2px #ccc;
        box-shadow: 0 0 20px 20px rgba(255, 255, 255, 0.2);
        border-radius: 22px !important;
    }

    /*    ================video section================*/
    .effort-div {
        display: none;
    }

    .effort-div-mobile {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        background-color: #282974;
        color: #fff;
        font-size: 30px !important;
        text-align: center;
        font-weight: 800;
        border-radius: 22px;
        padding: 12px;
        margin-top: 0px;
        word-spacing: 3px;
    }

    .policy_para {
        color: #000;
        font-size: 1rem;
        line-height: 22px;
        text-align: start;
    }

    .wave-div {
        height: 88vh;
        object-fit: cover;
    }

    .mobile-video-div {
        display: none !important;
    }

    .powerDiv {
        margin-top: 20px;
    }

    .maintenance-content {
        width: auto !important;
        height: auto;
        border-radius: 22px;
    }

    .first-main-content {
        width: auto !important;
    }

    .phone_img {
        width: 25%;
    }

    .call_div {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .call_anch {
        color: #000080;
        background-color: #fffff0;
        font-weight: bold;
        text-decoration: none !important;
        border: 2px solid #fff;
        border-radius: 32px;
        padding: 6px 40px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .call_img {
        width: 10%;
    }

    #staticBackdrop3 .first-main-content {
        width: auto !important;
    }

    .mobile-video-div {
        display: block;
        margin-top: 90px !important;
        margin-bottom: 40px;
    }

    .wave-div {
        height: 50vh;
        object-fit: cover;
    }

    .wave-cont .row {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .maintenance-logo-container {
        width: 40% !important;
    }

    .maintenance-logo {
        width: 100% !important;
    }

    #logo {
        width: 90% !important;
    }

    .any_rental_animation img {
        width: 10% !important;
    }

    #vanAnimation {
        width: 40% !important;
    }

    .any_rental {
        font-size: 26px !important;
        font-weight: 400 !important;
    }

    .report-form {
        width: 94%;
    }

    .submit-btn-div {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 12px;
        text-align: center;
        gap: 6px;
        padding: 12px 26px;
    }

    .social-div img {
        width: 100%;
    }

    .social_sub_div {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        gap: 50px !important;
    }

    .phone_img {
        width: 15%;
    }

    .wave-cont .row {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .social-div2 {
        display: none !important;
    }

    .maintenance_reclaim_div .first_div span {
        color: rgb(243 127 10) !important;
        font-weight: 800;
        font-size: 1.2rem;
    }

    .maintenance_reclaim_div .second_div span {
        color: #fff !important;
        font-weight: 800;
        font-size: 1.2rem;
    }


}


/* â”€â”€â”€ Agency â€œSee How It Worksâ€ Modal â”€â”€â”€ */

/* center the modal vertically */
#staticBackdrop7 .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

/* panel background, thick gold border, round corners & shadow */
#staticBackdrop7 .modal-content.agency-modal-content {
    background-color: #282974;
    border: 4px solid #F0A500;
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    max-width: 540px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* remove the default header padding/border */
#staticBackdrop7 .modal-header {
    border: none;
    padding: 0;
}

/* custom close â€œÃ—â€ styling */
#staticBackdrop7 .btn-close {
    /* invert the default black icon to white */
    filter: invert(1) !important;
    /* bump its opacity up so itâ€™s fully visible */
    opacity: 1 !important;
}

/* remove the square/outline when itâ€™s clicked (focused) */
#staticBackdrop7 .btn-close:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* body text-center and no extra padding */
#staticBackdrop7 .modal-body {
    text-align: center;
    padding: 0;
}

/* modal title in gold */
#staticBackdrop7 .modal-body h2 {
    color: #F0A500;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* input wrapper to position suggestions */
#staticBackdrop7 .agency-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

/* frosted-glass gradient input */
#agencyInput2 {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-align: center;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
}

#agencyInput2:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 1);
}

#agencyInput2::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* dropdown of suggestions */
#suggestions2 {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1100;
}

#suggestions2.suggest_active {
    display: block;
}

#suggestions2 .suggestion {
    padding: 0.75rem 1rem;
    cursor: pointer;
    color: #333;
}

#suggestions2 .suggestion:hover {
    background: #f0f0f0;
}

/* big gold call-to-action button */
#staticBackdrop7 .agency-btn {
    background-color: #F0A500;
    color: #282974 !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* 1. set size of scrollbar */
#suggestions2::-webkit-scrollbar {
    width: 9px;
}

/* 2. the track (background) of the scrollbar */
#suggestions2::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

/* 3. the draggable â€œthumbâ€ */
#suggestions2::-webkit-scrollbar-thumb {
    background-color: #282974;
    border-radius: 4px;
    border: 2px solid #f1f1f1;
}

/* 4. thumb on hover */
#suggestions2::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* responsive tweaks */
@media (max-width: 576px) {
    #staticBackdrop7 .modal-content.agency-modal-content {
        padding: 1.5rem;
    }

    #agencyInput2 {
        padding: 0.65rem 1rem;
    }

    #staticBackdrop7 .agency-btn {
        width: 100%;
        padding: 0.75rem;
    }

    #staticBackdrop7 .modal-content.agency-modal-content {
        max-width: 395px;
    }
}