.new-footer {
    background-color: #1F2937;  /* Updated background color */
    color: #a0aec0;
    padding: 4rem 2rem;
    font-size: 0.9rem;
}

.new-footer .container {
    max-width: 1280px;
    margin: 0 auto;
}

.new-footer hr {
    border: none;
    height: 1px;
    background-color: #2d3748;
    margin: 2.5rem 0;
}

.new-footer .footer-grid {
    display: grid;
    gap: 2rem;
}

.new-footer .top-grid {
    grid-template-columns: 2fr 1fr 1fr; /* 3 columns for top section */
}

.new-footer .services-grid {
    grid-template-columns: repeat(5, 1fr); /* 5 columns for services */
}

.new-footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-footer .footer-column li {
    margin-bottom: 0.75rem;
}

.new-footer .footer-column li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.new-footer .footer-column li a:hover {
    color: #ffffff;
}

.new-footer .footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.new-footer .large-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #e2e8f0;
}

.new-footer .footer-subtitle {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.new-footer .footer-subtitle:empty {
    margin-bottom: 1.5rem;
}

.new-footer .about-column .footer-logo {
    margin-bottom: 1.5rem;
}

.new-footer .contact-list li {
    display: flex;
    align-items: flex-start;
}

.new-footer .contact-list .icon {
    margin-right: 0.75rem;
    color: #ffffff;
}

.new-footer .contact-list p {
    margin: 0;
    line-height: 1.6;
}

.new-footer li.spacer a {
    color: transparent;
    pointer-events: none;
}

.new-footer .copyright-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.8rem;
}

.new-footer .social-icons a {
    color: #a0aec0;
    text-decoration: none;
    border: 1px solid #4a5568;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

.new-footer .social-icons a:hover {
    background-color: #ffffff;
    color: #1a202c;
    border-color: #ffffff;
}


/* ============================
   📱 Mobile Devices (Up to 576px)
   ============================ */
@media (max-width: 576px) {
    .new-footer .footer-grid{
        display:flex;
        flex-direction: column;
    }
}

/* ============================
   📱📲 Tablet (577px to 991px)
   ============================ */
@media (min-width: 577px) and (max-width: 991px) {
    
}

