﻿.ripple-wrapper {
    position: fixed;
    top: 62%;
    left: -13px;
    transform: translateY(-50%);
    z-index: 1000;
}

/* Enquiry Button with Green Wave Ripple */
.supernova-drawer--left-toggle {
    display: inline-block;
    padding: 12px 16px;
    background-color: #79bd12;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    border-radius: 18px;
    position: relative;
    z-index: 2;
    overflow: visible;
}

    /* ✅ Box-Shadow Ripple */
    .supernova-drawer--left-toggle::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: inherit; /* ✅ Same button shape */
        background: transparent;
        animation: wave-ripple 2s ease-out infinite;
        z-index: 1;
        pointer-events: none;
    }

@keyframes wave-ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(121, 189, 18, 0.7); /* Starting bright */
        opacity: 1;
    }

    100% {
        box-shadow: 0 0 0 20px rgba(121, 189, 18, 0); /* Expands & fades */
        opacity: 0;
    }
}

.supernova-drawer--left-toggle span {
    position: relative;
    z-index: 2;
}


.enquiry-popup {
    position: fixed;
    top: 57%;
    left: 50%;
    transform: translate(-330%, -50%);
    opacity: 0;
    width:715px;
    height: 37rem;
    max-width: 90%;
    max-height: 73vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 0px;
    z-index: 9999;
    transition: transform 1.5s ease, opacity 0.4s ease;
}

    .enquiry-popup.open {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black Transparent */
    z-index: 9998; /* Popup पेक्षा कमी */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .modal-backdrop.show {
        opacity: 1;
        pointer-events: auto;
    }


.enquiry-box {
    display: flex;
    flex-direction: column;
    font-family: Nunito Sans, sans-serif;
}

    .enquiry-box input,
    .enquiry-box select,
    .enquiry-box textarea {
        margin-left: 16px;
        margin-bottom: 16px;
        padding: 7px;
        background-color: #fff;
        border: .5px solid #e2eef2;
        border-radius: 5px;
        color: #616c71;
        width: 100%;
        font-size: 16px;
        opacity: 0.6;
    }

    .enquiry-box button {
        background-color: #000050;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 400;
        width: 10rem;
    }

        .enquiry-box button:hover {
            background-color: #000080;
        }

.enquiry-popup h4 {
    color: #0e476b;
    font-size: 22px;
    font-weight: 690;
    font-family: Nunito Sans, sans-serif;
    text-transform: uppercase;
    letter-spacing: .2px;
    margin-top: 9px;
}

.enquiry-popup p {
    color: #79bd12;
    font-size: 12px;
    font-weight: 500;
   
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 5px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 999;
}

@media (max-width: 480px) {
    .enquiry-popup {
        width: 90%;
        padding: 15px;
        height: 100vh;
    }

    .supernova-drawer--left-toggle {
        font-size: 16px;
        padding: 20px 12px;
    }

    .sticky-reg-img-wrapper {
        display: none;
    }

        .sticky-reg-img-wrapper img {
            display: none;
        }

    .enquiry-box input,
    .enquiry-box select,
    .enquiry-box textarea {
        margin-left: 0px;
        margin-bottom: 16px;
        padding: 7px;
        background-color: #fff;
        border: .5px solid #e2eef2;
        border-radius: 5px;
        color: #616c71;
        width: 100%;
        font-size: 16px;
    }
}
#IDFName::placeholder {
    color: #616c71;
}

#IDLName::placeholder {
    color: #616c71;
}

#IDMobile::placeholder {
    color: #616c71;
}

#IDEMAIL::placeholder {
    color: #616c71;
}



.sticky-reg-img-wrapper {
    background-color: #79bd12;
    min-width: 219px;
    width: 160px;
    height:507px;
    margin-left: 172px;
    position: relative; 
}

    .sticky-reg-img-wrapper img {
        bottom: 0;
        height: auto;
        position: absolute;
        right: 23px;
        width: auto;
    }

@media (min-width: 997px) {
    .enquiry-box {
        display: flex;
        flex-direction: column;
        width: 32rem;
        margin: 10px;
        left: 3%;
    }
}
