@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

@property --hue {
    syntax: "<angle>";
    inherits: true;
    initial-value: 180deg;
}

@keyframes rotateHue {
    0% {
        --hue: 180deg;
    }

    25% {
        --hue: 360deg;
    }

    100% {
        --hue: 180deg;
    }
}

select {
    appearance: none;

    @supports (appearance: base-select) {
        &,
        &::picker(select) {
            appearance: base-select;
            animation: rotateHue 10s infinite;
        }
    }
}

select {
    display: flex;
    justify-content: space-between;
    min-width: 100%;
    align-items: center;
    padding-block: 10px;
    padding-inline: 20px 30px;
    border-radius: 5px;
    border: 1px solid #1d201d;
    cursor: pointer;
    background: #ffffffff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23000' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A")
        right 15px center / 20px no-repeat;

    @supports (appearance: base-select) {
        padding-inline: 20px;
        background-image: none;

        /* Remove original arrow option */
        img {
            width: 30px;
            line-height: 1;
        }

        &::picker-icon {
            content: "";
            width: 15px;
            height: 15px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='1.5' stroke='%23000' class='size-6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E%0A");
            transition: rotate 0.2s ease-out;
        }

        &:open::picker-icon {
            rotate: 180deg;
        }

        &::picker(select) {
            padding: 0;
            margin-top: 5px;
            border: 1px solid #dcdcdc;
            background: #ffffffff;
            border-radius: 2px;
            opacity: 0;
            height: 0;
            overflow: clip;
            transition: height 0.5s ease-out, opacity 0.5s ease-out,
                overlay 0.5s, display 0.5s;
            transition-behavior: allow-discrete;
        }

        &:open::picker(select) {
            opacity: 1;
            height: calc-size(auto, size);
            overflow: auto;

            @starting-style {
                opacity: 0;
                height: 0;
            }
        }

        option {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 8px;
            gap: 10px;
            font-size: 14px !important;

            &:where(:hover, :focus, :active) {
                background: #e75a75;
                color: white;
                font-weight: bold;
            }

            &:checked {
                background: #cb2845 !important;
                color: white;
            }

            &::checkmark {
                display: none;
            }
        }

        .selectedcontent {
            display: flex;
            align-items: center;
            gap: 10px;
        }
    }
}

html,
body {
    overflow-x: hidden !important;
}

.header {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: #1f1f1f;
    display: grid;
    left: 50%;
    place-items: center;
    position: fixed;
    top: 0;
    translate: -50%;
    width: 100vw;
    z-index: 99;
}

.header_logo_container {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 8.85px;
}

.header_container {
    align-items: center;
    background-color: #1f1f1f;
    display: flex;
    height: 88px;
    justify-content: space-between;
    max-width: 1152px;
    padding: 8px 24px;
    width: 1152px;
}

.header_logo_container {
    align-items: center;
    cursor: pointer;
    display: flex;
    gap: 8.85px;
}

.header_logo_image {
    object-fit: contain;
    width: 225px;
}

.header_button_container {
    align-items: center;
    display: flex;
    gap: 16px;
}

.header_button_support {
    height: 48px;
    width: 193px;
}

.header_button {
    height: 48px;
    width: 193px;
}

.header_button_support_mobile {
    display: none;
}

.btn_small {
    font-size: 16px;
    padding: 8px 16px 10px;
}

.button_wrapper {
    align-items: center;
    border-radius: 4px;
    color: #fff;
    display: flex;
    gap: 8px;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.button_wrapper .primary_button_img {
    align-items: center;
    display: flex;
    justify-content: center;
}

.primary_button_img {
    height: 24px;
    width: 24px;
}

.button_wrapper .primary_btn_icon {
    height: 20px;
    width: 20px;
}

.header_logo_image {
    object-fit: contain;
    width: 225px;
}

img {
    height: 100%;
}

@media (max-width: 600px) {
    .header {
        width: 100%;
        z-index: 9999;
    }
}

@media (max-width: 600px) {
    .header_container {
        height: 70px;
        padding: 8px 16px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .header_logo_image {
        width: 150px;
    }
}

@media (max-width: 600px) {
    .header_button_support {
        display: none;
    }
}

@media (max-width: 600px) {
    .header_button {
        height: 32px;
        width: 100px;
    }
}

@media (max-width: 600px) {
    .header_button .btn_small {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .header_button_support_mobile {
        display: block;
        height: 32px;
    }
}

/* ================= MAIN FORM BASE STYLE ================= */

.home-title {
    font-size: 33px;
    font-weight: 400;
    color: #222;
    /* margin-top: 70px; */
    margin-top: 50px;
}

.main_form-con {
    background: #f7f7fa;
    border-radius: 10px;
    max-width: 100%;
    margin: auto;
}

.main_form-con .form-title {
    font-size: 35px;
    font-weight: 400;
    color: #222;
    margin-top: 70px;
}

.main_form-con .form-label {
    font-size: 18px;
    font-weight: 500;
}

.main_form-con .custom-input {
    font-family: InterRegular !important;
    font-size: 14px !important;
    background-color: #f1f5f9 !important;
    border: 1px solid #dcdcdc;
    border-radius: 6px;

    padding: 10px;
}

.main_form-con .icon-bg {
    background: #f1f1f1;
    border: 1px solid #dcdcdc;
}

.main_form-con .current-location {
    font-size: 13px;
    color: #000000;
    text-decoration: underline;
    margin-top: 5px;
    display: inline-block;
}

.main_form-con .submit-btn {
    background: #e4a7ad;
    color: white;
    padding: 10px 0;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.main_form-con .submit-btn:hover {
    background: #d17c86;
}

/* ================= PINK THEME COLORS ================= */
:root {
    --pink-main: #d81f48;
    /* dropdown background & focus border */
    --pink-light: #f8d0da;
    /* light pink highlight */
}

/* ================= SELECT DROPDOWN BACKGROUND ================= */
.custom-input:focus,
.custom-input:active {
    border-color: var(--pink-main) !important;
}

/* Dropdown list (the popup background) */

/* ================= TEXT INPUT FOCUS BORDER ================= */
input.custom-input:focus,
textarea.custom-input:focus {
    border-color: var(--pink-main) !important;
    /* box-shadow: 0 0 0 0.2rem rgba(216, 31, 72, 0.25) !important; */
}

/* Input-group left addon when focused */
.input-group:focus-within .input-group-text {
    border-color: var(--pink-main) !important;
    background: var(--pink-light) !important;
}

/* ===========================================
        RESPONSIVE BREAKPOINTS
=========================================== */

/* ===== Extra Small Devices: max-width 480px ===== */
@media (max-width: 480px) {
    .main_form-con {
        padding: 20px !important;
    }

    .form-title {
        font-size: 22px !important;
        line-height: 28px;
    }

    .form-label {
        font-size: 14px !important;
    }

    .custom-input {
        background-color: #f1f5f9;
        padding: 8px;
        font-size: 14px;
    }

    .icon-bg {
        padding: 6px 10px !important;
    }

    .submit-btn {
        font-size: 14px;
        padding: 8px 0;
    }
}

/* ===== Small Devices: max-width 576px ===== */
@media (max-width: 576px) {
    .form-title {
        font-size: 26px;
        line-height: 32px;
    }

    .custom-input {
        padding: 9px;
        font-size: 15px;
    }
}

/* ===== Tablets: 577px – 768px ===== */
@media (min-width: 577px) and (max-width: 768px) {
    .form-title {
        font-size: 30px;
    }

    .form-label {
        font-size: 16px;
    }

    .custom-input {
        font-size: 15px;
        padding: 10px;
    }
}

/* ===== Small Laptops: 769px – 992px ===== */
@media (min-width: 769px) and (max-width: 992px) {
    .form-title {
        font-size: 32px;
    }

    .custom-input {
        font-size: 16px;
    }
}

/* ===== Desktops: 993px – 1200px ===== */
@media (min-width: 993px) and (max-width: 1200px) {
    .main_form-con {
        max-width: 750px;
    }

    .form-title {
        font-size: 34px;
    }
}

/* Background Overlay */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Popup Box */
.age-popup {
    width: 550px;
    background: #1b1b1b;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.4s ease-out;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 18+ Icon */
.age-icon {
    width: 120px;
    height: 120px;
    background: #e0004d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Titles */
.age-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Text */
.age-text {
    font-size: 16px;
    color: #d1d1d1;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Question */
.age-question {
    font-size: 20px;
    margin-bottom: 25px;
}

/* Buttons Container */
.age-btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Buttons */
.btn-no,
.btn-yes {
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

/* No Button */
.btn-no {
    background: transparent;
    border: 1px solid #555;
    color: #fff;
}

/* Yes Button */
.btn-yes {
    background: #d5004f;
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .age-popup {
        width: 90%;
        padding: 25px;
    }
}

.hide {
    display: none !important;
}

a {
    text-decoration: none !important;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none !important;
}

.footer_list_item a {
    color: #111827 !important;
    /* your footer text color */
    text-decoration: none !important;
    /* remove underline */
}

.footer_list_item a:hover {
    color: #111827 !important;
    /* optional hover color */
}

/* Main select box style */
.dropdown-lis {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    background: #ffffff
        url("data:image/svg+xml;utf8,<svg fill='%23555' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>")
        no-repeat right 12px center;

    border: 1px solid #d4d4d4;
    padding: 10px 40px 10px 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

/* Selected option inside dropdown */
option:checked {
    background: #e75a75 !important;
    /* pink */
    color: #fff !important;
}

/* Hover workaround (Chromium only) */
select:-internal-list-box option:hover {
    background-color: #e75a75 !important;
    color: #fff !important;
}

/* Hover */
.dropdown-lis:hover {
    border-color: #ff2d6c;
}

/* Focus */
.dropdown-lis:focus {
    outline: none;
    border-color: #ff2d6c;

    box-shadow: 0 0 5px rgba(255, 0, 90, 0.2);
}

.select2-results__option--highlighted {
    background-color: rgb(203, 40, 69) !important;
    color: #fff !important;
}

input[type="radio"]:checked {
    accent-color: #cb2845 !important;
}

.location-icon {
    height: 18px;
    margin-top: -3px;
}

.select2-results__option {
    padding: 10px !important;
    font-size: 14px;
}

.custom-dropdown {
    font-family: InterRegular !important;
    font-size: 14px !important;
    position: relative;
    width: 100%;
}

.custom-dropdown-selected {
    padding: 12px 14px;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    position: relative;
}

/* Arrow */
.custom-dropdown-selected::after {
    content: "▼";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
}

.custom-dropdown-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    position: absolute;
    width: 100%;
    display: none;
    z-index: 10;
}

/* Each option */
.custom-dropdown-list li {
    padding: 7px 7px;
    cursor: pointer;
}

/* Hover → Pink */
.custom-dropdown-list li:hover {
    background-color: #e75a75;
    color: #fff;
}

/* Selected → Pink */
.custom-dropdown-list li.selected {
    background-color: #cb2845;
    color: #fff;
}

/* about */

.about-con {
    padding: 50px 20px;
    max-width: 850px;
    margin: auto;
}

.about-con h1 {
    color: #000000;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 25px;
}

.about-con h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.about-con p,
.about-con ol li {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.about-con ol {
    padding-left: 18px;
}

/* privacy-policy */

.privacy-policy-con {
    max-width: 850px;
    margin: 50px auto;
    padding: 20px 15px;
    /* background: #ffffff; */
}

.pp-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #222;
    margin-bottom: 15px;
}

.pp-date {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.pp-intro {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.pp-heading {
    font-size: 22px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #222;
}

.privacy-policy-con ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-policy-con ul li {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .pp-title {
        font-size: 30px;
    }

    .pp-heading {
        font-size: 20px;
    }

    .pp-intro,
    .privacy-policy-con ul li {
        font-size: 15px;
    }
}

/* support */

.support-con {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: bold;
    padding: 50px 20px;
}

.support-con .form-title {
    font-size: 35px;
    font-weight: 400;
    color: #222;
}

.description-text {
    font-size: 16px;
    color: #6c6c6c;
}

.form-label {
    font-size: 18px;
    font-weight: 500;
}

.custom-input,
.custom-textarea {
    background: #f7f8fc;
    border: 1px solid #9b9c9e;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
}

.custom-input:focus,
.custom-textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: #d3d7e3;
}

.upload-box-modal {
    width: 90px;
    height: 90px;
    cursor: pointer;
}

.upload-box {
    width: 100px;
    height: 100px;
    cursor: pointer;
}

.upload-icon {
    font-size: 22px;
    color: #3498db;
    font-weight: bold;
}

.upload-text {
    font-size: 12px;
    color: #3498db;
    margin: 4px 0 0;
}

.submit-btn {
    background: #eebbc4;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    border: none;
}

.submit-btn:hover {
    background: #eaa8b5;
}

/* terms-conditons */

.terms-conditions-con {
    max-width: 850px;
    margin: auto;
    padding: 50px 20px;
}

.terms-conditions-con .tc-title {
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 20px;
}

.terms-conditions-con .tc-date {
    font-size: 18px;
    color: #777;
    margin-bottom: 25px;
}

.terms-conditions-con .tc-heading {
    margin-top: 35px;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}

.terms-conditions-con .tc-intro,
.terms-conditions-con ul li {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.terms-conditions-con ul {
    padding-left: 20px;
}

/* post-ad */

.download-section {
    padding: 60px 132px;
    text-align: center;
}

.download-section h2 {
    font-size: 45px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.download-section p {
    color: #475569;
    font-size: 18px;
    margin: 10px auto;
}

.download-section .sub-text p {
    font-size: 22px;
    font-weight: 500;
}

.download-btn {
    background-color: #a81c34;
    color: #fff;
    padding: 15px 45px;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}

.download-btn:hover {
    background-color: #961717;
    color: #fff;
}

.small-text {
    font-size: 16px;
    color: #6b7280;
    margin-top: 8px;
}

.download-image {
    height: 180px;
    margin-bottom: 30px;
}

/* =============== EXTRA SMALL DEVICES (0–576px) ==============*/
@media (max-width: 576px) {
    .download-section {
        padding: 50px 15px;
    }

    .download-image {
        height: 150px;
        margin-bottom: 20px;
    }

    .download-section h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .download-section p {
        font-size: 14px;
    }

    .download-section .sub-text p {
        font-size: 16px;
    }

    .download-btn {
        font-size: 16px;
        padding: 12px 25px;
    }

    .small-text {
        font-size: 12px;
    }
}

/* ================ SMALL DEVICES (577px–768px) ===============*/
@media (min-width: 577px) and (max-width: 768px) {
    .download-image {
        height: 150px;
    }

    .download-section h2 {
        font-size: 32px;
    }

    .download-section p {
        font-size: 16px;
    }

    .download-section .sub-text p {
        font-size: 18px;
    }

    .download-btn {
        font-size: 18px;
        padding: 14px 35px;
    }

    .small-text {
        font-size: 13px;
    }
}

/*============== MEDIUM DEVICES (769px–992px) ================*/
@media (min-width: 769px) and (max-width: 992px) {
    .download-image {
        height: 160px;
    }

    .download-section h2 {
        font-size: 38px;
    }

    .download-section p {
        font-size: 18px;
    }

    .download-btn {
        font-size: 20px;
        padding: 15px 40px;
    }
}

/*============== LARGE DEVICES (993px–1200px) =================*/
@media (min-width: 993px) and (max-width: 1200px) {
    .download-image {
        height: 170px;
    }

    .download-section h2 {
        font-size: 42px;
    }
}

.post_ad2-con {
    /* background: #ffffff; */
    padding: 25px;
    border-radius: 8px;
    width: 80%;
    margin: auto;
}

.post_ad2-con .apk-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.post_ad2-con .apk-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
}

.post_ad2-con .steps-list p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.5;
}

.post_ad2-con .steps-list .emoji {
    margin-right: 6px;
    font-size: 18px;
}

/*Extra Small / Small Phones (max-width: 576px)*/
@media (max-width: 576px) {
    .post_ad2-con {
        width: 90%;
        padding: 20px;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .post_ad2-con .apk-icon {
        width: 150px;
        height: 150px;
        margin-bottom: 10px;
    }

    .apk-title {
        font-size: 22px;
    }

    .steps-list p {
        font-size: 17px;
    }
}

/*Small Devices (Tablets) 577px–768px*/
@media (min-width: 577px) and (max-width: 768px) {
    .post_ad2-con {
        width: 85%;
        padding: 22px;
    }

    .apk-icon {
        width: 85px;
        height: 85px;
    }

    .apk-title {
        font-size: 24px;
    }

    .steps-list p {
        font-size: 18px;
    }
}

/* Medium Devices (769px–992px)*/
@media (min-width: 769px) and (max-width: 992px) {
    .post_ad2-con {
        width: 75%;
    }

    .apk-icon {
        width: 90px;
        height: 90px;
    }

    .apk-title {
        font-size: 25px;
    }

    .steps-list p {
        font-size: 19px;
    }
}

/* Large Devices (993px–1200px)*/
@media (min-width: 993px) and (max-width: 1200px) {
    .post_ad2-con {
        width: 70%;
    }

    .apk-title {
        font-size: 26px;
    }

    .steps-list p {
        font-size: 20px;
    }
}

/* footer */

.footer {
    display: grid;
    place-items: center;
}

.footer_container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 1152px;
    padding: 8px 24px;
    width: 100%;
}

.footer_logo_container {
    margin: 0;
}

.footer_list_items_container {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer_list_item {
    color: #111827;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: bold;
    font-size: 12px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .footer_container {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        text-align: center;
    }

    .footer_list_items_container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer_list_item {
        font-size: 11px;
    }
}

@media (max-width: 393px) {
    .footer_list_item {
        font-size: 10px;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.modal-content {
    background: #fff;
    width: 400px;
    margin: 50px auto;
    padding: 15px;
    border-radius: 10px;
}

.address-text {
    font-size: 13px;
    color: #6d6a6a;
}

.current-location {
    text-decoration: underline;
    margin-top: 10px;
}

.map-modal-div {
    width: 100%;
    height: 400px;
}

.map-button {
    float: right;
    color: white;
    font-weight: bold;
    background: linear-gradient(rgb(168, 28, 52) 0%, rgb(168, 28, 52) 100%);
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 30px;
    font-weight: bold;
    float: right;
    cursor: pointer;
    margin-top: -13px;
}

.modal-title {
    font-size: 14px;
    font-weight: bold;
}

.pac-input {
    background-color: #fff;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 25px;
    border: 1px solid #d9d9d9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    width: 90%;
    margin: 10px auto;
    display: block;
}

#locationSearchInput {
    position: absolute !important;
    z-index: 9999 !important;
    background: #fff;
    width: 300px;
    padding: 8px;
}

.pac-container {
    z-index: 99999 !important;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f6fa;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    gap: 25px;
    padding: 30px;
    max-width: 1200px;
    margin-top: 100px !important;
}

/* Left Card */
.success-box {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.success-icon {
    font-size: 55px;
    color: #e91e63;
}

/* Left Image Section */
.image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Big Image */
.full-width-image {
    width: 90%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

/* Bottom Thumbnails Under Big Image */
.image-thumbnails {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
}

.image-thumb {
    width: 28%;
    /* Makes two images same width side-by-side */
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.image-thumb:hover {
    opacity: 0.7;
}

.d-flex label {
    font-weight: normal !important;
}

.request_heading {
    color: #111827;
    font-family: PlusJakartaSans-Medium;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    text-align: center;
}

.request_heading_sec {
    color: #111827;
    font-family: PlusJakartaSans-Medium;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    margin-bottom: 32px;
    text-align: center;
}

.request_container {
    display: grid;
    place-items: center;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.lightbox img {
    max-width: 80%;
    border-radius: 8px;
}

/* Right Section */
.details-box {
    flex: 2;
    background: white;
    /* padding: 35px; */
    /* border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08); */
}

.details-box1 {
    flex: 2;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.08);
    margin-top: 15px;
}

.back-btn {
    background: rgb(203, 40, 69);
    padding: 10px 22px;
    border-radius: 6px;
    color: #fff;
    border: none;
    cursor: pointer;
}

.test-con {
    border: 1px solid rgb(235, 232, 232);
    padding: 20px;
    border-radius: 1px;
}

h2 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #222;
}

.label {
    font-weight: bold;
    color: #111827;
    margin-top: 15px;
    display: block;
}

label {
    font-weight: bold;
    color: #111827;
    display: block;
}

/* Contact Box */
.contact-box {
    margin-top: 25px;
    border-left: 4px solid #d81b60;
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
}

.contact-box input {
    width: 140px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-box .countrycode {
    width: 55px;
}

.contact-box button i {
    font-size: 20px;
}

.btn {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    color: white;
    margin-right: 5px;
}

.btn-chat {
    background: #00d14f;
}

.btn-call {
    background: #111827;
}

.report-btn {
    width: 60%;
    margin-top: 10px;
    background: #db0038;
    padding: 12px;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Warning Section */
.warning-box {
    width: 60%;
    margin-top: 20px;
    padding: 15px;
    background: #fff0f0;
    color: #b70000;
    border-left: 4px solid #ff0000;
    border-radius: 5px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }
}
