        /* General Footer Styles */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
        }

        .footer {
            background: #444;
           /* background: linear-gradient(135deg, #444 0%, #333 100%);*/

           color: #333;
           padding: 60px 20px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .footer-section {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin: 10px;
            flex: 1;
            min-width: 250px;
        }

        .footer-section:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        .footer-section h2 {
            margin-bottom: 20px;
            color:  #000000;
        }

        .footer-section p {
            margin: 05px 0;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin: 05px 10;
        }

        .footer-section ul li a {
            color:  #000000;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #333;
        }

        .social-icons {
            display: row;
            gap: 10px;
        }

        .social-icons a {
            font-size: 18px;
            transition: transform 0.3s, color 0.3s;
        }

        .social-icons a:hover {
            transform: scale(1.2);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
        }

        .newsletter-form input[type="email"] {
            padding: 12px;
            border: none;
            border-radius: 5px;
            margin-bottom: 10px;
            outline: none;
            font-size: 16px;
        }

        .newsletter-form button {
            padding: 12px;
            border: none;
            border-radius: 5px;
            background: black;
            color: white;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.3s, transform 0.3s;
        }

        .newsletter-form button:hover {
            background: #333;
            transform: scale(1.05);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            border-top: 1px solid #444;
            padding-top: 20px;
        }

        .footer-bottom p {
            margin: 0;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }

            .footer-section {
                margin: 20px 0;
                text-align: center;
            }
        }

        .call-image {
    width: 32px;
    height: 32px;
    margin-top: 10px;
    right: 100px;

    margin-bottom: 10px;
}

        /* WhatsApp Icon */
        .whatsapp-icon {
            position: fixed;
            bottom: 80px; /* Adjusted to be above the back-to-top button */
            right: 16px;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .whatsapp-icon img {
            width: 53px;
            height: 53px;
            border-radius: 50%;
        }

        .whatsapp-icon:hover {
            transform: scale(1.1);
        }

        .form-message {
            margin-bottom: 10px; /* Adjusted to show message at the top */
            font-size: 16px;
        }

        .form-message.success {
            color: #28a745; /* Green color for success messages */
        }

        .form-message.error {
            color: #dc3545; /* Red color for error messages */
        }