footer {
    background: #002A5D;
}

.floating-demo-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: #fff;
    background: #d4eef9;
    color: #05379A;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.3s ease;
    z-index: 101;
    position: fixed;
    bottom: 32px;
}
    .floating-btn svg path{
        fill: #05379A
    }
    .floating-btn span {
        display: flex;
        align-items: center;
    }
    .floating-btn:hover {
        transform: translateY(-2px);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        text-decoration: none;
    }
footer  .container{
    max-width:1280px;
    width:90%;
    margin-inline:auto;
    padding-inline:0;
}
footer .about__row{
    display:grid;
    grid-template-columns:60% 40%;
    gap:50px;
    padding-block:40px;
    border-bottom:1px solid #fff;
}
footer .about__row .logo{
    width:100px;
    margin-bottom:20px;
    height:auto;
}
footer .about__row p{
    color: #fff;
    opacity:.8;
    align-items: center;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    cursor: pointer;
    font-size:14px;
}
footer .about__row .download__app{
    margin-bottom:40px;
}
footer .about__row .download__app .title{
      color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
footer .about__row .download__app .buttons__wrapper{
    display:flex;
    gap:12px;
}
footer .about__row .download__app a {
    box-shadow: 0 0 1px 0 rgba(24, 94, 224, 0.15), 0 6px 12px 0 rgba(24, 94, 224, 0.15);
    border-radius: 4px;
    padding: 0 12px;
    height:40px;
    justify-content: center;
    border: 1px solid #fff;
    letter-spacing: 0;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition:.25s ease;
}
footer .about__row .download__app a:hover{
    background:#fff;
    color:#000;
}
footer .about__row .download__app a svg path{
    fill:#ccc;
}
footer .about__row .social__links .title{
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
footer .about__row .social__links ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
footer .about__row .social__links a{
    color:#fff;
    opacity:0.8;
    cursor:pointer;
}
footer .about__row .social__links a:hover svg path{
    color:#fff;
}
    footer .about__row .social__links a svg {
        transition: transform 0.3s ease, fill 0.3s ease;
        fill: currentColor; 
    }

    footer .about__row .social__links a:hover svg {
        transform: translateY(-5px);
        color: white; 
        fill: white; 
    }
footer .properties__row{
    display:flex;
    gap:1rem;
    justify-content:space-between;
    padding-block:40px;
    border-bottom:1px solid #fff;
}
footer .properties__row a{
    color: #fff;
    opacity:0.8;
    align-items: center;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: color .12s cubic-bezier(.455,.03,.515,.955);
    display: flex;
    cursor: pointer;
    font-size:15px;
    padding-bottom:12px;
        transition: 
        color 0.2s cubic-bezier(.455, .03, .515, .955),
        opacity 0.2s ease,
        transform 0.2s ease;
}
footer .properties__row a:hover {
    color: #fff;
    opacity: 1;
    transform: translateX(3px); 
    /*text-decoration: underline;*/ 
}

footer .flex__row{
    display:flex;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: space-between;
    padding-block:60px;
    border-bottom:1px solid #fff;
}
footer .links__container .title{
    color:#fff;
    font-size:18px;
    text-transform:uppercase;
    margin-bottom:20px;
}
footer .links__container ul{
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
    display: flex;
}
footer .links__container a{
    color: #fff;
    opacity:.8;
    align-items: center;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: color .12s cubic-bezier(.455,.03,.515,.955);
    display: flex;
    cursor:pointer;
      transition: 
        color 0.2s cubic-bezier(.455, .03, .515, .955),
        opacity 0.2s ease,
        transform 0.2s ease;
}
footer .links__container a:hover{
     color: #fff;
    opacity: 1;
    transform: translateX(3px); 
}
footer .links__container a:hover{
    color:#fff;
}
.copyrights__row{
    padding-block:20px 40px;
}
.copyrights__row .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.copyrights__row p{
    color:#fff;
    opacity:0.8;
    font-size:14px;
}
.mobile__nav {
    display: none;
}

.app__promo___wrapper {
    display: none;
}


@media (max-width:600px){
    footer{
        padding-bottom:40px;
    }
    footer .about__row{
        grid-template-columns:1fr;
        gap:24px;
    }
    footer .flex__row{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:40px;
        padding-block:20px;
    }
    footer .links__container .title{
        font-size:15px;
    }
    footer .links__container a,
    footer .properties__row a{
        font-size:13px;
    }
    footer .properties__row {
        overflow: auto;
        gap:24px;
        padding-bottom:20px;
    }
    footer .properties__row a{
        width:max-content;
    }
    .copyrights__row .container{
        flex-direction:column;
    }
    /* app bottom nav bar starts */
    .mobile__nav {
        display: block;
        position: fixed;
        padding-bottom: 0;
        bottom: 0;
        width: 100%;
        z-index: 30;
        max-width: 100vw;
    }

        .mobile__nav .mobile__nav__ul {
            display: flex;
            height: 100%;
            border-radius: 20px 20px 0 0;
            border-top: 6px solid var(--primary__color);
            z-index: 22;
            position: relative;
            background: #fff;
            box-shadow: 0 -4px 8px rgba(31, 92, 163, 0.2);
        }

            .mobile__nav .mobile__nav__ul li {
                width: calc(100% - 200px);
                align-items: center;
                justify-content: center;
                flex-direction: column;
                position: relative;
            }

                .mobile__nav .mobile__nav__ul li.active {
                    border-bottom: 2px solid var(--primary__color);
                }

                .mobile__nav .mobile__nav__ul li.servicesLi button {
                    background: var(--primary__color);
                    height: 64px;
                    width: 64px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: absolute;
                    bottom: 10px;
                    left: 10px;
                    border-radius: 64px;
                    left: 50%;
                    transform: translateX(-50%);
                    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                    z-index: 20;
                }

                    .mobile__nav .mobile__nav__ul li.servicesLi button svg path {
                        stroke: #fff;
                    }

                .mobile__nav .mobile__nav__ul li a {
                    display: flex;
                    flex-direction: column;
                    font-size: 12px;
                    padding-top: 6px;
                    align-items: center;
                    font-weight: 400;
                }

                    .mobile__nav .mobile__nav__ul li a span {
                        color: #000;
                        opacity: 0.9;
                    }

                    .mobile__nav .mobile__nav__ul li a svg {
                        width: 22px;
                        height: 22px;
                    }

    .services__dropover {
        padding: 20px;
        width: 100%;
        border-radius: 15px 15px 0 0;
        box-shadow: 0 0 17px 0 #00000014;
        border: solid 1px #ededed;
        background: #fff;
        position: fixed;
        bottom: -100vh;
        transition: 0.3s;
        z-index: 16;
    }

        .services__dropover h4 {
            font-size: 18px;
            color: var(--primary__color);
            font-weight: 500;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .services__dropover.show {
            bottom: 42px;
            transition: 0.3s;
        }

        .services__dropover ul {
            display: block;
        }

        .services__dropover li {
            border-bottom: 1px solid #ededed;
            display: flex;
            width: 100%;
            height: 40px;
            align-items: center;
            cursor: pointer;
        }

            .services__dropover li a {
                font-size: 13px;
                color: #000;
                width: 100%;
            }

    .services__dropover__overlay {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 12;
    }

        .services__dropover__overlay.show {
            display: block;
        }
    /* banner promo modal mobile starts */
    .app__promo___wrapper {
        display: none;
    }

        .app__promo___wrapper.show {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 99;
            padding-inline: 20px;
        }

        .app__promo___wrapper .app__promo__modal {
            position: relative;
            background: #f3f2ff;
            padding: 20px;
            padding-bottom: 0;
            border-radius: 6px;
            position: absolute;
            top: 100px;
            width: calc(100% - 40px);
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
            margin-inline: auto;
        }

    .app__promo__modal .content {
        display: flex;
        flex-direction: column;
    }

    .app__promo___wrapper .close__app__promo {
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #fff;
        border-radius: 30px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .app__promo___wrapper h4 {
        font-size: 15px;
        color: #000;
        font-weight: 600;
        margin-bottom: 20px;
        text-align: center;
    }

    .app__promo___wrapper .download__links {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

        .app__promo___wrapper .download__links a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 13px;
            background: var(--primary__color);
            color: #fff;
            border-radius: 4px;
            padding-inline: 20px;
            height: 35px;
        }

            .app__promo___wrapper .download__links a img {
                width: 16px;
            }

    .app__promo___wrapper .brokersaathi__cover__image {
        width: 100%;
        margin-top: 20px;
        max-width: 300px;
        margin-inline: auto;
    }
    /* banner promo modal mobile ends */
}




.toast-container {
    position: fixed;
    top: 70px;
    right: 20px;
    z-index: 9999;
}

.toast {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeInOut 3s ease forwards;
}

    .toast.success {
        background-color: #28a745;
    }

    .toast.warning {
        background-color:red;
        color: #333;
    }

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    10% {
        opacity: 1;
        transform: translateY(0);
    }

    90% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


@media(max-width:576px){
    .floating-btn {
        bottom: 80px;
        font-size: 12px;
        padding: 8px 12px;
        left:12px;
    }
    .floating-btn svg{
        width:16px;
    }
}