
        /* الفوتر */
        footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: 15px  20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .div-tuasel{
         
            
        }
        .footer-content-padin{
            padding: 0 10px;
        }

        .footer-logo {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-logo img {
            height: 160px;
            margin-bottom: 20px;
            padding: 10px 25px;
        }

        .social-icons {
            display: flex;
            margin-top: 20px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgb(255, 255, 255);
            color: var(--white);
            margin-left: 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .footer-contact {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
                padding-top: 30px;
        }

        .footer-contact h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-contact h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-left: 15px;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .footer-newsletter {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
                padding-top: 6px;
        }

        .footer-newsletter h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-newsletter h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            outline: none;
        }

        .newsletter-form button {
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            background-color: var(--secondary-color);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }
