*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f9fa;
    overflow-x: hidden;
}

.header_div {
    background-color: #cc003a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    padding-top: 10rem;
}

.header_div h1 {
    font-weight: 600;
}

/* Highlight box for BULK PURCHASE info */
.highlight-box {
    background: rgb(55, 166, 202);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: -30px;
    margin-bottom: 30px;
    text-align: center;
}

.highlight-box h3 {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Floating image elements */
.float-img {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
 
  }
  /* Individual floating shapes with animation and position */
  .float-img-1 {
    left: 3%;
    top: 9%;
    width: 100px;
    animation: floatUpDownA 3.7s ease-in-out infinite alternate;
    animation-delay: .4s;
  }
  .float-img-2 {
    right: 7%;
    top: 20%;
    width: 100px;
    animation: floatUpDownB 5.2s ease-in-out infinite alternate;
    animation-delay: 1.1s;
  }
  .float-img-3 {
    left: 9%;
    bottom: 15%;
    width: 100px;
    animation: floatUpDownB 4.7s ease-in-out infinite alternate;
    animation-delay: .9s;
  }
  .float-img-4 {
    right: 4%;
    bottom: 9%;
    width: 100px;
    animation: floatUpDownA 4.1s ease-in-out infinite alternate;
    animation-delay: 0.65s;
  }
  /* Keyframes for smooth up and down floating */
  @keyframes floatUpDownA {
    from { transform: translateY(0);}
    to   { transform: translateY(-20px);}
  }
  @keyframes floatUpDownB {
    from { transform: translateY(0);}
    to   { transform: translateY(16px);}
  }


.highlight-box p {
    margin-bottom: 0;
    color: #ffffff;
}

.order-form {
    background-image: linear-gradient(180deg, rgb(255, 122, 31) 0%, #cc003a 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

label {
    font-weight: 500;
    margin-top: 12px;
}

.btn-custom {
    background-color: white;
    color: rgb(201, 35, 74);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 400;
    transition: 0.3s;
}

.form-control:focus{
    border: none;
    outline: none;
    box-shadow: none;
}

.btn-custom:hover {
    background: rgb(201, 35, 74);
    color: white;
    border: 1px solid white;
    transform: translateY(-2px);
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}

[type=radio]:checked,[type=radio]:focus,[type=radio]:active,[type=radio]:checked:hover {
    background-color: orange;
    color: orange;
    outline: orange;
    box-shadow: none;
}

footer {
    text-align: center;
    padding: 20px;
    background: #f0f0f0;
    margin-top: 40px;
}

.footer{
    border-radius: none !important;
}