.overlay-box {
    position: absolute;
    top: 20%;
    right: 5%;
    background-color: white;
    color: black;
    border-radius: 8px;
    box-shadow: 3px 3px 7px 2px rgb(8 10 9 / 77%);
    width: 420px;
    z-index: 10;
}

@media only screen and (max-width: 800px) {
    .overlay-box {
        display: none;
    }
}

.overlay-box h4 {
    position: relative;
    display: block;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: var(--theme-color);
    padding: 13px 15px;
}

.overlay-box h4::before {
    position: absolute;
    content: '';
    background: #fff;
    width: 14px;
    height: 10px;
    left: 50%;
    margin-left: -7px;
    bottom: 0px;
    clip-path: polygon(0% 0%, 50% 0%, 100% 100%, 0% 100%, 50% 0%);
}

.overlay-box .service-list {
    position: relative;
    padding: 20px;
}

.overlay-box .service-list li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.overlay-box .service-list li a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-family: var(--title-font);
    color: var(--title-color);
    font-weight: 700;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
    padding: 11px 10px;
    padding-left: 20px;
}

.overlay-box .service-list li a i {
    position: absolute;
    display: inline-block;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    line-height: 38px;
    background: #f5f4f4;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    color: #a8a7a7;
}

.overlay-header {
    background-color: #f37020;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.overlay-list {
    list-style: none;
    padding: 10px;
}

.overlay-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.overlay-list li:hover {
    background-color: #f9f9f9;
}

.overlay-list li span {
    color: #f37020;
    font-weight: bold;
}

.social-bar {
    position: fixed;
    top: 53%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

/* .img-color {
    filter: hue-rotate(135deg);
} */

.social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Ensures a tags expand left, not shift bar */
    z-index: 1000;
    width: auto;
}

.social-bar a {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    color: white;
    text-decoration: none;
    margin: 2px 0;
    height: 36px;
    width: 39px;

    overflow: hidden;
    transition: width 0.3s ease;
    padding-right: 10px;
    white-space: nowrap;
}

.social-bar a span {
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-bar a i {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.social-bar a:hover {
    width: 160px;
}

.social-bar a:hover span {
    opacity: 1;
}

/* Brand background colors */
.apple {
    background-color: #000;
}

.android {
    background-color: #a4c639;
}

.facebook {
    background-color: #3b5998;
}

.x {
    background-color: #000;
}

.linkedin {
    background-color: #0077b5;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.youtube {
    background-color: #ff0000;
}

.whatsapp {
    background-color: #25d366;
}

.threads {
    background-color: #000;
}



/* Left updates section */
.updates {
    background: #2abd70;
    color: white;
    border-radius: 5px;
    padding: 20px 20px 130px 20px;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.updates h3 {
    color: white;
    margin-bottom: 10px;
}

.updates ul {
    position: absolute;
    animation: scroll-up 10s linear infinite;
    list-style: none;
    /* height: 59px; */
}

@keyframes scroll-up {
    0% {
        top: 100%;
    }

    100% {
        top: 20%;
    }
}

.mobile-fixed-buttons {
    display: none;
}

/* Show only on mobile (max-width: 768px) */
@media only screen and (max-width: 768px) {
    .mobile-fixed-buttons {
        display: flex;
        justify-content: space-between;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 5px 5px 10px 5px;
        background: #fff;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }

    .mobile-fixed-buttons .btn {
        flex: 1;
        margin: 0 5px;
    }
}

/* Right form section */

.emi-card {
    background: linear-gradient(to right, #f97316, #f97316);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.emi-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #f97316;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.interest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.interest-item span {
    font-size: 1.1rem;
}

.footer {
    position: relative;
}

.footer .footer-top {
    padding: 52px 0px;
    position: relative;
    background: #000;
}

.footer .footer-top:before {
    /* position: absolute; */
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.1;
}

.footer .single-footer {}

.footer .single-footer .social {
    margin-top: 11px;
}

.footer .single-footer .social li {
    display: inline-block;
    margin-right: 10px;
}

.footer .single-footer .social li:last-child {
    margin-right: 0px;
}

.footer .single-footer .social li a {
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #fff;
    text-align: center;
    padding: 0;
    border-radius: 100%;
    display: block;
    color: #fff;
    font-size: 16px;
}

.footer .single-footer .social li a:hover {
    color: #d9d9d9;
    background: #fff;
    border-color: transparent;
}

.footer .single-footer .social li a i {}

.footer .single-footer.f-link li a i {
    margin-right: 2px;
}

.footer .single-footer.f-link li {
    display: block;
    margin-bottom: 0;
}

.footer .single-footer.f-link li:last-child {
    margin: 0;
}

.footer .single-footer.f-link li a {
    color: #fff;
    /* text-transform: capitalize; */
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
}

.footer .single-footer.f-link li a:hover {
    padding-left: 8px;
}

.footer .single-footer h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
    padding-bottom: 11px;
    text-transform: capitalize;
    position: relative;
}

.footer .single-footer h2::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    height: 3px;
    width: 50px;
    background: #fff;
}

.footer .single-footer .time-sidual {
    margin-top: 15px;
}

.footer .single-footer .time-sidual {
    overflow: hidden;
}

.footer .single-footer .time-sidual li {
    display: block;
    color: #fff;
    width: 100%;
    margin-bottom: 5px;
}

.footer .single-footer .time-sidual li span {
    display: inline-block;
    float: right;
}

.footer .single-footer .day-head .time {
    font-weight: 400;
    float: right;
}

.footer .single-footer p {
    color: #fff;
}

.footer .single-footer .newsletter-inner {
    margin-top: 20px;
    position: relative;
}

.footer .single-footer .newsletter-inner input {
    background: transparent;
    border: 1px solid #fff;
    height: 50px;
    line-height: 42px;
    width: 100%;
    margin-right: 15px;
    color: #fff;
    padding-left: 18px;
    padding-right: 70px;
    display: inline-block;
    float: left;
    border-radius: 0px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 400;
    border-radius: 5px;
}

.footer .single-footer .newsletter-inner input:hover {
    padding-left: 22px;
}

.footer input::-webkit-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-moz-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::-ms-input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer input::input-placeholder {
    opacity: 1;
    color: #fff !important;
}

.footer .single-footer .newsletter-inner .button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    line-height: 50px;
    width: 50px;
    background: #fff;
    border-left: 1px solid #fff;
    text-shadow: none;
    box-shadow: none;
    display: inline-block;
    border-radius: 0px;
    border: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-radius: 0 5px 5px 0;
    color: #1A76D1;
    font-size: 25px;
}

.footer .single-footer .newsletter-inner .button i {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.footer .single-footer .newsletter-inner .button:hover i {
    color: #2C2D3F;
}

.footer .copyright {
    background: #000;
    padding: 4px 0px 9px 0px;
    text-align: center;
}

.news-updates {
    list-style: none;
    padding: 0;
}

.news-updates li {
    position: relative;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.news-updates li::after {
    content: "";
    display: block;
    margin-top: 8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #2abd70, #e86e1c);
    border-radius: 2px;
    animation: expand 0.6s ease;
}

@keyframes expand {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.footer .copyright .copyright-content p {
    color: #fff;
}

.footer .copyright .copyright-content p a {
    color: #fff;
    font-weight: 400;
    text-decoration: underline;
    display: inline-block;
    margin-left: 4px;
}