* {
    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: #fff;
    text-decoration: none;
}

a {
    /* color: #fff; */
    text-decoration: none;
}

body {
    font-family: Arial, sans-serif;
}

.bg-prim {
    background-color: #0066cc;
    color: white;
}

.bg-black-1 {
    background-color: #111;
}

.bg-red-lin-1 {
    background: linear-gradient(to right, red, darkred);
    color: white;
    padding: 10px;
}

.bg-red-lin-2 {
    background: linear-gradient(to right, #ff3333, #cc0000);
    border-radius: 10px;
}

.bg-blue-2 {
    background-color: #003366;
    color: white;
}

.bg-blue-3 {
    background-color: #004080;
}

.bg-orange {
    background-color: #ff6600;
}

.bg-yellow-1 {
    background-color: #ffcc00;
}

.white {
    color: white;
}

.green-1 {
    color: #00cc66;
}

.blue {
    color: #0066cc;
}

.red-1 {
    color: #ff0000;
}

.red-2 {
    color: #cc0000;
}

.red-3 {
    color: #990000;
}

.yellow {
    color: #ffcc00;
}

.yellow-green {
    color: #ccff00;
}

.blue-2 {
    color: #0066cc;
}

.blue-3 {
    color: #004080;
}

.radius-lg {
    border-radius: 15px;
}

.img-thumbnail {
    border: 2px solid #ddd;
    padding: 5px;
    background-color: white;
}

.text-over-img {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.testimonial-content {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: black;
}

.client {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    float: left;
}

.testimonial-text {
    overflow: hidden;
}

.product {
    max-width: 300px;
    height: auto;
}

.icons img {
    height: 50px;
    margin: 5px;
}

#myVideo {
    display: block;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

#soundBtn {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.points {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.points img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

#query-us {
    margin-top: 20px;
}

#query-us input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#query-us input[type="submit"] {
    background-color: red;
    color: white;
    font-weight: bold;
    border: none;
}

.fixed-background {
    background-color: red;
    padding: 10px;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

.phone {
    bottom: 20px;
    position: fixed;
    right: 20px;
    width: 80px;
    z-index: 1000;
}

.btn-danger
{
    padding: 30px !important;
    font-size: 40px !important;
}
/* Add these animation styles to your CSS */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {transform: translateY(0); }
        40% {transform: translateY(-10px); }
        60% {transform: translateY(-5px); }
    }
    
    .call-now-btn {
        animation: pulse 2s infinite;
        transition: all 0.3s ease;
    }
    
    .call-now-btn:hover {
        animation: bounce 1s infinite;
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    }
    
    /* For the fixed call button */
    .phone {
        animation: bounce 2s infinite;
    }
    
    .phone:hover {
        transform: scale(1.1);
    }
    
    /* For the fixed call text */
    .fixed-background {
        animation: pulse 3s infinite;
    }
    .btn{
         animation: pulse 1s infinite;
    }

@media (max-width: 768px) {
    .client {
        float: none;
        display: block;
        margin: 0 auto 15px;
    }

    .testimonial-text {
        text-align: center;
    }

    .points {
        text-align: center;
    }

    #secBA,
    #secBB {
        text-align: center;
    }

    /* .fixed-background {
        display: none;
    } */

    .phone {
        width: 60px;
    }
}