    /* Animated Footer Styles */
    .animated-footer {
        position: relative;
        background: linear-gradient(135deg, #050b27, #0a1130, #0d1945);
        color: var(--text-color);
        overflow: hidden;
        padding: 80px 0 0;
        margin-top: 50px;
    }
    
    #footer-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0.3;
    }
    
    .footer-wave-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateY(-99%);
        z-index: 1;
    }
    
    .footer-wave {
        position: relative;
        height: 70px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230e76bc" fill-opacity="0.9" d="M0,224L48,213.3C96,203,192,181,288,186.7C384,192,480,224,576,234.7C672,245,768,235,864,224C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: 1440px 70px;
        animation: wave-animation 20s linear infinite;
    }
    
    .footer-wave-2 {
        top: 10px;
        opacity: 0.5;
        height: 60px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2300eeff" fill-opacity="0.5" d="M0,64L48,96C96,128,192,192,288,213.3C384,235,480,213,576,176C672,139,768,85,864,80C960,75,1056,117,1152,138.7C1248,160,1344,160,1392,160L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: 1440px 60px;
        animation: wave-animation 15s linear infinite reverse;
    }
    
    .footer-wave-3 {
        top: 25px;
        opacity: 0.2;
        height: 40px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.3" d="M0,32L48,37.3C96,43,192,53,288,80C384,107,480,149,576,144C672,139,768,85,864,64C960,43,1056,53,1152,69.3C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: 1440px 40px;
        animation: wave-animation 30s linear infinite;
    }
    
    @keyframes wave-animation {
        0% { background-position-x: 0; }
        100% { background-position-x: 1440px; }
    }
    
    .footer-content {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 40px;
        padding: 0 8% 50px;
        z-index: 2;
    }
    
    .footer-about {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-logo-container {
        width: 100px;
        height: 100px;
        margin: 15px 0;
        position: relative;
    }
    
    .footer-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 0 10px rgba(0, 238, 255, 0.7));
    }
    
    .pulse-anim {
        animation: pulse-animation 2s infinite;
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(14, 118, 188, 0.2);
        color: var(--accent-color);
        font-size: 18px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 238, 255, 0.3);
    }
    
    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, transparent 0%, rgba(0, 238, 255, 0.1) 50%, transparent 100%);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }
    
    .social-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 238, 255, 0.3);
        background: rgba(14, 118, 188, 0.8);
        color: white;
    }
    
    .social-link:hover::before {
        transform: translateX(100%);
    }
    
    .hover-float {
        transition: transform 0.3s ease;
    }
    
    .hover-float:hover {
        transform: translateY(-8px);
    }
    
    .footer-services-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-service-list, 
    .footer-course-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .service-item,
    .course-item {
        margin-bottom: 15px;
    }
    
    .service-link,
    .course-link {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--text-color);
        transition: all 0.3s ease;
        padding: 8px 0;
        position: relative;
        overflow: hidden;
    }
    
    .service-link::before,
    .course-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s ease;
    }
    
    .service-link:hover,
    .course-link:hover {
        color: var(--accent-color);
        transform: translateX(10px);
    }
    
    .service-link:hover::before,
    .course-link:hover::before {
        transform: translateX(0);
    }
    
    .service-icon,
    .course-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(14, 118, 188, 0.2);
        margin-right: 15px;
        color: var(--accent-color);
        transition: all 0.3s ease;
    }
    
    .service-link:hover .service-icon,
    .course-link:hover .course-icon {
        background: rgba(0, 238, 255, 0.2);
        transform: rotate(360deg);
    }
    
    .footer-contact-newsletter {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(14, 118, 188, 0.2);
        margin-right: 15px;
        color: var(--accent-color);
    }
    
    .newsletter-form {
        margin-top: 15px;
    }
    
    .form-group {
        position: relative;
        margin-bottom: 15px;
    }
    
    .newsletter-input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 30px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-color);
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .newsletter-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .input-animation-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        transition: width 0.4s ease;
        border-radius: 0 0 4px 4px;
    }
    
    .newsletter-input:focus + .input-animation-border {
        width: 100%;
    }
    
    .newsletter-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px;
        border-radius: 30px;
        border: none;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .newsletter-btn i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }
    
    .newsletter-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: translateX(-100%);
    }
    
    .newsletter-btn:hover {
        box-shadow: 0 5px 15px rgba(0, 238, 255, 0.3);
    }
    
    .newsletter-btn:hover i {
        transform: translateX(5px);
    }
    
    .newsletter-btn:hover::after {
        transform: translateX(100%);
        transition: transform 0.6s ease;
    }
    
    .footer-bottom {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 25px 8%;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-shape-divider {
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }
    
    .footer-shape-divider svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 70px;
    }
    
    .footer-shape-divider .shape-fill {
        fill: #0d1945;
    }
    
    .gradient-text {
        background: linear-gradient(90deg, #0e76bc, #00eeff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .gradient-text:hover {
        text-shadow: 0 0 8px rgba(0, 238, 255, 0.5);
    }
    
    .footer-tech-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        overflow: hidden;
    }
    
    .tech-particle {
        position: absolute;
        bottom: -150px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: rgba(255, 255, 255, 0.2);
        font-size: 20px;
        animation: float-up 15s linear infinite;
        z-index: 0;
    }
    
    .tech-particle:nth-child(even) {
        animation-duration: 20s;
    }
    
    .tech-particle:nth-child(3n) {
        animation-duration: 25s;
    }
    
    @keyframes float-up {
        0% {
            transform: translateY(0) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 0.5;
            transform: translateY(-100px) rotate(72deg);
        }
        100% {
            opacity: 0;
            transform: translateY(-1000px) rotate(360deg);
        }
    }
    
    /* Generate random positions for tech particles */
    .tech-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
    .tech-particle:nth-child(2) { left: 20%; animation-delay: 1s; }
    .tech-particle:nth-child(3) { left: 35%; animation-delay: 3s; }
    .tech-particle:nth-child(4) { left: 50%; animation-delay: 5s; }
    .tech-particle:nth-child(5) { left: 65%; animation-delay: 7s; }
    .tech-particle:nth-child(6) { left: 75%; animation-delay: 9s; }
    .tech-particle:nth-child(7) { left: 85%; animation-delay: 11s; }
    .tech-particle:nth-child(8) { left: 15%; animation-delay: 13s; }
    .tech-particle:nth-child(9) { left: 30%; animation-delay: 15s; }
    .tech-particle:nth-child(10) { left: 45%; animation-delay: 17s; }
    .tech-particle:nth-child(11) { left: 55%; animation-delay: 19s; }
    .tech-particle:nth-child(12) { left: 70%; animation-delay: 21s; }
    .tech-particle:nth-child(13) { left: 85%; animation-delay: 23s; }
    
    /* Glowing and Shimmer Text Effects */
    .glowing-text {
        text-shadow: 0 0 10px rgba(0, 238, 255, 0.7);
        position: relative;
    }
    
    .shimmer-text {
        position: relative;
        background: linear-gradient(to right, var(--text-color) 0%, var(--accent-color) 50%, var(--text-color) 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: shimmer 3s linear infinite;
    }
    
    @keyframes shimmer {
        to { background-position: 200% center; }
    }
    
    @keyframes pulse-animation {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    /* Media Queries for Responsive Design */
    @media screen and (max-width: 1200px) {
        .footer-content {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .footer-about {
            grid-column: span 2;
            text-align: center;
            align-items: center;
        }
    }
    
    @media screen and (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .footer-about {
            grid-column: span 1;
        }
        
        .footer-services-container {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer-bottom-content {
            flex-direction: column;
            text-align: center;
        }
        
        .footer-shape-divider svg {
            height: 50px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .animated-footer {
            padding: 60px 0 0;
        }
        
        .footer-wave {
            height: 50px;
            background-size: 1440px 50px;
        }
        
        .footer-wave-2,
        .footer-wave-3 {
            height: 30px;
            background-size: 1440px 30px;
        }
        
        .footer-content {
            padding: 0 5% 30px;
        }
        
        .footer-bottom {
            padding: 20px 5%;
        }
    }
/* Enhanced Footer Credits Styling */
.credits {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.secure-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 238, 255, 0.3);
}

.team-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 4px 8px;
    border-radius: 20px;
    background: rgba(14, 118, 188, 0.1);
    border: 1px solid rgba(0, 238, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.team-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 238, 255, 0.2), transparent);
    transition: transform 0.8s ease;
    z-index: 1;
}

.team-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 238, 255, 0.3);
    background: rgba(14, 118, 188, 0.3);
    border-color: rgba(0, 238, 255, 0.3);
}

.team-link:hover::before {
    transform: translateX(200%);
}

.cyber-text {
    background: linear-gradient(90deg, #0e76bc, #2b8fff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
}

.defence-text {
    background: linear-gradient(90deg, #2b8fff, #00eeff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    transition: all 0.3s ease;
}

.team-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.team-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.team-link:hover .team-text::after {
    width: 100%;
}

.shield-icon {
    margin-left: 6px;
    font-size: 12px;
    color: var(--accent-color);
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Make the footer credits more responsive */
@media screen and (max-width: 576px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .credits {
        font-size: 14px;
    }
    
    .team-link {
        margin-top: 5px;
    }
}

/* Add animation for the secure text on smaller screens */
@media screen and (max-width: 480px) {
    .secure-text {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .team-link {
        margin: 0 auto;
    }
}