/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* Adjusted to span the full width of the heading */
    height: 2px;
    background-color: #00b3e6;
    transform: scaleX(0.2); /* Adjust the scale to control the length of the underline */
    transform-origin: left; /* Ensures the underline starts from the left */
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #00b3e6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #00b3e6;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.footer-contact i {
    color: #00b3e6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
}

.newsletter-button {
    background-color: #00b3e6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #0099cc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.copyright {
    font-size: 0.9rem;
    color: #ddd;
}

.footer-legal {
    list-style: none;
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00b3e6;
}

/*whatsapp*/
 img.responsive-img {
            width: 100%;
            height: auto;
            max-height: 400px;
        }

        @media (max-width: 768px) {
            img.responsive-img {
                max-height: 300px;
            }
        }

        @media (max-width: 480px) {
            img.responsive-img {
                max-height: 200px;
            }
        }

        body {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

       

        /* Floating Chat Icon */
        .chat-float-wrapper {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 999;
    }

    .chat-float {
        background: linear-gradient(45deg, #00b09b, #96c93d);
        color: white;
        border-radius: 50%;
        width: 65px;
        height: 65px;
        text-align: center;
        font-size: 28px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: all 0.3s ease;
        animation: pulseGlow 2.5s infinite;
        text-decoration: none;
    }

    .chat-float:hover {
        transform: scale(1.1);
        background: linear-gradient(45deg, #28a745, #218838);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);       
        text-decoration: none;
        color: black;
    }

    .chat-label {
        position: absolute;
        right: 75px;
        background-color: #28a745;
        color: #fff;
        padding: 8px 14px;
        border-radius: 30px;
        white-space: nowrap;
        font-size: 14px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s ease;
        font-weight: 500;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .chat-float:hover .chat-label {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    @keyframes pulseGlow {
        0% {
            box-shadow: 0 0 0 0 rgba(0, 176, 155, 0.7);
        }
        70% {
            box-shadow: 0 0 0 20px rgba(0, 176, 155, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(0, 176, 155, 0);
        }
    }