
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Fira+Code:wght@400;500;600&display=swap');

    .mavic-footer {
        position: relative;
        background: linear-gradient(135deg, #03060c 0%, #0a1420 50%, #03060c 100%);
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        padding: 60px 40px 30px;
        overflow: hidden;
        border-top: 1px solid rgba(0, 255, 170, 0.3);
        margin-top: 80px;
    }

    /* Animated Particles */
    .footer-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }

    .particle {
        position: absolute;
        width: 3px;
        height: 3px;
        background: rgba(0, 255, 170, 0.6);
        border-radius: 50%;
        animation: floatParticle 15s infinite linear;
    }

    .particle:nth-child(1) { top: 10%; left: 20%; animation-duration: 12s; opacity: 0.4; }
    .particle:nth-child(2) { top: 30%; left: 80%; animation-duration: 18s; width: 4px; height: 4px; }
    .particle:nth-child(3) { top: 70%; left: 15%; animation-duration: 14s; background: #ffd966; }
    .particle:nth-child(4) { top: 50%; left: 45%; animation-duration: 20s; width: 5px; height: 5px; }
    .particle:nth-child(5) { top: 85%; left: 70%; animation-duration: 16s; }
    .particle:nth-child(6) { top: 20%; left: 90%; animation-duration: 22s; }
    .particle:nth-child(7) { top: 60%; left: 10%; animation-duration: 13s; }
    .particle:nth-child(8) { top: 40%; left: 55%; animation-duration: 19s; }
    .particle:nth-child(9) { top: 15%; left: 35%; animation-duration: 17s; }
    .particle:nth-child(10) { top: 75%; left: 85%; animation-duration: 21s; }

    @keyframes floatParticle {
        0% { transform: translateY(0) translateX(0); opacity: 0; }
        20% { opacity: 0.8; }
        80% { opacity: 0.4; }
        100% { transform: translateY(-200px) translateX(50px); opacity: 0; }
    }

    /* Glowing Border Effect */
    .footer-glow {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #00ffaa, #ffd966, #00ffaa, transparent);
        animation: glowMove 3s linear infinite;
        filter: blur(2px);
    }

    @keyframes glowMove {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 2;
    }

    /* Company Section */
    .company-section {
        background: rgba(10, 20, 30, 0.5);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 24px;
        border: 1px solid rgba(0, 255, 170, 0.2);
        transition: all 0.3s ease;
    }

    .company-section:hover {
        transform: translateY(-5px);
        border-color: rgba(0, 255, 170, 0.5);
        box-shadow: 0 10px 30px rgba(0, 255, 170, 0.1);
    }

    .company-logo-container {
        position: relative;
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .logo-icon {
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 0 10px #00ffaa);
        animation: logoPulse 2s ease-in-out infinite;
    }

    .logo-pulse {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,255,170,0.2), transparent);
        animation: pulseRing 2s ease-out infinite;
    }

    @keyframes pulseRing {
        0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
        100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
    }

    @keyframes logoPulse {
        0%, 100% { filter: drop-shadow(0 0 10px #00ffaa); }
        50% { filter: drop-shadow(0 0 20px #00ffaa); }
    }

    .company-section h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 8px;
        background: linear-gradient(135deg, #ffffff, #00ffaa);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .company-section h3 span {
        background: none;
        color: #ffd966;
    }

    .tagline {
        font-size: 1.1rem;
        color: #ffd966;
        font-weight: 500;
        margin: 10px 0;
    }

    .mission {
        font-size: 0.85rem;
        color: #a0aec0;
        line-height: 1.5;
    }

    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 255, 170, 0.1);
        padding: 6px 12px;
        border-radius: 30px;
        margin-top: 15px;
        font-size: 0.75rem;
        border: 1px solid rgba(0, 255, 170, 0.3);
    }

    .trust-badge i {
        color: #00ffaa;
    }

    /* Links Section */
    .links-section h4, .contact-section h4 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #00ffaa;
    }

    .animated-links {
        list-style: none;
        padding: 0;
    }

    .animated-links li {
        margin-bottom: 12px;
        position: relative;
    }

    .animated-links li a {
        color: #cbd5e6;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        transition: all 0.3s ease;
        position: relative;
    }

    .animated-links li a i {
        font-size: 0.85rem;
        transition: transform 0.3s ease;
    }

    .animated-links li:hover a {
        color: #00ffaa;
        transform: translateX(8px);
    }

    .animated-links li:hover a i {
        transform: translateX(3px);
    }

    .link-glow {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, #00ffaa, transparent);
        transition: width 0.3s ease;
    }

    .animated-links li:hover .link-glow {
        width: 100%;
    }

    /* Contact Section */
    .contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        padding: 12px;
        background: rgba(255,255,255,0.03);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: rgba(0, 255, 170, 0.05);
        transform: translateX(5px);
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #00563b, #00ffaa);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .contact-details {
        flex: 1;
    }

    .contact-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #00ffaa;
        display: block;
    }

    .contact-details a {
        color: white;
        text-decoration: none;
        font-weight: 500;
        display: block;
        margin: 4px 0;
    }

    .status-badge {
        font-size: 0.7rem;
        color: #ffd966;
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .status-badge i {
        font-size: 0.5rem;
    }

    /* DEVELOPER SECTION - TERMINAL STYLE */
    .developer-section {
        background: linear-gradient(135deg, #0a0f1c, #050a12);
        border-radius: 20px;
        border: 1px solid rgba(0, 255, 170, 0.3);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .developer-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 255, 170, 0.15);
        border-color: #00ffaa;
    }

    .terminal-header {
        background: #1a1f2e;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid rgba(0, 255, 170, 0.2);
    }

    .terminal-dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

    .dot.red { background: #ff5f56; }
    .dot.yellow { background: #ffbd2e; }
    .dot.green { background: #27c93f; }

    .terminal-title {
        flex: 1;
        font-family: 'Fira Code', monospace;
        font-size: 0.8rem;
        color: #00ffaa;
    }

    .terminal-status {
        font-size: 0.7rem;
        color: #27c93f;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .terminal-status::before {
        content: "●";
        font-size: 0.6rem;
        animation: blink 1s infinite;
    }

    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.3; }
    }

    .terminal-content {
        padding: 20px;
    }

    .terminal-line {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .prompt {
        color: #00ffaa;
        font-family: 'Fira Code', monospace;
        font-weight: 600;
    }

    .command {
        color: #ffd966;
        font-family: 'Fira Code', monospace;
    }

    .terminal-output {
        margin-left: 25px;
        margin-bottom: 20px;
        padding: 8px 12px;
        background: rgba(0, 255, 170, 0.05);
        border-radius: 8px;
        border-left: 2px solid #00ffaa;
    }

    .highlight {
        color: #00ffaa;
        font-weight: 700;
        font-size: 1.1rem;
        display: block;
    }

    .output-text {
        font-size: 0.85rem;
        color: #a0aec0;
    }

    .skills-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .skill-tag {
        background: rgba(0, 255, 170, 0.15);
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 0.7rem;
        font-family: 'Fira Code', monospace;
        border: 1px solid rgba(0, 255, 170, 0.3);
        transition: all 0.2s;
    }

    .skill-tag:hover {
        background: #00ffaa;
        color: #03060c;
        transform: scale(1.05);
    }

    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .terminal-link {
        color: #cbd5e6;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        transition: all 0.2s;
    }

    .terminal-link:hover {
        color: #00ffaa;
        transform: translateX(5px);
    }

    .terminal-footer {
        background: rgba(0,0,0,0.3);
        padding: 15px 20px;
        border-top: 1px solid rgba(0, 255, 170, 0.2);
    }

    .coffee-button-container {
        margin-bottom: 12px;
    }

    .coffee-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #ffd966, #ffaa33);
        color: #1a1f2e;
        padding: 10px 20px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 700;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

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

    .coffee-btn:hover::before {
        left: 100%;
    }

    .coffee-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(255, 170, 51, 0.4);
    }

    .terminal-stats {
        display: flex;
        gap: 15px;
        font-size: 0.7rem;
        color: #64748b;
        font-family: 'Fira Code', monospace;
    }

    /* Team Section */
    .team-section {
        max-width: 1200px;
        margin: 60px auto 40px;
        position: relative;
        z-index: 2;
    }

    .team-header {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }

    .team-header h3 {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff, #00ffaa);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }

    .team-glow {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #00ffaa, #ffd966, #00ffaa, transparent);
        animation: glowSlide 2s infinite;
    }

    @keyframes glowSlide {
        0% { width: 50px; opacity: 0.5; }
        50% { width: 150px; opacity: 1; }
        100% { width: 50px; opacity: 0.5; }
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }

    .team-card {
        background: rgba(10, 20, 30, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 20px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 255, 170, 0.2);
        position: relative;
        overflow: hidden;
    }

    .team-card:hover {
        transform: translateY(-10px);
        border-color: #00ffaa;
        box-shadow: 0 15px 30px rgba(0, 255, 170, 0.2);
    }

    .card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0,255,170,0.1), transparent);
        opacity: 0;
        transition: opacity 0.5s;
        pointer-events: none;
    }

    .team-card:hover .card-glow {
        opacity: 1;
    }

    .team-image {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto 15px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #00ffaa;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .team-card:hover .team-image img {
        transform: scale(1.1);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 255, 170, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .team-image:hover .image-overlay {
        opacity: 1;
    }

    .team-info h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .team-role {
        font-size: 0.8rem;
        color: #ffd966;
        margin-bottom: 10px;
    }

    .team-social {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 10px;
    }

    .team-social a {
        color: #a0aec0;
        transition: all 0.2s;
    }

    .team-social a:hover {
        color: #00ffaa;
        transform: translateY(-2px);
    }

    .expertise-badge {
        font-size: 0.7rem;
        background: rgba(0, 255, 170, 0.15);
        padding: 4px 8px;
        border-radius: 20px;
        display: inline-block;
    }

    /* Social Galaxy */
    .social-galaxy {
        text-align: center;
        margin: 50px 0 30px;
        position: relative;
        z-index: 2;
    }

    .social-orbit {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        margin-bottom: 15px;
    }

    .social-planet {
        position: relative;
        width: 50px;
        height: 50px;
        background: rgba(10, 20, 30, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #cbd5e6;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 255, 170, 0.3);
        animation: floatOrbit 3s ease-in-out infinite;
    }

    @keyframes floatOrbit {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    .social-planet:nth-child(1) { animation-delay: 0s; }
    .social-planet:nth-child(2) { animation-delay: 0.2s; }
    .social-planet:nth-child(3) { animation-delay: 0.4s; }
    .social-planet:nth-child(4) { animation-delay: 0.6s; }
    .social-planet:nth-child(5) { animation-delay: 0.8s; }
    .social-planet:nth-child(6) { animation-delay: 1s; }

    .social-planet:hover {
        transform: translateY(-10px) scale(1.1);
        background: linear-gradient(135deg, #00ffaa, #00563b);
        color: white;
        box-shadow: 0 0 25px rgba(0, 255, 170, 0.6);
    }

    .tooltip {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: #00ffaa;
        color: #03060c;
        padding: 4px 8px;
        border-radius: 8px;
        font-size: 0.7rem;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
    }

    .social-planet:hover .tooltip {
        opacity: 1;
    }

    .social-text {
        font-size: 0.85rem;
        color: #64748b;
        letter-spacing: 1px;
    }

    /* Bottom Strip */
    .footer-bottom {
        border-top: 1px solid rgba(0, 255, 170, 0.2);
        padding-top: 25px;
        margin-top: 30px;
        position: relative;
        z-index: 2;
    }

    .bottom-content {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .copyright {
        font-size: 0.85rem;
        color: #a0aec0;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .separator {
        color: #00ffaa;
    }

    .tagline-text {
        color: #ffd966;
    }

    .live-stats {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
    }

    .stat {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: #cbd5e6;
    }

    .stat i {
        color: #00ffaa;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .mavic-footer {
            padding: 40px 20px 20px;
        }

        .footer-container {
            grid-template-columns: 1fr;
        }

        .bottom-content {
            flex-direction: column;
            text-align: center;
        }

        .live-stats {
            justify-content: center;
        }

        .terminal-stats {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    
    
    /* ============================================
   PROFESSIONAL EMAIL DIRECTORY - CORPORATE STYLE
   ============================================ */

.email-directory {
    background: linear-gradient(135deg, rgba(10, 20, 30, 0.6), rgba(5, 15, 20, 0.5));
    backdrop-filter: blur(12px);
    border-radius: 28px;
    margin: 30px 0 20px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 255, 170, 0.25);
    transition: all 0.3s ease;
}

.email-directory:hover {
    border-color: rgba(0, 255, 170, 0.5);
    box-shadow: 0 8px 32px rgba(0, 255, 170, 0.1);
}

.email-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 255, 170, 0.3);
    position: relative;
}

.email-header i {
    font-size: 1.8rem;
    color: #00ffaa;
    filter: drop-shadow(0 0 8px rgba(0, 255, 170, 0.5));
}

.email-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: -0.3px;
}

.header-glow {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #00ffaa, transparent);
}

/* Email Grid Layout */
.email-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

/* Individual Email Card */
.email-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.email-card:hover {
    transform: translateX(8px) translateY(-2px);
    background: rgba(0, 255, 170, 0.08);
    border-color: rgba(0, 255, 170, 0.3);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Email Icon Styling */
.email-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00563b, #00ffaa);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.email-icon i {
    font-size: 1.3rem;
    color: white;
}

.email-card:hover .email-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.5);
}

/* Email Details */
.email-details {
    flex: 1;
    min-width: 0;
}

.email-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #ffd966;
    margin-bottom: 4px;
}

.email-address {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    word-break: break-all;
    font-family: 'Fira Code', monospace;
}

.email-address:hover {
    color: #00ffaa;
    text-shadow: 0 0 5px rgba(0, 255, 170, 0.5);
}

.email-note {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* Department-specific border accents */
.email-card[data-dept="executive"] .email-icon {
    background: linear-gradient(135deg, #ffd966, #f59e0b);
}
.email-card[data-dept="hr"] .email-icon {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.email-card[data-dept="operations"] .email-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}
.email-card[data-dept="info"] .email-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}
.email-card[data-dept="sales"] .email-icon {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
}
.email-card[data-dept="technical"] .email-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.email-card[data-dept="developer"] .email-icon {
    background: linear-gradient(135deg, #00ffaa, #00563b);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .email-directory {
        padding: 1rem;
        margin: 20px 0;
    }
    
    .email-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .email-card {
        padding: 0.85rem 1rem;
    }
    
    .email-icon {
        width: 42px;
        height: 42px;
    }
    
    .email-icon i {
        font-size: 1.1rem;
    }
    
    .email-address {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .email-header h4 {
        font-size: 1.1rem;
    }
    
    .email-header i {
        font-size: 1.4rem;
    }
    
    .email-label {
        font-size: 0.6rem;
    }
}