 .footer {
            width: 100%;
            height: 100%;
            height: auto;
           
            margin: 0 auto;
            background-image: url('../images/Artboard\ 2\ 1.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #6b1b9a;
            padding: 80px 40px 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        /* Logo */
        .footer-logo {
            margin-bottom: 60px;
        }

        .footer-logo img {
            width: 150px;
            height: auto;
        }


        .contact-title {
            color: white;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
             background: rgba(255, 255, 255, 0.212);
            backdrop-filter: blur(15px);
            border-radius: 8px;
            padding: 10px 40px;
            margin-bottom: 60px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
            color: #6b1b9a;
        }

        .contact-icon i {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-text {
            color: white;
            font-size: 18px;
            font-weight: 500;
        }

        .contact-text a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .contact-text a:hover {
            opacity: 0.8;
        }

        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
            padding-top: 40px;
        }

        /* Social Media Icons */
        .social-icons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;
            font-size: 24px;
            color: #6b1b9a;
        }

        .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
        }

        .social-icon i {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Copyright */
        .copyright {
            color: white;
            font-size: 14px;
            text-align: center;
            opacity: 0.9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 60px 20px 30px;
                min-height: 500px;
            }

            .footer-logo {
                margin-bottom: 40px;
                text-align: center;
            }

            .footer-logo img {
                width: 120px;
            }

            .contact-section {
                padding: 30px 25px;
                margin-bottom: 40px;
            }

            .contact-title {
                font-size: 24px;
                margin-bottom: 30px;
            }

            .contact-info {
                gap: 20px;
            }

            .contact-item {
                gap: 15px;
            }

            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .contact-text {
                font-size: 16px;
            }

            .social-icons {
                gap: 15px;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .copyright {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .footer {
                padding: 40px 15px 20px;
            }

            .footer-logo img {
                width: 100px;
            }

            .contact-section {
                padding: 25px 20px;
            }

            .contact-title {
                font-size: 20px;
                margin-bottom: 25px;
            }

            .contact-text {
                font-size: 14px;
            }

            .social-icons {
                gap: 12px;
            }

            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }