/* =========================================
   ULTRA PREMIUM 2026 TECH FOOTER
   Glass + Motion + Depth + Neon Elegance
========================================= */

.footer_comnpadding1 {
    position: relative;
    padding: 120px 0 60px;
    background: #020617;
    color: #e2e8f0;
    overflow: hidden;
    z-index: 1;
}

/* -----------------------------
   MOVING BACKGROUND IMAGE
------------------------------ */
.footer_comnpadding1::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: url('../assets/footer-bg.jpg') center/cover no-repeat;
    opacity: 0.12;
    animation: bgMove 70s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes bgMove {
    0% { transform: translate(0,0) scale(1.15); }
    50% { transform: translate(-60px,-40px) scale(1.25); }
    100% { transform: translate(40px,30px) scale(1.18); }
}

/* -----------------------------
   PREMIUM GRADIENT OVERLAY
------------------------------ */
.footer-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,255,200,0.08), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(0,150,255,0.08), transparent 60%),
        linear-gradient(to bottom, rgba(2,6,23,0.95), rgba(2,6,23,1));
    pointer-events: none;
    z-index: 1;
}

/* -----------------------------
   FLOATING PARTICLE GRID
------------------------------ */
.footer_comnpadding1::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,255,200,0.4) 1px, transparent 1px);
    background-size: 140px 140px;
    animation: particleMove 60s linear infinite;
    opacity: 0.04;
    z-index: 0;
}

@keyframes particleMove {
    from { background-position: 0 0; }
    to { background-position: 300px 300px; }
}

/* -----------------------------
   GLASS COLUMNS
------------------------------ */
.footer_comnpadding1 .col-lg-4 {
    position: relative;
    backdrop-filter: blur(20px);
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.4s ease;
    z-index: 2;
}

.footer_comnpadding1 .col-lg-4:hover {
    transform: translateY(-10px);
    border: 1px solid rgba(0,255,200,0.5);
    box-shadow: 0 30px 70px rgba(0,255,200,0.15);
}

/* -----------------------------
   LOGO
------------------------------ */
.foot_logo {
    width: 190px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(0,255,200,0.4));
}

/* -----------------------------
   TITLES
------------------------------ */
.FootTitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    position: relative;
}

.FootTitle::after {
    content: "";
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, #00ffc3, #00d4ff);
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* -----------------------------
   CONTACT LIST
------------------------------ */
.contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.contact li:hover {
    transform: translateX(6px);
    color: #00ffc3;
}

.contact img {
    margin-right: 10px;
    width: 18px;
    filter: brightness(0) invert(1);
}

/* -----------------------------
   QUICK LINKS
------------------------------ */
.quick_link li {
    margin-bottom: 12px;
}

.quick_link a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
    position: relative;
}

.quick_link a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    left: 0;
    bottom: -3px;
    background: linear-gradient(90deg, #00ffc3, #00d4ff);
    transition: 0.3s ease;
}

.quick_link a:hover {
    color: #ffffff;
}

.quick_link a:hover::before {
    width: 100%;
}

/* -----------------------------
   SOCIAL ICONS
------------------------------ */
.social_icon {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.icon_box {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.icon_box:hover {
    background: linear-gradient(135deg, #00ffc3, #00d4ff);
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 0 30px rgba(0,255,200,0.7);
}

/* -----------------------------
   DIVIDER
------------------------------ */
.footer_comnpadding1 hr {
    border-color: rgba(255,255,255,0.08);
    margin: 70px 0 35px;
}

/* -----------------------------
   BOTTOM BAR
------------------------------ */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    letter-spacing: 1px;
}

.footer-bottom a {
    color: #64748b;
    margin: 0 12px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #00ffc3;
}

/* -----------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 991px) {
    .footer_comnpadding1 .col-lg-4 {
        margin-bottom: 25px;
    }
}

@media (min-width: 1400px) {
    .footer_comnpadding1 {
        padding: 90px 0 50px;
    }
}