        :root {
            --primary-color: #f76300;
            --primary-dark: #d85400;
            --secondary-color: #dc4600;
            --light-bg: #fff8f4;
        }

        /* Footer Section */
        .footer {
            background-color: var(--secondary-color);
            color: white;
            position: relative;
            padding-top: 50px;
        }

        .footer-logo-container {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .footer-logo {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            margin-right: 20px;
            border: 3px solid white;
        }

        .footer-text {
            padding: 30px 0 0 0;
            flex: 1;
        }
                        
        .address-container {
            display: flex;
            align-items: center;
            background: #D64A07; /* or your background color */
            padding: 10px;
            margin-left: -12px;
        }

        .map-icon {
            font-size: 28px; /* increase as needed */
            margin-right: 8px;
            line-height: 1;
            display: flex;
            align-items: center;
        }

        .address-text {
            color: #fff;
            font-size: 13px; /* or your preferred size */
            line-height: 1.2;
            display: flex;
            align-items: center;
        }

        .footer-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }

        .footer ul {
            padding-left: 0;
            list-style: none;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            text-decoration: none;
            font-size: 12px;
            color: white;
            transition: all 0.3s ease;
            display: block;
            padding: 3px 0;
        }

        .footer ul li a:hover {
            text-decoration: none;
            color: #ffd9c5;
            transform: translateX(5px);
        }

        .social-icons a {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        .app-badges {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }

        .app-badge {
            display: block;
            height: 45px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .app-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
        }

        .app-badge img {
            height: 100%;
            width: auto;
        }

        .copyright {
            background: white;
            color: var(--primary-color);
            text-align: center;
            padding: 15px 0;
            font-weight: 600;
            margin-top: 30px;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .footer-logo-container {
                flex-direction: column;
            }

            .footer-logo {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .app-badges {
                justify-content: center;
            }
        }

        @media (max-width: 767px) {
            .map-container {
                height: 300px;
                margin-top: 30px;
            }

            .footer>.container>.row>div {
                margin-bottom: 30px;
            }

            .border-start {
                border-left: none !important;
            }
        }