
.footer-links li a i {
    margin-right: 8px;
    font-size: 14px;
}
/* Logo + Text Row */
.brand-row{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

/* Logo */
.footer-logo{
    max-width:140px;
    flex-shrink:0;
}

/* Text */
.brand-row .footer-text{
    margin:0;
    font-size:14px;
    line-height:1.7;
    color:white;
}

/* Mobile */
@media(max-width:768px){

    .brand-row{
        flex-direction:column;
        gap:12px;
    }

    .footer-logo{
        max-width:130px;
    }

}

/* Footer */
.footer-premium{
    background:linear-gradient(135deg,#0d1f27,#17303b,#10252e);
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Content */
.footer-premium .container{
    position:relative;
    z-index:5;
}

/* Graph */
.stock-live-bg{
    position:absolute;
    inset:0;
    opacity:.35;
    z-index:1;
    pointer-events:none;
}

.stock-live-bg svg{
    width:100%;
    height:100%;
}

.graph-line{
    fill:none;
    stroke-width:4;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:3200;
    stroke-dashoffset:3200;
    animation:marketMove 8s linear infinite;
}

.green-line{
    stroke:#00d084;
}

.red-line{
    stroke:#ff4d4d;
    animation-delay:1s;
}

.blue-line{
    stroke:#2d7cff;
    animation-delay:2s;
}

@keyframes marketMove{
    0%{
        stroke-dashoffset:3200;
        transform:translateX(160px);
        opacity:0;
    }
    20%{
        opacity:1;
    }
    100%{
        stroke-dashoffset:0;
        transform:translateX(0);
        opacity:1;
    }
}

/* Cards */
.footer-box{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:20px;
    height:100%;
    backdrop-filter:blur(6px);
    transition:.3s;
}

.footer-box:hover{
    transform:translateY(-4px);
    border-color:rgba(0,208,132,.35);
}

/* Logo */
.footer-logo{
    max-width:180px;
}

/* Text */
.footer-text{
    color:rgba(255,255,255,.88);
    font-size:14px;
    line-height:1.7;
}

/* Badge */
.footer-badge{
    display:inline-block;
    margin-top:14px;
    padding:8px 16px;
    border-radius:30px;
    background:rgba(0,208,132,.15);
    color:#fff;
    font-size:13px;
}

/* Heading */
.footer-h4{
    color:#fff;
    font-size:18px;
    margin-bottom:18px;
    font-weight:700;
}

/* Links */
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:rgba(255,255,255,.75);
    padding-left:5px;
}

/* Contact */
.contact-item{
    display:flex;
    gap:12px;
    font-size:14px;
    margin-bottom:14px;
    color:rgba(255,255,255,.92);
}

.contact-item i{
    /* color:var(--bs-primary); */
    color: white;
    margin-top:4px;
}

/* Social */
.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.social-icons a:hover{
    background:var(--bs-primary);
    transform:translateY(-4px);
}

/* Bottom */
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:18px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
}

.footer-bottom p{
    margin:0;
    font-size:13px;
    color:rgba(255,255,255,.82);
}

/* Mobile */
@media(max-width:768px){

    .footer-bottom{
        justify-content:center;
        text-align:center;
    }

    .footer-logo{
        max-width:150px;
    }

    .graph-line{
        stroke-width:3;
    }

}

/* Heading */
.footer-h4{
    color:#fff;
    font-size:18px;
    margin-bottom:22px;
    font-weight:700;
    position:relative;
    display:inline-block;
}

/* Green Line Under Heading */
.footer-h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:38px;
    height:3px;
    background:var(--bs-primary);
    border-radius:20px;
}


