* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: black !important;
    color: #fff !important;
}

.head {
    color: red;
    font-weight: bold;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.head-text {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.5;
}

.container {
    display: grid;
    place-items: center;
}

.main-order {
    width: 50%;
}

.button {
    border-radius: 10px;
    color: white;
    background-color: red;
    font-weight: bold;
    text-decoration: none;
    padding: clamp(8px, 2vw, 12px);
    display: inline-block;
    width: 100%;
    max-width: 300px;
    margin: 15px 0;
    transition: all 0.3s;
    font-size: clamp(14px, 2vw, 16px);
    text-align: center;
}

.button:hover {
    background-color: black;
    color: red;
    transform: scale(1.05);
}

.product-img {
    max-height: 300px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Order page styles */
.box-order {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    /* background-color: chocolate; */
    padding: clamp(15px, 3vw, 20px);
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rate-box {
    height: auto;
    min-height: 100px;
    width: 100%;
    border: 2px solid black;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.old-rate,
.new-rate {
    color: white;
    font-weight: bold;
    margin: 5px 0;
}

.old-rate {
    font-size: clamp(16px, 2vw, 18px);
    text-decoration: line-through;
}

.new-rate {
    font-size: clamp(20px, 3vw, 24px);
}

.highlight-box {
    width: 100%;
    background-color: red;
    text-align: center;
    border: 4px solid white;
    margin: 10px 0;
    padding: clamp(8px, 2vw, 12px);
}

.highlight-text {
    font-size: clamp(20px, 4vw, 40px);
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.3;
}

.product-img-order {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px auto;
    object-fit: contain;
    display: block;
}

.benefits-p {
    color: white;
    font-size: clamp(16px, 2vw, 20px);
    text-align: left;
    padding: 10px;
    line-height: 1.6;
}

.proof-text {
    margin-top: clamp(20px, 4vw, 40px);
    color: white;
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
}

.small-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
}

.small-img {
    width: 100%;
    max-width: 49%;
    height: auto;
    object-fit: contain;
}

.small-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.form-table {
    border: 2px solid white;
    width: 100%;
    padding: clamp(15px, 3vw, 20px);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

label {
    font-weight: bold;
    display: block;
    margin: 15px 0 5px;
    color: white;
    font-size: clamp(14px, 2vw, 16px);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: clamp(8px, 2vw, 12px);
    border: none;
    border-radius: 5px;
    font-size: clamp(14px, 2vw, 16px);
    background: rgba(255, 255, 255, 0.9);
}

.btn-form {
    margin-top: 20px;
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    font-size: clamp(16px, 2vw, 18px);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    animation: blink 0.90s infinite;
    transition: all 0.3s ease;
}

.btn-form:hover {
    background-color: red;
    color: white;
    transform: scale(1.05);
}

.note {
    font-size: clamp(11px, 1.5vw, 12px);
    margin-top: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 5px;
    line-height: 1.4;
}

.note span {
    color: orange;
    font-weight: bold;
}

/* Card styles */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    width: 100%;
    /* height: 200px; */
    object-fit: cover;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.5;
}

/* Section titles */
.problem-text,
.doctor-text,
.benefits-text,
.suggestion-text {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    color: white;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Thank you page */
.box-thank {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.product-img-order {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.thank-you-text {
    color: #28a745;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.thank-you-hindi {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.button {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(90deg, #ba00f2, #f82c86);
    color: white;
   animation: pulse-zoom 1.5s ease-in-out infinite;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button:hover {
    background: linear-gradient(90deg, red, #f82c86);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 92, 0, 0.3);
}

.main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.check-mark {
    color: #28a745;
    margin-bottom: 20px;
}

.check-mark svg {
    width: 80px;
    height: 80px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .box-order {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    .small-img {
        max-width: 48%;
    }

    .card-img-top {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .main-order {
        width: 100%;
    }

    .small-img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .rate-box {
        padding: 10px;
    }

    .card-img-top {
        height: 160px;
    }

    .form-table {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .main-order {
        width: 100%;
    }

    .box-order {
        padding: 15px;
        margin: 10px auto;
    }

    .form-table {
        padding: 10px;
    }

    .highlight-box {
        padding: 8px;
    }

    .card-img-top {
        height: 140px;
    }
}

@media (max-width: 375px) {
    .head {
        font-size: 1.5rem;
    }

    .head-text {
        font-size: 0.9rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .benefits-p {
        font-size: 0.9rem;
    }

    .card-img-top {
        height: 120px;
    }
}

.limited-offer-gif {
    max-width: 80%;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 15px auto;
}

@media screen and (max-width: 768px) {
    .limited-offer-gif {
        height: 80px;
        max-width: 85%;
    }
}

@media screen and (max-width: 480px) {
    .limited-offer-gif {
        height: 60px;
        max-width: 90%;
    }
}


/* Custom Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, #ff9900, #ff5500);
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
    background: #f8f9fa;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
    border-color: #ff9900;
}

.quantity-controls {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.quantity-controls .btn-warning {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    background: #ff9900;
    color: white;
}

.quantity-controls .form-control {
    height: 40px;
    font-size: 1.2rem;
    font-weight: 500;
}

.note {
    background: #fff3e6;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #ff9900;
}

.note p {
    margin: 0;
    font-size: 0.9rem;
    color: #664d00;
}

.btn-submit {
    background: linear-gradient(135deg, #ff9900, #ff5500);
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 153, 0, 0.3);
}

.product-preview {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-preview img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.new-price {
    color: #ff5500;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }
}

.warning-banner {
    font-size: 2vw;
    font-weight: 900;
    color: red;
}

@media (max-width: 768px) {
    .warning-banner {
        font-size: 5vw;
    }
}

marquee {
    font-size: 1.1rem;
    font-weight: bold;
}

.benefit-img {
    width: 60px;
}

.custom-bg-light {
    background-color: #f9f5f2;
}

.custom-red-text {
    color: #db2d2e;
}

.custom-purple-bg {
    background-color: #b529d8;
}

.custom-purple-bg:hover {
    background-color: #1e2f5a;
}

.shadow-custom {
    box-shadow: 0 10px 20px rgba(33, 51, 97, 0.5);
}

.green-text {
    color: #25e201;
}

.yellow-text {
    color: #dcbf03;
}

.highlight-box {
    display: inline-block;
    background: linear-gradient(to right, #f44336, #f44336 50%, #1e88e5 50%);
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 20px;
    margin-bottom: 20px;
}

.highlight-box span {
    display: inline-block;
    padding: 5px 15px;
}

.product-img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .text-section {
        text-align: center;
    }
}

.testimonial-container {
    background-color: #fff;
    max-width: 700px;
    margin: 40px auto;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.section-title span {
    color: red;
}

.testimonial-card {
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 10px;
}

.verified-icon {
    color: #1da1f2;
    margin-left: 5px;
}

.order-button {
    display: block;
    margin: 20px auto;
    padding: 20px 80px;
    background: linear-gradient(90deg, #ba00f2, #f82c86);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(248, 44, 134, 0.4);
    animation: pulse-zoom 1.5s ease-in-out infinite;
}

.testimonial-image {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}
.img-round
{
    border-radius: 40px;
}
.img-rounding{
    border-radius: 50px;
}
.order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to right, #000000, #1a0000);
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(255, 0, 0, 0.2);
    gap: 15px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.round-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: star-spin 3s linear infinite;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.round-icon span {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@keyframes pulse-zoom {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes star-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}