/* Sabhi Footer Links aur Text ka ek jaisa size aur color */
.footer-links li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #cbd5e0 !important; /* Standard Grayish White */
    font-size: 14.5px;
}

/* Link color fix (Blue se White karne ke liye) */
.footer-links li a, .contact-text {
    color: #cbd5e0 !important;
    text-decoration: none !important;
    font-size: 14.5px;
    transition: 0.3s ease;
}

/* Hover effect baki columns ki tarah */
.footer-links li a:hover {
    color: #ffffff !important;
    padding-left: 5px;
}

/* Icons ka size aur color set karna */
.footer-links i {
    color: #63b3ed !important; /* Tech Blue color icons ke liye */
    width: 20px;
    text-align: center;
    font-size: 16px;
}

/* Heading alignment check */
.footer-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    display: block;
}