#footer-7-darkbg {
            background-color: var(--footer-dark-bg-color);
            color: var(--secondary-text-light);
            padding: 60px 0 0 0;
            font-size: 15px;
        

          .logo {
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

          .footer-logo {
            max-width: 200px;
            width: 100%;
            margin-bottom: 25px;
        }

          .footer-logo img {
            width: 100%;
            height: auto;
            transition: all 0.3s ease;
        }

          .footer-logo img:hover,
          .footer-logo img:focus {
            opacity: 0.8;
            transform: scale(105%);
        }

          .logo-section {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

          .footer-section {
            margin-bottom: 20px;
        }

          .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--text-color-light);
        }

          .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

          .footer-section li {
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

          .footer-section li:hover,
          .footer-section li:focus {
            color: var(--secondary-color);
            
            transform: translateY(-2px);
            
            outline: none;
        }

          .footer-section li a {
            color: var(--text-color-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

          .footer-section li a:hover,
          .footer-section li a:focus {
            
            text-decoration: underline;
            transform: translateY(-2px);
            color: var(--secondary-color);
            outline: none;
        }

          .lists {
            display: flex;
            justify-content: space-around;
        }

          .lists i {
            font-size: 10px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

          .footer-section li a:hover i,
          .footer-section li a:focus i {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

          .bottom {
            display: flex;
            margin-top: 5px;
            padding: 10px 0;
            justify-content: space-between;
            border-top: 1px solid white;
            align-items: center;
        }

          .contact {
            display: flex;
            margin-bottom: 10px;
            align-items: center;
            font-size: 15px;
            transition:  all 0.3s ease;
        }

          .contact:hover {
            
            transform: translateY(-3px);
        }

          .contact a {
            text-decoration: none;
            color: var(--text-color-light);
            font-size: 15px;
            transition: all 0.3s ease;
        }

          .contact p {
            margin: 0;
            color: var(--text-color-light);
            width: 80%;
            font-size: 15px;
        }

          .contacts i {
            background-color: var(--secondary-color);
            margin-right: 10px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 14px;
            transition: all 0.3s ease;
            color: #fff;
        }

          .contact a:hover i,
          .contact a:focus i {
            transform: translateY(-2px);
            
        }

          .contact a:hover,
          .contact a:focus {
            color: #f8f9fa;
            transform: translateY(-2px);
            
            text-decoration: none;
            outline: none;
        }

          .contact a:hover p,
          .contact a:focus p {
            text-decoration: underline;
        }

          .social-icons {
            text-align: center;
            display: flex;
            gap: 10px;
        }

          .social-icons a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

          .social-icons a i {
            color: #fff;
            background-color: #ffffff17;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 14px;
            transition: all 0.3s ease;
        }

          .social-icons a:hover i,
          .social-icons a:focus i {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

          .social-icons a:hover,
          .social-icons a:focus {
            transform: translateY(-2px);
            
            outline: none;
        }

          .copyright {
            text-align: center;
            font-size: 13px;
        }

        @media (max-width: 991px) {
              .col-lg-4 {
                margin-bottom: 0;
            }

              .col-lg-4 p, h3 {
                margin: 0 auto;
                text-align: center;
            }

              .social-icons {
                display: flex;
                justify-content: center;
            }

              .lists {
                justify-content: space-around;
            }

              .contact {
                flex-direction: column;
                gap: 10px;
                justify-content: center;
            }

              .bottom {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

              .footer-bottom {
                padding-top: 20px;
                margin-top: 20px;
            }
        }

        @media (max-width: 576px) {
              .col-lg-4 {
                margin-bottom: 15px;
            }

              .footer-logo {
                max-width: 150px;
                margin: 0 auto 20px;
            }

              .footer-section h3 {
                margin-bottom: 15px;
                font-size: 18px;
            }

              .footer-section li {
                margin-bottom: 8px;
            }

              .copyright {
                font-size: 11px;
            }

              .social-icons a i,
              .contacts i {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }

              .lists {
                gap: 15px;
            }
        }

        /* Accessibility for reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        }