
.footer {
    background: #2d1b4e;
    color: #ffffff;
    width: 100%;
    padding: 60px 0 30px;
    position: relative;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 25%, #3b82f6 50%, #06b6d4 75%, #10b981 100%);
        animation: gradientShift 8s ease-in-out infinite;
    }

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(90deg, #8b5cf6 0%, #7c3aed 25%, #3b82f6 50%, #06b6d4 75%, #10b981 100%);
    }

    50% {
        background: linear-gradient(90deg, #10b981 0%, #8b5cf6 25%, #7c3aed 50%, #3b82f6 75%, #06b6d4 100%);
    }
}

.footer-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.3fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #8b5cf6;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
}

    .footer-column ul li {
        color: #e2e8f0;
        margin-bottom: 8px;
        line-height: 1.5;
        width: 320px;
    }

.logo-section-footer {
    display: flex;
    flex-direction: column;
}

.logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon-footer {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}


/* DNA Helix Effect - All Purple */
.dna-helix-footer {
    position: absolute;
    width: 70px;
    height: 70px;
    animation: rotate 15s linear infinite;
}

.helix-strand-footer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, transparent, transparent), linear-gradient(90deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

    .helix-strand-footer:nth-child(1) {
        animation: pulse1 3s ease-in-out infinite;
        transform: rotateX(0deg);
    }

    .helix-strand-footer:nth-child(2) {
        animation: pulse2 3s ease-in-out infinite 0.5s;
        transform: rotateX(60deg);
        opacity: 0.8;
    }

    .helix-strand-footer:nth-child(3) {
        animation: pulse3 3s ease-in-out infinite 1s;
        transform: rotateX(120deg);
        opacity: 0.6;
    }

 /*Central R - With Black/Gray Square Background sparkr2-r-footer*/
.sparkr2-r-footer {
    position: relative;
    z-index: 100;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(124, 58, 237, 0.6), 0 0 30px rgba(168, 85, 247, 0.4);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: rGlow 3s ease-in-out infinite alternate;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes rGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(124, 58, 237, 0.6), 0 0 30px rgba(168, 85, 247, 0.4);
        background: rgba(0, 0, 0, 0.7);
    }

    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 25px rgba(124, 58, 237, 0.8), 0 0 35px rgba(168, 85, 247, 0.6);
        background: rgba(0, 0, 0, 0.9);
    }
}

.logo-text-footer {
    color: #74a9ff;
    font-size: 24px;
    font-weight: 600;
}


 /*DNA Helix Effect */
.dna-helix-footer {
    position: absolute;
    width: 70px;
    height: 70px;
    animation: rotate 15s linear infinite;
}

.helix-strand-footer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, transparent, transparent), linear-gradient(90deg, #3730a3 0%, #8b5cf6 50%, #7c3aed 100%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
}

    .helix-strand-footer:nth-child(1) {
        animation: pulse1 3s ease-in-out infinite;
        transform: rotateX(0deg);
    }

    .helix-strand-footer:nth-child(2) {
        animation: pulse2 3s ease-in-out infinite 0.5s;
        transform: rotateX(60deg);
        opacity: 0.8;
    }

    .helix-strand-footer:nth-child(3) {
        animation: pulse3 3s ease-in-out infinite 1s;
        transform: rotateX(120deg);
        opacity: 0.6;
    }

 /*Central R */
.sparkr2-r-footer {
    position: relative;
    z-index: 100;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(124, 58, 237, 0.6);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    animation: rGlow 3s ease-in-out infinite alternate;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .sparkr2-r-footer::before {
        content: 'R';
        position: absolute;
        top: 1px;
        left: 1px;
        font-size: 28px;
        font-weight: 900;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(124, 58, 237, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        z-index: -1;
    }

@keyframes rGlow {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(124, 58, 237, 0.6);
        background: rgba(0, 0, 0, 0.6);
    }

    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 25px rgba(139, 92, 246, 1), 0 0 35px rgba(124, 58, 237, 0.8);
        background: rgba(0, 0, 0, 0.8);
    }
}

 /*DNA Helix Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse1 {
    0%, 100% {
        transform: rotateX(0deg) scale(1);
        opacity: 1;
    }

    50% {
        transform: rotateX(0deg) scale(1.15);
        opacity: 0.8;
    }
}

@keyframes pulse2 {
    0%, 100% {
        transform: rotateX(60deg) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: rotateX(60deg) scale(1.15);
        opacity: 0.6;
    }
}

@keyframes pulse3 {
    0%, 100% {
        transform: rotateX(120deg) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: rotateX(120deg) scale(1.15);
        opacity: 0.4;
    }
}

.company-description {
    margin-bottom: 30px;
    font-size: 16px;
}

.footer-contact-section {
    margin-bottom: 10px;
}

    .footer-contact-section h4 {
        color: #8b5cf6;
        font-size: 16px;
        margin-bottom: 12px;
        font-weight: 600;
    }

.contact-info {
    color: #e2e8f0;
    font-size: 14px;
}

    .contact-info strong {
        color: #ffffff;
    }

.industries-inline {
    margin-bottom: 25px;
}

    .industries-inline p {
        margin-bottom: 8px;
        font-size: 14px;
    }

.industries-list {
    color: #cbd5e1;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #334155;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: #8b5cf6;
        color: white;
        transform: translateY(-2px);
    }

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-subscription {
    background: #334155;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #475569;
}

    .email-subscription p {
        margin-bottom: 15px;
        font-size: 14px;
    }

.email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-input {
    padding: 12px 16px;
    border: 1px solid #475569;
    border-radius: 8px;
    background: #475569;
    color: white;
    font-size: 14px;
}

    .email-input::placeholder {
        color: #cbd5e1;
    }

.subscribe-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

    .subscribe-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 92, 246, 0.5);
    }

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #8b5cf6;
        }

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .email-subscription {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .email-form {
        flex-direction: row;
    }

    .email-input {
        flex: 1;
    }
}
