    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


  :root {
          --main-dark: #001f3f;
          --yellow: #ffc60c;
          --secondary: #e7bd02;
          --white: #fff;
            --gray: rgb(83, 83, 83);
            --black: #161616;
        }

        footer.rs-ft {
            background: #fff;
            color: #161616;
            border-top: 2px solid #161616;
            padding: 60px 0 0px 0px;
        }

        .footer-container.rs-ft {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .footer-section.rs-ft {
            flex: 1;
            min-width: 200px;
            padding: 20px;
        }

        .footer-logo.rs-ft {
            width: 180px;
            height: auto;
            margin-bottom: 15px;
        }

        .footer-section.rs-ft p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-icons.rs-ft {
            display: flex;
            gap: 10px;
        }

        .social-icons.rs-ft a {
          padding: 10px;
            background: transparent;
            border: 1px solid #161616;
            border-radius: 5x;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #161616;
            text-decoration: none;
            font-size: 16px;
            transition: 0.2s ease-in-out;
        }

        .social-icons.rs-ft a:hover {
            box-shadow: inset 0px 3px 4px rgba(0, 0, 0, 0.6);
            transform: scale(0.9);
        }

        .footer-section.rs-ft h3 {
            font-size: 18px;
            margin-bottom: 10px;
            position: relative;
        }

        .footer-section.rs-ft h3::after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background: var(--yellow);
            margin-top: 5px;
        }

        .footer-section.rs-ft ul {
            list-style: none;
        }

        .footer-section.rs-ft ul li {
            margin-bottom: 10px;
        }

        .footer-section.rs-ft ul li a {
            color: #161616;
            text-decoration: none;
            font-size: 14px;
            transition:  0.3s ease-in-out;
        }

        .footer-section.rs-ft ul li a:hover {
            font-style: bold;
        }

        .contact-details.rs-ft li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .contact-details.rs-ft i {
            font-size: 16px;
        }

        .footer-bottom.rs-ft {
            border-top: 2px solid #161616;
            background-color: #161616;
            color: #fff;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            /* align-items: center; */
            flex-wrap: wrap;
            gap: 20px;
            padding: 30px;
        }

        .footer-bottom.rs-ft p {
            font-size: 14px;
        }

        .footer-bottom.rs-ft a {
            color: #fff;
            text-decoration: underline;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-bottom.rs-ft a:hover {
            color: #ddd;
        }

        .developed-by.rs-ft {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            margin-top: 10px;
        }

        .developed-by.rs-ft img {
            width: 140px;
            height: auto;
        }

        @media (max-width: 768px) {
            .footer-container.rs-ft {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-section.rs-ft h3::after {
                margin: 5px auto;
            }

            .social-icons.rs-ft {
                justify-content: center;
            }

            .footer-bottom.rs-ft {
                flex-direction: column;
                text-align: center;
            }

            .developed-by.rs-ft {
                flex-direction: column;
                align-items: center;
            }
        }