
    /* --- Footer Styling FOOTER SECTION (REVAMPED) --- */
    .footer-revamped {
        background: linear-gradient(45deg, #023070, #0d6efd); /* Dark blue gradient */
        color: #adb5bd; /* Soft grey for text */
        padding-top: 4rem;
    }

    /* --- Footer Headers --- */
    .footer-revamped .footer-title {
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    /* --- About Section (Logo & Text) --- */
    .footer-revamped .logo-text {
        font-size: 1rem;
        font-weight: 700;
        color: #ffffff;
    }
    .footer-revamped .logo-subtext {
        font-size: 0.9rem;
    }
    .footer-revamped .logo-eng {
        font-size: 0.8rem;
        color: #FFD700; /* Gold color */
        opacity: 0.8;
    }

    /* --- Footer Links --- */
    .footer-revamped .footer-links {
        list-style: none;
        padding-left: 0;
    }
    .footer-revamped .footer-links li {
        margin-bottom: 0.75rem;
    }
    .footer-revamped .footer-links a {
        color: #adb5bd;
        text-decoration: none;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }
    .footer-revamped .footer-links a:hover {
        color: #ffffff;
        padding-left: 5px;
    }
    .footer-revamped .footer-links a i {
        margin-right: 0.5rem;
    }

    /* --- Social Icons --- */
    .footer-revamped .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-size: 1.1rem;
        margin-right: 0.5rem;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .footer-revamped .social-icons a:hover {
        background-color: #FFD700;
        color: #212529;
        transform: scale(1.1);
    }

    /* --- Sub-Footer (Copyright) --- */
    .sub-footer {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 1.5rem 0;
        margin-top: 3rem;
        font-size: 0.9rem;
        text-align: center;
    }
    .sub-footer .credit-link {
        color: #FFD700;
        font-weight: 500;
        text-decoration: none;
    }
    .sub-footer .credit-link:hover {
        text-decoration: underline;
    }

  

    /* --- Back to Top Button Styling --- */
    #backToTopBtnRevamped {
        position: fixed;
        bottom: 25px;
        right: 25px;
        z-index: 1080; /* Ensure it's on top of other elements */
        border: none;
        outline: none;
        background: linear-gradient(45deg, #0d6efd, #16a34a); /* Blue to Green Gradient */
        color: white;
        cursor: pointer;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        font-size: 2rem; /* Larger Icon */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        
        /* Initial state for animation */
        opacity: 0;
        transform: translateY(100px);
        visibility: hidden;
        
        /* Smooth transition for appearing/disappearing */
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        
        /* Flexbox for perfect icon centering */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- 'show' class to trigger animation --- */
    #backToTopBtnRevamped.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    /* --- Hover Effect --- */
    #backToTopBtnRevamped:hover {
        background: linear-gradient(45deg, #16a34a, #FFD700); /* Green to Gold Gradient on hover */
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
