﻿body {
            background-color: #fff;
            color: #222222;
            font-family: 'Raleway', sans-serif;
            position: relative;
        }

        p,
        strong,
        span {
            color: #222222;
        }

        body::before {
            content: '';
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background-image: url('../images/home/logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.05;
            z-index: -1;
            pointer-events: none;
        }



        .section-padding {
            padding: 80px 0;
            position: relative;
            z-index: 1;
            background: transparent !important;
        }

        .section-padding .row {
            display: flex;
            align-items: flex-start;
            gap: 60px;
            max-width: 1800px;
            width: 95%;
            margin: 0 auto;
            padding: 0 40px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #28262b;
            font-weight: 700;
        }

        p,
        strong,
        span {
            color: #333333;
        }

        .contact-info h3 {
            margin-bottom: 20px;
            color: #28262b;
            margin-top: 0;
            font-weight: 700;
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        .map-container {
            margin-top: 20px;
        }

        iframe {
            width: 100%;
            border: 0;
            height: 450px;
            border-radius: 8px;
        }

        .footer {
            background-color: #1a1a1a;
            color: rgba(255, 255, 255, 0.4);
            padding: 15px 0;
            text-align: center;
            font-size: 14px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .btn-submit {
            background: #be1c22;
            color: #fff;
            border: none;
            padding: 10px 30px;
            border-radius: 4px;
            cursor: pointer;
        }

        .social-link:hover {
            transform: scale(1.15);
        }
    


        @-webkit-keyframes pulse-red {
            0% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0.7);
            }

            70% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(234, 29, 44, 0);
            }

            100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0);
            }
        }

        @keyframes pulse-red {
            0% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0.7);
            }

            70% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(234, 29, 44, 0);
            }

            100% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0);
            }
        }

        .ifood-float {
            position: fixed;
            bottom: 60px;
            right: 30px;
            z-index: 9999;
            width: 70px;
            height: 70px;
            background-color: #EA1D2C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            animation: pulse-red 2s infinite;
        }

        .ifood-float:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .ifood-float img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: none;
            outline: none;
        }

        @media (max-width: 768px) {
            .ifood-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
                -webkit-animation: pulse-red 2s infinite !important;
                animation: pulse-red 2s infinite !important;
            }
        }
