body {
    background-color: #f4f4f9;
    font-family: Arial, sans-serif;
    color: #333;
}

.header {
    padding: 20px;
}

h4 {
    font-size: 1.3rem;
}

table th, table td {
    text-align: center;
}

#qty {
    width: 60px;
}

.input-group {
    max-width: 250px;
    margin: 0 auto;
}

.order-summary {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #28a745;
    color: white;
}

.qty-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.qty-container input {
    text-align: center;
}



.top-bottom {
    margin-top: 30px;
    margin-bottom: 31px;
    padding: 23px 24px;
}



/* Common Styles for Both Sliders */
.carousel-inner .row {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.carousel-inner .col-md-6 {
    padding: 10px;
}

.carousel-item img {
    object-fit: cover;  /* Ensures images fill their containers without distortion */
    height: 100%;      /* Adjust the height of images for uniformity */
    border-radius: 10px;
    width: 100%;
    transition: transform 0.3s ease;
}

.carousel-item img:hover {
    transform: scale(1.05);  /* Slight zoom effect on hover */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007bff; /* Custom color for the arrows */
}

.carousel-control-prev,
.carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 767px) {
    .carousel-inner .row {
        flex-direction: column;  /* Stack images vertically on smaller screens */
    }

    .carousel-item img {
        height: 100%;  /* Reduce height on smaller screens */
    }
}




#section2 {
    background-color: #f8f9fa;  /* Light background color */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Soft shadow for the section */
}

#section2 .container {
    max-width: 1140px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
    font-size: 1.1rem;
    text-decoration: none;
}
.section-image {
    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
    height: 100%;               /* Ensure the parent div has full height */
}

.section-image img {
    max-width: 100%;  /* Ensure the image doesn't overflow */
    height: auto;     /* Maintain aspect ratio */
}

.section-image img {

    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 767px) {
    #section2 .row {
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }
}








#section3 {
    background-color: #f8f9fa;  /* Light background color for contrast */
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);  /* Hover effect for a floating look */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);  /* Soft shadow */
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    line-height: 1.6;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-purple {
    background-color: #6f42c1 !important;
}

@media (max-width: 767px) {
    .card-body {
        text-align: center;
    }
}












#section4 {
    background-color: #f8f9fa;  /* Light background color */
    padding: 40px 0;
    text-align: center;
    border-radius: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #007bff;
}

.section-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 10px;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .btn-danger {
        font-size: 1rem;
        padding: 10px 25px;
    }
}


















#section5 {
    background-color: #f4f6f9;  /* Light, clean background */
    padding: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section-description {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #777;
}

.offer-card {
    background-color: #ffffff;
    border: 1px solid #ddd;  /* Light border */
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: box-shadow 0.3s ease;
}

.offer-card:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);  /* Hover effect for a floating look */
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 10px 0;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
}

.discounted-price {
    color: #007bff; /* Soft blue for emphasis on the discount */
}

.offer-timing {
    font-size: 1.1rem;
    font-weight: 400;
    color: #555;
    margin: 15px 0;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 1rem;
        padding: 10px 25px;
    }
}



























.radio-box {
    display: inline-block;
    text-align: center;
    width: 45%;  /* Adjust as needed */
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    margin-right: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.radio-box:hover {
    background-color: #f1f1f1;  /* Light grey on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Shadow on hover */
}

.radio-box span {
    margin-left: 10px;
    font-size: 1rem;
    color: #333;
}



