﻿#backToTop {
    display: none; /* مخفي في البداية */
    position: fixed;
    bottom: 80px; /* بدل 30px عشان يكون فوق الفوتر */
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background: #2c3e50; /* لون رسمي */
    color: white;
    cursor: pointer;
    padding: 14px 16px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

    #backToTop:hover {
        background: #1a252f;
        transform: scale(1.1);
    }
