
        /* Back to Top */
        .back-to-top {

            text-align: center;
            padding: 12px 0;
        }

        .back-to-top a {
            text-decoration: none;
            color: #0a0000;
            font-weight: 600;
            font-size: 21px;
            transition: 0.3s;
        }

        .back-to-top a:hover {
            color: #000;
        }

        /* Footer Styling */
        .footer {
            background: black;
            padding: 50px 0px 0px 2px;
            color: white;
            text-align: left;
            width: 100%;
        }

        .footer-container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 200px;
        }

        .footer-section h2 {
            font-size: 24px;
            font-weight: bold;
            color: #ff0000;
            ;
            margin-bottom: 15px;
            border-bottom: 2px solid #ff0000;
            ;
            display: inline-block;
            padding-bottom: 5px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            text-decoration: none;
            color: rgb(248, 245, 245);
            font-weight: 500;
            transition: 0.3sease-in-out;
            font-size: 20px;
        }

        .footer-links a:hover {
            color: #ff0000;
            transform: translateX(5px);
        }

        /* Social Media Icons */
        .social-icons {
            display: flex;
            margin-top: 15px;
        }

        .social-icons a {
            color: white;
            font-size: 22px;
            margin-right: 15px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: #ff0000;
            transform: scale(1.1);
        }

        /* Newsletter Subscription */
        .newsletter {
            margin-top: 20px;
        }

        .newsletter input {
            width: 100%;
            padding: 10px;
            margin-top: 10px;
            border: 1px solid #ff0000;
            border-radius: 5px;
            background: #111;
            color: white;
        }

        .newsletter button {
            margin-top: 10px;
            padding: 10px 20px;
            background: #ff0000;
            border: none;
            color: white;
            cursor: pointer;
            border-radius: 5px;
            transition: 0.3s;
        }

        .newsletter button:hover {
            background: #ff0000;
            transform: scale(1.05);
        }

        /* Footer Bottom */
        .footer-bottom {
            background: #000;
            padding: 15px;
            text-align: center;
            font-size: 14px;
            border-top: 6px solid #ff0000;
            margin-top: 24px;

        }

        .back-to-top {
            background: rgb(227, 216, 235);
            background: linear-gradient(90deg, rgba(227, 216, 235, 1) 0%, rgba(253, 29, 29, 0.6694327389158788) 50%, rgba(252, 176, 69, 1) 100%);
        }

        p {
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }

            .footer-section {
                width: 100%;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
            .newsletter input {
                width: 40%;
                padding: 10px;
                margin-top: 10px;
                border: 1px solid #ff0000;
                border-radius: 5px;
                background: #111;
                color: white;
            }
        }
  
