.elementor-130 .elementor-element.elementor-element-182eb3f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b2dafb4 */:root {
    --brand-color: #2B9AAF;
    --dark-bg: #000000;
}

.advanced-footer {
    background-color: var(--dark-bg);
    padding: 70px 0 30px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.footer-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Grid Layout */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.2fr auto 1.8fr;
    gap: 50px;
    align-items: start;
    padding-bottom: 50px;
}

/* Vertical Line */
.vertical-line {
    width: 1.5px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent);
    min-height: 220px;
}

/* ── FIXED LOGO STYLING ── */
.premium-logo {
    width: 170px;
    height: 85px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto 22px auto;
    filter: drop-shadow(0 0 8px rgba(43, 154, 175, 0.2));
}

.brand-tagline {
    font-size: 18px;
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
}

/* Social Boxes */
.modern-socials { 
    display: flex; 
    gap: 15px; 
    justify-content: center;
}

.social-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(43, 154, 175, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: 0.4s ease;
}

.social-box:hover {
    background: var(--brand-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(43, 154, 175, 0.4);
}

/* Right Side Menu */
.footer-nav-groups {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.nav-column h4 {
    font-size: 24px;
    color: var(--brand-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-column a {
    display: block;
    color: #dddddd;
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 19px;
    transition: 0.3s;
}

.nav-column a:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* White Line Above Credits */
.credit-divider-white {
    border: 0;
    height: 1.5px;
    background-color: #ffffff;
    margin: 0 0 25px 0;
    width: 100%;
    opacity: 1;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-bold {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.copyright-bold .highlight {
    color: var(--brand-color);
}

.designer-signature {
    font-size: 16px;
    font-weight: 700;
}

.cyber-link {
    color: var(--brand-color);
    text-decoration: none;
    margin-left: 5px;
    border-bottom: 2px solid var(--brand-color);
    transition: 0.3s;
}

.cyber-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    text-shadow: 0 0 10px var(--brand-color);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-main-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .vertical-line { display: none; }
    .footer-nav-groups { 
        flex-direction: row; 
        justify-content: space-around; 
    }
    .modern-socials { justify-content: center; }
}

@media (max-width: 650px) {
    .footer-nav-groups { 
        flex-direction: column; 
        gap: 40px; 
    }
    .footer-bottom-bar { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; 
    }
}/* End custom CSS */