  
        /* Main Footer Background - BLACK */
        .th-foo {
            background-color: #121212; /* Deep Black */
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 60px;
            padding-bottom: 0;
            position: relative;
           
        }

        /* Headings */
        .th-foo h5 {
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 20px;
            display: inline-block;
            position: relative;
            color : #fff;
        }

        /* RED underline under headings */
        .th-foo h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 40px;
            height: 3px;
            background-color: #e60012; /* Logo Red */
        }

        /* Paragraph text */
        .th-foo p {
            font-size: 14px;
            line-height: 1.7;
            color: #d1d8db;
            margin-bottom: 0px;
        }

        /* Links & Lists */
        .th-foo ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .th-foo ul li {
            margin-bottom: 12px;
        }

        .th-foo ul li a {
            color: #ffffff;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: flex;
            align-items: center;
        }

        /* The Arrow Icon for links */
        .th-foo ul li a i {
            margin-right: 10px;
            font-size: 12px;
            color: #ffffff;
            transition: transform 0.3s ease;
        }

        .th-foo ul li a:hover {
            color: #e60012; /* Logo Red on hover */
            padding-left: 5px;
        }
        
        .th-foo ul li a:hover i {
            transform: translateX(5px); /* Arrow moves right on hover */
            color: #e60012; /* Logo Red */
        }

        /* Vertical Dividers between columns - BLACK lines */
        .th-foo-divider {
            border-right: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 991px) {
            .th-foo-divider {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding-bottom: 20px;
                margin-bottom: 20px;
            }
        }

        /* Contact Info Section */
        .th-foo-contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            font-size: 14px;
        }
        .th-foo-contact-item i {
            color: #ffffff;
            font-size: 16px;
            margin-right: 12px;
            margin-top: 8px;
        }

        /* Social Icons - Red Border and Hover */
        .th-foo-social {
            margin-top: 6px;
        }
        .th-foo-social a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 35px;
            height: 35px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .th-foo-social a:hover {
            background-color: #e60012; /* Logo Red */
            border-color: #e60012;
            color: #ffffff;
            transform: translateY(-3px);
        }

        /* Floating Action Buttons (Right Side) */
        .th-foo-float-btns {
            position: absolute;
            right: 30px;
            bottom: 120px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 10;
        }
        .th-foo-float-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            font-size: 20px;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        .th-foo-float-btn:hover {
            transform: scale(1.1);
            color: #fff;
        }
        .th-foo-float-btn.whatsapp { background-color: #25D366; }
        .th-foo-float-btn.email { background-color: #e60012; } /* Changed to Red */
        .th-foo-float-btn.top { background-color: #e60012; }    /* Changed to Red */

        /* Bottom Copyright Bar - Black background */
        .th-foo-bottom {
            background-color: #000000;
            padding: 15px 0;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }
        
        /* Trapezoid effect on bottom bar - RED */
        .th-foo-bottom::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            height: 10px;
            background-color: #e60012; /* Logo Red */
            clip-path: polygon(0 100%, 10% 0, 90% 0, 100% 100%);
        }

        .th-foo-bottom p {
            margin: 0;
            font-size: 14px;
            color: #d1d8db;
        }
        .th-foo-bottom span {
            color: #e60012; /* Logo Red */
        }

        @media (max-width: 767px) {
            .th-foo-float-btns { right: 15px; bottom: 80px; }
            .th-foo-float-btn { width: 40px; height: 40px; font-size: 18px; }
        }