* {
    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;
    color: white;
}

.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;
      animation: pulse-zoom 1.5s ease-in-out infinite;
}

.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 {
    width: 100%;
    max-width: 800px;
    text-align: center;
    margin: clamp(20px, 4vw, 40px) auto 0;
    padding: clamp(15px, 3vw, 20px);
}

.thank-you-text {
    color: #990000;
    font-size: clamp(24px, 6vw, 40px);
    font-weight: bold;
    margin: 10px 0;
    line-height: 1.3;
}

.thank-you-hindi {
    font-size: clamp(18px, 4vw, 28px);
    color: #1c1c1c;
    font-weight: 600;
    margin: 10px 0 30px;
    line-height: 1.4;
}

.footer {
    font-size: clamp(11px, 1.5vw, 12px);
    color: #555;
    margin-top: 40px;
    line-height: 1.5;
}
.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);
    }
}
@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%;
    }
}
