        :root {
            --dark-blue: #1c1e53;
            --light-blue: #2405f2;
            --yellow: #fcd980;
            --white: #ffffff;
            --light-gray: #f4f6fc;
            --dark-gray: #282938;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
            background-color: #f9f9f9;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Footer styles */
        .main-footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding-top: 80px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 0 20px 60px;
        }

        .footer-branding {
            display: flex;
            flex-direction: column;
        }

        .footer-logo-tagline {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: nowrap;
        }

        .footer-logo {
            width: 100px;
            height: 80px;
            object-fit: contain;
        }

        .footer-tagline {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin: 0;
            white-space: nowrap;
        }

        .footer-text-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .footer-slogan {
            color: #ffffff;
            font-size: 12px;
            opacity: 0.9;
            font-style: italic;
            line-height: 1;
            margin: 2px 0 0 0;
        }

        .footer-description {
            opacity: 0.8;
            line-height: 1.6;
            margin: 15px 0 25px 0;
            max-width: 300px;
            font-size: 0.9rem;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-icon:hover {
            background-color: var(--yellow);
            transform: translateY(-3px);
        }

        .social-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
            transition: var(--transition);
        }

        .social-icon:hover svg {
            fill: var(--dark-blue);
        }

        .footer-quick-links h3,
        .footer-contact h3,
        .footer-legal h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--yellow);
            text-align: left;
        }

        /* Quick Links base styling to match Legal section */
        .quick-links-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .quick-links-nav li {
            margin-bottom: 12px;
            text-align: left;
        }

        .quick-links-nav a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
            display: block;
            text-align: left;
        }

        .quick-links-nav a:hover {
            opacity: 1;
            color: var(--yellow);
        }

        /* Ensure all footer sections are left-aligned */
        .footer-quick-links,
        .footer-contact,
        .footer-legal {
            text-align: left;
        }

       .footer-contact p {
        display: block;
        text-align: left;
        margin-bottom: 12px;
    }

        .footer-contact p:before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
        }

        .footer-contact .email-contact:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    margin-right: 8px;
}

        .footer-contact .phone-contact:before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
            margin-right: 8px;
        }

        .footer-contact .whatsapp-contact:before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.488"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
            margin-right: 8px;
        }

        .footer-legal ul {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .footer-legal li {
             list-style: none;
             padding: 0;
             margin: 0;
             text-align: left;
        }

        .footer-legal a {
            color: var(--white);
            text-decoration: none;
            opacity: 0.8;
            transition: var(--transition);
            display: block;
            text-align: left;
        }

        .footer-legal a:hover {
            opacity: 1;
            color: var(--yellow);
        }

        .footer-legal a:before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .footer-bottom {
            background-color: var(--white);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: var(--dark-blue);
            font-size: 1rem;
            font-weight: 500;
            margin: 0;
        }

        .footer-nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 25px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--dark-blue);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .footer-nav a:hover {
            color: var(--light-blue);
        }

        .footer-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--light-blue);
            transition: var(--transition);
        }

        .footer-nav a:hover:after {
            width: 100%;
        }

        /* Responsive styles */
        @media (max-width: 1200px) {
            .footer-content {
                gap: 30px;
            }
        }

        @media (max-width: 992px) {
            .main-footer {
                padding-top: 60px;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
                padding-bottom: 50px;
            }
            
            .footer-branding {
                grid-column: 1 / -1;
                text-align: left;
                align-items: flex-start;
            }
            
            .footer-text-container {
                 justify-content: flex-start;
                 text-align: left;
            }
         
            
            .footer-logo {
                width: 100px;
                height: 80px;
                margin-right: 15px;
            }
            .footer-bottom-container {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-nav ul {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .main-footer {
                padding-top: 50px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px 40px;
            }
            
            .footer-quick-links h3,
            .footer-contact h3,
            .footer-legal h3 {
                font-size: 1.2rem;
                margin-bottom: 15px;
                text-align: left;
            }
            
            .footer-tagline {
                font-size: 1.3rem;
            }
            
            .footer-description {
                font-size: 0.95rem;
            }
            
            .footer-nav ul {
                gap: 15px;
            }
            
            .footer-nav a {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .main-footer {
                padding-top: 40px;
            }
            
            .footer-content {
                padding: 0 15px 30px;
                gap: 25px;
            }
            
            .footer-branding {
                text-align: left;
            }
            
            .footer-logo-tagline {
                justify-content: flex-start;
                align-items: center;
            }
            
            .footer-logo {
                width: 60px;
                height: 48px;
            }
            
            
            .footer-slogan {
                font-size: 10px;
            }
            
            .footer-contact p,
            .footer-legal a {
                font-size: 0.9rem;
            }
            
            .footer-bottom {
                padding: 20px 0;
            }
            
            .footer-bottom-container {
                padding: 0 15px;
                gap: 15px;
            }
            
            .copyright {
                font-size: 0.9rem;
            }
            
            .footer-nav ul {
                gap: 10px;
            }
            
            .footer-nav a {
                font-size: 0.85rem;
            }
            
            .social-icons {
                justify-content: center;
            }
        }
        .footer-logo-tagline img {
            width: 100px;
            height: 80px;
            margin-right: 15px;
        }

        @media (max-width: 400px) {
            .footer-logo-tagline {
                flex-direction: row;
                gap: 10px;
            }
            
            .footer-nav ul {
                flex-direction: column;
                align-items: center;
                gap: 8px;
            }
            
            .footer-tagline {
                font-size: 1.1rem;
            }
        }


        /* Alternative stylish design option */
.footer-nav.style-2 ul {
    gap: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 5px;
}

.footer-nav.style-2 a {
    padding: 8px 15px;
    border-radius: 6px;
    margin: 0 2px;
}

.footer-nav.style-2 a:hover {
    background-color: var(--white);
    color: var(--dark-blue);
}

.footer-nav.style-2 a:after {
    display: none;
}

/* For very wide screens */
@media (min-width: 1600px) {
    .footer-nav ul {
        gap: 30px;
    }
    
    .footer-nav a {
        font-size: 1rem;
    }
}


                    /* Override the existing CSS icons to show only Font Awesome icons */
                    .footer-contact p:before,
                    .footer-contact .email-contact:before,
                    .footer-contact .phone-contact:before,
                    .footer-contact .whatsapp-contact:before {
                        display: none !important;
                    }

                    .footer-contact p {
                        display: block !important;
                    }

                    /* Fallback CSS icons if Font Awesome doesn't load */
                    .contact-link i {
                        position: relative;
                    }

                    .contact-link i:after {
                        font-family: Arial, sans-serif;
                        font-weight: bold;
                        font-size: 1em;
                        position: absolute;
                        top: 0;
                        left: 0;
                    }

                    .email-link i:after {
                        content: "✉";
                        font-size: 1.2em;
                    }

                    .phone-link i:after {
                        content: "☎";
                        font-size: 1.2em;
                    }

                    .whatsapp-link i:after {
                        content: "💬";
                        font-size: 1.2em;
                    }

                    .contact-link {
                        color: inherit;
                        text-decoration: none;
                        display: inline-flex;
                        align-items: center;
                        gap: 8px;
                        transition: all 0.3s ease;
                        padding: 5px;
                        border-radius: 5px;
                    }

                    .contact-link:hover {
                        transform: translateY(-2px);
                        color: #00d4ff;
                    }

                    .email-link:hover {
                        background: rgba(0, 212, 255, 0.1);
                        box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
                    }

                    .phone-link:hover {
                        background: rgba(34, 197, 94, 0.1);
                        color: #22c55e;
                        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
                    }

                    .whatsapp-link:hover {
                        background: rgba(37, 211, 102, 0.1);
                        color: #25d366;
                        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
                    }

                    .simple-icon {
                        font-size: 1.2em;
                        font-weight: bold;
                        margin-right: 8px;
                        display: inline-block;
                        min-width: 20px;
                        text-align: center;
                        transition: all 0.3s ease;
                    }

                    .contact-link:hover .simple-icon {
                        transform: scale(1.1);
                    }

                    .contact-text {
                        font-weight: 500;
                        font-size: 1em;
                    }

                    /* Simple icon colors */
                    .email-link .simple-icon {
                        color: #00d4ff;
                    }

                    .phone-link .simple-icon {
                        color: #22c55e;
                    }

                    .whatsapp-link .simple-icon {
                        color: #25d366;
                    }

                    /* SVG WhatsApp icon specific styling */
                    .whatsapp-icon {
                        width: 20px;
                        height: 20px;
                        fill: #25d366;
                        transition: all 0.3s ease;
                    }

                    .whatsapp-link:hover .whatsapp-icon {
                        fill: #128c7e;
                        transform: scale(1.1);
                    }

                    .email-contact, .phone-contact, .whatsapp-contact {
                        margin: 8px 0;
                    }

                    /* Professional Quick Links Styling */
                    /* 4-column horizontal layout */
                    .footer-branding {
                        grid-column: 1;
                        align-self: start;
                        padding-right: 20px;
                    }

                    /* Remove border from branding since it's now inline */
                    .footer-branding {
                        border-bottom: none;
                        margin-bottom: 0;
                        padding-bottom: 0;
                    }

                    /* Align all sections horizontally */
                    .footer-branding,
                    .footer-quick-links,
                    .footer-contact,
                    .footer-legal {
                        margin-top: 0;
                        margin-bottom: 0;
                        padding-top: 0;
                        position: relative;
                        align-self: start;
                    }

                    .footer-quick-links {
                        grid-column: 2;
                        padding-left: 100px;
                    }

                    .footer-contact {
                        grid-column: 3;
                    }

                    .footer-legal {
                        grid-column: 4;
                    }

                    /* Consistent styling for all section titles */
                    .footer-quick-links h3,
                    .footer-contact h3,
                    .footer-legal h3 {
                        font-size: 1.3rem;
                        font-weight: 600;
                        margin-bottom: 20px;
                        color: var(--yellow);
                        position: relative;
                        display: inline-block;
                    }

                    .footer-quick-links h3:after,
                    .footer-contact h3:after,
                    .footer-legal h3:after {
                        content: '';
                        position: absolute;
                        bottom: -5px;
                        left: 0;
                        width: 30px;
                        height: 2px;
                        background: linear-gradient(90deg, var(--yellow), #fff);
                        border-radius: 1px;
                    }

                    .quick-links-nav ul {
                        list-style: none;
                        padding: 0;
                        margin: 0;
                        text-align: left;
                    }

                    .quick-links-nav li {
                        margin-bottom: 12px;
                        text-align: left;
                    }

                    .quick-links-nav a {
                        color: rgba(255, 255, 255, 0.8);
                        text-decoration: none;
                        font-size: 0.95rem;
                        font-weight: 400;
                        display: block;
                        transition: all 0.3s ease;
                        text-align: left;
                    }

                    .quick-links-nav a:hover {
                        color: var(--yellow);
                        opacity: 1;
                    }

                    /* Tablet responsive */
                    @media (max-width: 992px) {
                        .quick-links-nav ul {
                            grid-template-columns: repeat(2, 1fr);
                            gap: 6px 12px;
                        }

                        .quick-links-nav a {
                            font-size: 0.9rem;
                            padding: 6px 0;
                        }
                    }

                    /* Mobile responsive */
                    @media (max-width: 768px) {
                        .footer-branding {
                            grid-column: 1 / -1;
                            text-align: left;
                            padding-bottom: 25px;
                            margin-bottom: 20px;
                            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                        }

                        .footer-quick-links {
                            grid-column: 1 / -1;
                            margin-top: 15px;
                            margin-bottom: 10px;
                            padding-top: 10px;
                            padding-left: 0;
                            text-align: left;
                        }

                        .footer-contact,
                        .footer-legal {
                            grid-column: 1 / -1;
                            margin-top: 15px;
                            margin-bottom: 10px;
                            padding-top: 10px;
                            text-align: left;
                            text-align-last: left;
                        }

                        .quick-links-nav ul {
                            max-width: 100%;
                            margin: 0;
                            text-align: left;
                        }

                        .quick-links-nav li {
                            margin-bottom: 12px;
                            text-align: left;
                        }

                        .quick-links-nav a {
                            font-size: 0.95rem;
                            padding: 10px 0;
                            text-align: left;
                            display: block;
                        }

                        .footer-quick-links h3,
                        .footer-contact h3,
                        .footer-legal h3 {
                            font-size: 1.2rem;
                            margin-bottom: 15px;
                            text-align: left;
                        }

                        /* Align contact and legal content to the left */
                        .footer-contact p,
                        .footer-legal ul,
                        .footer-legal li,
                        .footer-legal a {
                            text-align: left;
                        }
                    }

                    /* Small mobile */
                    @media (max-width: 480px) {
                        .quick-links-nav a {
                            font-size: 0.9rem;
                            padding: 8px 0;
                        }
                        
                        .footer-quick-links h3,
                        .footer-contact h3,
                        .footer-legal h3 {
                            font-size: 1.1rem;
                            text-align: left;
                        }
                    }

                    @media (max-width: 768px) {
                        .contact-link {
                            padding: 8px;
                            font-size: 0.95em;
                        }
                    }