/* ======= Footer Styles ======= */
.custom-footer {
    background: #222; /* Darker background */
    color: #ddd; /* Light text color */
    padding: 10px 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.custom-footer a {
    color: #f1c40f; /* Gold links */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.custom-footer a:hover {
    color: white; /* White on hover */
}

/* ======= Left Section ======= */
.footer-left {
    width: 30%;
    text-align: left; /* Ensure everything aligns left */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
}

.footer-logo {
    width: 90px;
    height: auto;
    display: block;
    margin-bottom: 5px; /* Adjust spacing if needed */
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for better readability */
    gap: 2px 5px; /* Controls spacing */
    text-align: left;
}

.footer-links a {
    font-weight: bold; /* Make it stand out */
    font-size: 10px; /* Small text */
    color: white; /* Gold text */
    text-decoration: none;
    padding: 1px 5px; /* Adjust padding to keep spacing even */
    line-height: 1.5; /* Adds vertical consistency */
    white-space: nowrap; /* Prevents text breaking awkwardly */
}

.footer-links a:hover {
    color: white;
    color: #f1c40f; /* Gold text */
}

.footer-company-name {
    margin-top: 15px;
    font-size: 12px;
    color: #aaa; /* Lighter text */
}

/* ======= Center Section ======= */
.footer-center {
    width: 35%;
    text-align: left;
}

.footer-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-item i {
    font-size: 18px;
    color: #f1c40f; /* Gold icons */
    margin-right: 10px;
}

.footer-email {
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-email:hover {
    color: white;
}

/* ======= Right Section ======= */
.footer-right {
    width: 30%;
}

.footer-company-about {
    font-size: 14px;
    font-weight: 300; /* Lighter text */
    line-height: 1.6;
    color: #bbb; /* Lighter gray text */
    text-align: justify; /* Justifies the text */
}

.footer-company-about span {
    font-weight: bold;
    color: #f1c40f;
    display: block;
    margin-bottom: 10px;
    text-align: justify; /* Justifies the text */

}

/* ======= Social Icons ======= */
.footer-icons {
    margin-top: 15px;
}

.footer-icons a img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}

.footer-icons a img:hover {
    transform: scale(1.1);
}

/* ======= Responsive Design ======= */
/* 2 columns on tablets */
@media (max-width: 768px) {
    .custom-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr; /* Single column for smaller screens */
    }
}

/* 1 column on mobile */
@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr; /* Ensure readability on small screens */
    }
}


