body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* HEADER */
.top-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    background: linear-gradient(to right, #3f00ff, #6a00ff);
    color: white;
}

/* Location */
.location{
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
}

.loc-icon{
    width: 20px;
    height: 20px;
}

/* Logo */
.logo img{
    height: 35px;
    width: auto;
    display: block;
}

/* Buttons */
.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;

    padding: 6px 12px;
    background: white;
    color: #0b5ed7;

    border: none;
    border-radius: 6px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.2s ease;
}

.call-btn:hover {
    background: #f0f6ff;
    color: #084298;
    transform: translateY(-1px);
}

/*whatsapp*/
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 9px 12px;
    background: white;
    color: #25D366;

    border: none;
    border-radius: 6px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.2s ease;
}

.whatsapp-btn:hover {
    background: #f0fff5;
    color: #128C7E;
    transform: translateY(-1px);
}
/* CONTAINER */
.container {
    display: flex;
    gap: 15px;
    padding: 15px;
}

/* CARD */
.card {
    flex: 1;
    border: 2px solid #3f00ff;
    border-radius: 8px;
    overflow: hidden;
}

/* IMAGE BOX */
.image {
    height: 200px;
    background: #ddd;
}

/* BUTTON */
.card button {
    width: 100%;
    padding: 10px;
    background: #3f00ff;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background: linear-gradient(to right, #3f00ff, #6a00ff);
    color: white;
    text-align: center;
    padding: 10px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-location .loc-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-contact-link {
    color: white;
    text-decoration: none;
}

.footer-contact-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    /* Cards mobile में नीचे-नीचे */
    .container {
        flex-direction: column;
    }

    /* Header */
    .top-header {
        padding: 5px 6px;
    }

    /* Location */
    .location {
        font-size: 11px;
        gap: 2px;
    }

    .loc-icon {
        width: 17px;
        height: 17px;
    }

    /* Logo */
    .logo img {
        height: 28px;
    }

    /* Call Button */
    .call-btn {
        padding: 6px 8px;
        font-size: 12px;
        border-radius: 5px;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        padding: 6px 8px;
        font-size: 12px;
        border-radius: 5px;
        gap: 3px;
    }
}

.image {
    height: 200px;
    background: url('your-image.jpg') center/cover;
}



/* =========================
   ENQUIRY POPUP
========================= */

.enquiry-modal {
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.6);

    align-items: center;
    justify-content: center;

    z-index: 9999;

    padding: 15px;
}


/* Popup Box */

.enquiry-box {
    position: relative;

    width: 100%;
    max-width: 380px;

    background: white;

    border-radius: 12px;

    padding: 25px;

    box-sizing: border-box;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);

    text-align: left;
}


/* Heading */

.enquiry-box h2 {
    margin-top: 0;

    margin-bottom: 18px;

    color: #3f00ff;

    text-align: center;
}


/* Product */

.enquiry-product {
    margin-bottom: 18px;

    font-size: 15px;

    color: #444;
}

.enquiry-product strong {
    color: #3f00ff;
}


/* Close Button */

.enquiry-close {
    position: absolute;

    right: 12px;
    top: 8px;

    width: 32px;
    height: 32px;

    border: none;

    background: transparent;

    font-size: 28px;

    color: #555;

    cursor: pointer;
}

.enquiry-close:hover {
    color: red;
}


/* Label */

.enquiry-box label {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;

    font-weight: 600;

    color: #333;
}


/* Mobile Input */

.mobile-input {
    display: flex;

    width: 100%;

    border: 1px solid #ccc;

    border-radius: 7px;

    overflow: hidden;

    box-sizing: border-box;

    margin-bottom: 18px;
}


.mobile-input span {
    display: flex;

    align-items: center;

    padding: 0 12px;

    background: #f1f1f1;

    color: #333;

    font-weight: 600;
}


.mobile-input input {
    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    padding: 11px;

    font-size: 15px;
}


/* Submit Button */

.submit-enquiry {
    width: 100%;

    padding: 11px;

    border: none;

    border-radius: 7px;

    background: #3f00ff;

    color: white;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;
}

.submit-enquiry:hover {
    background: #3000cc;
}


/* Message */

#enquiryMessage {
    text-align: center;

    font-size: 13px;

    margin-bottom: 0;
}

/* =========================
   SUCCESS POPUP
========================= */

.success-modal {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.65);

    align-items: center;

    justify-content: center;

    z-index: 10000;

    padding: 15px;
}


.success-box {

    width: 100%;

    max-width: 430px;

    background: white;

    border-radius: 15px;

    padding: 28px 24px;

    box-sizing: border-box;

    text-align: center;

    box-shadow: 0 12px 40px rgba(0,0,0,0.35);

    animation: successPopup 0.25s ease;
}


@keyframes successPopup {

    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}


/* Success Icon */

.success-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    font-size: 36px;

    font-weight: bold;

    display: flex;

    align-items: center;

    justify-content: center;
}


.success-box h2 {

    margin: 5px 0 15px;

    color: #3f00ff;

    font-size: 25px;
}


.success-box p {

    margin: 10px 0;

    color: #444;

    font-size: 15px;

    line-height: 1.5;
}


.quick-help {

    font-weight: 600;

    color: #333 !important;
}


/* Call + WhatsApp */

.success-buttons {

    display: flex;

    gap: 10px;

    margin-top: 20px;
}


.success-buttons a {

    flex: 1;

    padding: 11px 8px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

}


.success-call {

    background: #0b5ed7;

    color: white;
}


.success-whatsapp {

    background: #25D366;

    color: white;
}


/* OK Button */

.success-close {

    width: 100%;

    margin-top: 12px;

    padding: 10px;

    border: none;

    border-radius: 7px;

    background: #3f00ff;

    color: white;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;
}


.success-close:hover {

    background: #3000cc;
}


/* Mobile */

@media (max-width: 480px) {

    .success-box {

        padding: 24px 18px;
    }

    .success-box h2 {

        font-size: 22px;
    }

    .success-box p {

        font-size: 14px;
    }

}