﻿.custom-footer {
    background: linear-gradient(135deg, #f8fff8, #e8f5e9); /* Light green gradient */
    color: #333; /* Dark text for readability */
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #2e7d32; /* Green accent line */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Column Titles */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2e7d32; /* Deep green */
    border-bottom: 2px solid #81c784;
    display: inline-block;
    padding-bottom: 5px;
    font-weight: 600;
}

/* Logo */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

    .footer-logo:hover {
        transform: scale(1.08);
    }

.footer-company-name {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1b5e20; /* Strong green */
    font-weight: bold;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin: 10px 0;
    }

    .footer-links a {
        text-decoration: none;
        color: #444;
        font-weight: 500;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

        .footer-links a:hover {
            color: #2e7d32;
            padding-left: 5px;
        }

/* Contact */
.footer-column p {
    font-size: 14px;
    color: #333;
    margin: 8px 0;
}

.footer-column a {
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
}

    .footer-column a:hover {
        color: #1b5e20;
        text-decoration: underline;
    }

/* Bottom Section */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #555;
}

    .footer-bottom a {
        color: #2e7d32;
        font-weight: 600;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #1b5e20;
        }
