    /* Footer Styles */
        footer {
            background: #0f1a25;
            padding: 50px 0 20px;
            margin-top: 50px;
            margin-bottom: 0px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: left;
            margin-left: 0px;

        }
        
        @media (max-width: 430px) {
          
        .footer-content {
            margin-left: 0px;
            
        }
    }
        .footer-column h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
                        margin-left: 15px;
                        text-align: left;

        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: white;
        }
        
        .footer-column p {
            line-height: 1.6;
            margin-bottom: 20px;
            color:white;
            margin-right: 30px;
            margin-left: 15px;
            text-align: left;
        }
        
        .contact-info {
            list-style: none;
            color: white;

        }
        
        .contact-info li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: white;
                        margin-left: 15px;

        }
        
        .contact-info i {
            color: white;
            margin-right: 10px;
            margin-top: 5px;
            width: 20px;

        }
        
        .services-list {
            list-style: none;

        }
        
        .services-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: white;
                        margin-left: 15px;

        }
        
        .services-list i {
            color:white;
            margin-right: 10px;
            font-size: 0.8rem;
                        margin-left: 15px;

        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
            margin-bottom: 60px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
                        margin-left: 15px;

        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #ffb606;
            transform: translateY(-3px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
             .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
                        margin-left: 30px;

        }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }