footer {
            width: 100%;
            background: #262a68 repeating-linear-gradient(
                -45deg,
                #262a68,
                #262a68 3.5px,
                #262a68 3.5px,
                #151b6c 7px
            );
            padding: 3rem 6%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            color: white;
        }

        /* Left side - About Us */
        
        .footer-left h2 {
            color: #f8d538;
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .footer-left p {
            margin: 5px 0;
            color: #ffffff;
            line-height: 1.6;
            font-size: 1rem;
            text-align: justify;
        }

        .social-icons {
            margin-top: 2rem;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border: 1px solid white;
            border-radius: 50%;
            color: #f8d538;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: white;
            color: #151b6c;
            transform: translateY(-2px);
        }

        /* Link lists styling */
        .link-list {
            list-style: none;
            padding: 0;
        }

        .link-list h2 {
            color: #f8d538;
            margin-bottom: 15px;
            font-size: 1.3rem;
            font-weight: bold;
        }

        .link-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: padding 0.3s ease;
        }

        .link-list li:last-child {
            border-bottom: none;
        }

        .link-list a {
            text-decoration: none;
            color: white;
            transition: color 0.3s ease;
            display: block;
            word-break: break-word;
            transition: .3s all ease-in-out;
        }

        .link-list a:hover {
            color: #f8d538;
            padding-left: 5px;
        }

        /* Contact info special styling */
        .contact-info a[href^="tel:"],
        .contact-info a[href^="mailto:"] {
            color: #f8d538;
        }

        .footer-bottom {
            grid-column: 1 / -1;
            text-align: center;
            font-size: 0.9rem;
            color: white;
        }
        .footer-bottom a {
            color: #f8d538;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        @media (max-width: 992px) {
            footer {
                gap: 3rem;
                padding: 30px 4%;
            }
            
            .footer-left p {
                font-size: 16px;
            }
        }

        /* Tablets */
        @media (max-width: 780px) {
            footer {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
                padding: 30px 5%;
            }

            .footer-left {
                grid-column: 1 / -1; 
                text-align: center;
                margin-bottom: 1rem;
            }

            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 580px) {
            footer {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 25px 4%;
                text-align: center;
            }

            .footer-left,
            .link-list {
                text-align: center;
            }

            .footer-left p {
                text-align: center;
            }

            .social-icons {
                justify-content: center;
                margin-top: 1.5rem;
            }

            .link-list h2 {
                margin-bottom: 10px;
            }

            .link-list li {
                padding: 8px 0;
            }
        }

        @media (max-width: 400px) {
            footer {
                padding: 20px 3%;
                gap: 1.5rem;
            }

            .social-icons a {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }

            .link-list li {
                padding: 6px 0;
            }
        }

       
      




      