:root {
            --bg-color: rgba(17,17,17,0.85);
            --text-main: #ffffff;
            --text-muted: #a0aab2;
            --btn-bg: #DBFF49;
            --btn-hover: #DBFF49;
            --accent: #28a745;
        }
/* === Footer Main Container === */
.site-footer {
    background-color: var(--bg-color);
    color: var(--text-main);
    padding: 60px 5% 20px;
    font-size: 14px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}
/* === Typography & Headings === */
.footer-col h2 {
    font-size: 24px;
    margin: 0 0 5px 0;
    font-weight: 600;
    font-family: 'Bunken Tech Sans SC Wide W01Bd', sans-serif;
}
.footer-col h3 {
    font-size: 16px;
    margin: 0 0 20px 0;
    font-weight: 500;
}
.footer-col p {
    color: var(--text-muted);
    margin: 0 0 20px 0;
}
/* === Lists & Links === */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
/* Mast Hover Animation for Links */
.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(8px);
}
/* === Subscription Section === */
.subscribe-box h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.input-group {
    position: relative;
    margin-bottom: 15px;
    max-width: 250px;
}
.input-group i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}
.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    color: var(--text-main);
    padding: 8px 10px 8px 25px;
    outline: none;
    transition: border-color 0.3s ease;
}
.input-group input:focus {
    border-bottom-color: var(--accent);
}
.subscribe-btn {
    background-color: var(--btn-bg);
    color: var(--text-main);
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}
/* Button Hover Animation */
.subscribe-btn:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 128, 0, 0.3);
}
/* === Contact Info === */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.contact-info i {
    font-size: 16px;
}
/* === Social Icons === */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* Social Icons Hover Animation */
.social-icons a:hover {
    background-color: #DBFF49;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #111111;
}

.social-icons a:hover i{
    color:#111111;
}

/* === Footer Bottom === */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--text-main);
}
/* === Responsive Alignments (Mobile & Tablets) === */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-col.brand-col {
        grid-column: span 3;
    }
}
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-col.brand-col {
        grid-column: span 2;
    }
    .footer-col.contact-col {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .footer-bottom-links ul {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-col {
        grid-column: span 1 !important;
    }
}

.subscribe-btn{
    color:#111111;
}