 .uppercase-lineheight {
            line-height: 1.5;
        }
        /* Sticky bar styles */
        .sticky-bar {
            position: fixed;
    bottom: 0;
    left: 0;
    /*width: 80%;
    background-color: #EFC8D3;
    box-shadow: 0px -2px 6px rgb(0 0 0 / 10%);*/
    display: flex;
    justify-content: center;
    align-items: center;
/*    padding: 10px;*/
    z-index: 1;
    margin: 0 auto;
    right: 0;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
        }
        .social-icons {
            display: flex;
            gap: 2px;
        }
        .social-icons a img {
            width: 40px;
            height: 40px;
            /*display: block;*/
            margin-left: 5px;
            margin-bottom: 5px;
        }
        .request-call {
            background-color: #007bff;
            color: #ffffff;
            border: none;
            padding: 8px 5px;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Responsive design */
        .social-icons a[href^="tel:"] {
            color: #333;
            /* Change color as needed */
            margin-right: 10px;
            /* Adjust spacing */
        }
        /*.sticky-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }*/
        /* Style for the phone number button */
        .phone-button,
        .request-button {
            display: inline-block;
    padding: 10px 30px;
    border-top-right-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
    border-top-left-radius: 20px;
        }

        .phone-button {
            background-color: #ff9900;
            /* Button background color */


        }

        .request-button {
            background-color: #e45c6d;
            /* Button background color */

        }

        /* Font Awesome icons */
        .phone-button i,
        .request-button i {}

        /* Change icon colors on hover */
        .phone-button:hover,
        .request-button:hover {
            background-color: #333;
            /* Button background color on hover */
            color: #fff;
            /* Button text color on hover */
        }

        /* Existing CSS code */

        /* Additional styles for the form */
        .form-group {
            margin-bottom: 15px;
        }

        #callback-form input,
        #callback-form textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        #callback-form textarea {
            resize: vertical;
        }
        .submit-button {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }
        .submit-button:hover {
            background-color: #0056b3;
        }
        /* Popup styles */
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
        }

        .popup-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
        }
        .close-popup {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            cursor: pointer;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .popup-content {
                width: 80%;
            }
        }
        
           /* Custom class for Owl Carousel dots */
        .custom-dots {
            text-align: center;
            /* Center the dots */
            margin-top: 10px;
            /* Adjust the top margin as needed */
        }

        .custom-dots .owl-dot {
            background-color: green;
            /* Set the desired dot color */
            width: 2px;
            /* Set the width of the dots */
            height: 2px;
            /* Set the height of the dots */
            margin: 0 2px;
            /* Set the margin between the dots */
            border-radius: 50%;
            /* Make the dots circular */
            display: inline-block;
        }

        /* Custom class for active dot */
        .custom-dots .owl-dot.active {
            background-color: #233747;
            /* Set the color of the active dot */
        }
        .owl-nav {

            display: flex;
            justify-content: center;

            margin-top: 10px;
        }
        .owl-prev,
    .owl-next {
            /*background-color: #fff;*/
            padding: 10px;
            border-radius: 5px;
            color: red;
            cursor: pointer;
        }
          .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    .slider-dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #bbb;
        margin: 0 5px;
        cursor: pointer;
    }

    .slider-dot.active {
        background-color: #333;
    }
.custom-select {
      background-color: #f2f2f2;
    color: #333;
    border: 1px solid #ccc;
    padding: 2%;
    font-size: 14px;
} 
.applied-coupon {
            background-color: #4CAF50; /* Green color for applied coupon */
            color: green;
        }
        .cards-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 800px;
            padding:2%;
        }

        .card {
             background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 2%;
            text-align: center;
            transition: transform 0.2s;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .coupon-code {
            font-weight: bold;
        }

        .coupon-value {
           
            color: #4CAF50;
            margin: 3% 0;
        }

        .coupon-type {
            color: #888;
            padding: 2%;
            overflow:hidden; 
        }
        .cardcp {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 2%;
            text-align: center;
            transition: transform 0.2s;
        }

        .cardcp:hover {
            transform: translateY(-5px);
        }

.social-icons a {
    background: #25D366;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
}

.social-icons a i {
    padding-right: 6px;
    font-size: 22px;
}
.social-icons a:hover {
    background-color: #333;
    color: #fff;
}
.popup-content h2 {
    margin-bottom: 20px;
}