    /* Base Footer Styles */
    .tech-footer {
        background: linear-gradient(135deg, #06121f 0%, #0a1929 100%);
        color: #e6f1ff;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        position: relative;
        overflow: hidden;
    }

    .tech-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #00ff88, transparent);
    }

    /* Container */
    .tech-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Main Footer Grid */
    .tech-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    /* Brand Column */
    .tech-brand .tech-logo {
        margin-bottom: 25px;
    }

    .tech-brand .logo-link {
        display: inline-block;
        text-decoration: none;
    }

    .tech-brand .logo-image {
        max-width: 200px;
        height: auto;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }

    .tech-brand .logo-link:hover .logo-image {
        filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 255, 136, 0.5));
        transform: scale(1.05);
    }

    .tech-description {
        color: white;
        line-height: 2;
        margin-bottom: 30px;
        font-size: 16px;
    }

    .tech-contact .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .tech-contact .contact-item i {
        color: #00ff88;
        margin-right: 12px;
        width: 16px;
    }

    /* Titles */
    .tech-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 25px;
        color: #e6f1ff;
        position: relative;
        padding-bottom: 10px;
    }

    .tech-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #00ff88;
        border-radius: 2px;
    }

    /* Lists */
    .tech-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .tech-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }

    .tech-list i {
        color: #00ff88;
        margin-right: 10px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .tech-list a {
        color: #8892b0;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .tech-list a:hover {
        color: #00ff88;
        transform: translateX(5px);
    }

    .tech-list li:hover i {
        transform: translateX(3px);
    }

    /* Newsletter */
    .tech-newsletter p {
        color: #8892b0;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .input-group {
        position: relative;
        display: flex;
        background: #112240;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #233554;
        transition: all 0.3s ease;
    }

    .input-group:focus-within {
        border-color: #00ff88;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

    .input-group input {
        flex: 1;
        padding: 12px 15px;
        background: transparent;
        border: none;
        color: #e6f1ff;
        outline: none;
        font-size: 14px;
    }

    .input-group input::placeholder {
        color: #8892b0;
    }

    .tech-btn {
        padding: 12px 15px;
        background: linear-gradient(135deg, #00ff88, #00cc6a);
        border: none;
        color: #06121f;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
    }

    .tech-btn:hover {
        background: linear-gradient(135deg, #66ffb3, #00ff88);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

    /* Social Grid */
    .tech-social h5 {
        margin: 25px 0 15px;
        color: #e6f1ff;
        font-size: 16px;
    }

    .social-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #112240;
        color: #8892b0;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .social-icon::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .social-icon:hover::before {
        left: 100%;
    }

    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        color: #00ff88;
    }

    /* Tech Pattern */
    .tech-pattern {
        padding: 20px 0;
        position: relative;
    }

    .pattern-line {
        height: 1px;
        background: linear-gradient(90deg, transparent, #233554, transparent);
    }

    .pattern-dots {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

    .pattern-dots span {
        width: 6px;
        height: 6px;
        background: #00ff88;
        border-radius: 50%;
        opacity: 0.6;
        animation: pulse 2s infinite;
    }

    .pattern-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .pattern-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    .pattern-dots span:nth-child(4) {
        animation-delay: 0.6s;
    }

    .pattern-dots span:nth-child(5) {
        animation-delay: 0.8s;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 0.3;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.2);
        }
    }

    /* Copyright */
    .tech-copyright {
        background: #06121f;
        padding: 25px 0;
        border-top: 1px solid #233554;
    }

    .copyright-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright-text p {
        margin: 0;
        color: #8892b0;
        font-size: 14px;
    }

    .legal-links {
        display: flex;
        gap: 25px;
    }

    .legal-links a {
        color: #8892b0;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .legal-links a:hover {
        color: #00ff88;
    }

    /* Scroll to Top */
    .tech-scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .tech-scroll-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .scroll-inner {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #00ff88, #00cc6a);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #06121f;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
        position: relative;
        overflow: hidden;
    }

    .scroll-inner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #66ffb3, #00ff88);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .scroll-inner:hover::before {
        opacity: 1;
    }

    .scroll-inner:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    }

    .scroll-inner i {
        position: relative;
        z-index: 1;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .tech-grid {
            grid-template-columns: 1fr 1fr;
            gap: 40px 30px;
        }

        .tech-brand {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 768px) {
        .tech-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .copyright-content {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .legal-links {
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .tech-scroll-top {
            bottom: 20px;
            right: 20px;
        }

        .scroll-inner {
            width: 45px;
            height: 45px;
        }

        .tech-brand .logo-image {
            max-width: 180px;
        }
    }

    /* Existing styles compatibility */
    .container-full .page-breadcrumb>li+li:before {
        content: "/"
    }

    @media screen and (max-width: 768px) {
        div.media-body {
            max-width: 90%;
        }

        div.element-contact-form {
            background-color: rgb(255, 255, 255);
            max-height: 349px;
            overflow-y: auto;
            top: -70.6px;
        }

        #theme-main-slider .item {
            height: 110px;
        }
    }

    .entry-content p {
        padding: 0;
    }

    #stickyelements-form {
        max-height: 400px;
        overflow: auto;
    }

    .widget .custom-social-icons li {
        border-left: none;
        border-right: none;
    }

    .widget .custom-social-icons li i {
        font-size: 25px;
        margin-top: 10px;
    }

    .theme-contact-block li {
        padding: 1px 10px 1px 10px;
        color: #04CE78;
        background-color: #fff;
        border-radius: 20px;
    }

    .theme-contact-block i {
        color: #04CE78;
    }

    .theme-contact-block li a {
        color: #04CE78;
    }

    .theme-contact-block li a:hover {
        color: #04CE78;
    }

    .trp-language-switcher:focus .trp-ls-shortcode-language,
    .trp-language-switcher:hover .trp-ls-shortcode-language {
        z-index: 10;
    }

    #block-74 {
        position: relative;
        width: inherit;
        box-sizing: border-box;
        margin: 0;
    }

    #block-74.sticky {
        position: fixed;
        width: 296px;
        top: 20%;
        left: auto;
        z-index: 999;
        background: #fff;
        padding: 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }