* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Header - Updated for transparent navbar */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    background: transparent; /* Start completely transparent */
    backdrop-filter: none; /* No blur initially */
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
}

/* Scrolled state - add background on scroll */
.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

/* Logo enhancement when scrolled */
.header.scrolled .logo {
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Better visibility on transparent bg */
}

.nav-links a:hover {
    color: #667eea;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu */
/* Stylish Hamburger Menu - No Background */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    box-shadow: 
        0 0 15px rgba(102, 126, 234, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    transform-origin: center;
}

.hamburger span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hamburger:hover span::before {
    opacity: 1;
}

/* Stylish Cross Animation */
.hamburger.active span {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    box-shadow: 
        0 0 20px rgba(255, 107, 107, 0.6),
        0 0 40px rgba(255, 107, 107, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.4);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) scale(1.1);
    width: 32px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0) rotate(180deg);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px) scale(1.1);
    width: 32px;
}

/* Rotating animation on hover when active */
.hamburger.active:hover span:nth-child(1),
.hamburger.active:hover span:nth-child(3) {
    animation: crossGlow 1s ease-in-out infinite alternate;
}

@keyframes crossGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(255, 107, 107, 0.6),
            0 0 40px rgba(255, 107, 107, 0.3),
            0 2px 10px rgba(0, 0, 0, 0.4);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(255, 107, 107, 0.8),
            0 0 60px rgba(255, 107, 107, 0.5),
            0 2px 15px rgba(0, 0, 0, 0.5);
    }
}

/* Responsive - Show hamburger on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}

/* Mobile Menu - Updated styling */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 100px 5% 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInMobile 0.5s ease forwards;
}

.mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu a:nth-child(6) { animation-delay: 0.6s; }
.mobile-menu a:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu a:hover {
    color: #667eea;
    padding-left: 10px;
    border-color: rgba(102, 126, 234, 0.3);
}

.cta-button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.desktop-cta {
    display: inline-block;
}

/* Enhanced CTA button visibility on transparent navbar */
.header:not(.scrolled) .cta-button {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .desktop-cta {
        display: none;
    }
    
    .header {
        padding: 15px 5%;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Add subtle top gradient for better navbar visibility */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 20%,
        transparent 40%
    );
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    margin-top: 0; /* Remove any top margin */
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Add subtle shadow for depth */
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-button {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}
.solution-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
                .feature-tag {
            background: rgba(102, 126, 234, 0.1);
            border: 1px solid rgba(102, 126, 234, 0.2);
            color: rgba(102, 126, 234, 1);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            background: rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.4);
            transform: translateY(-2px);
        }
/* Video Avatar Section */
.avatar-section {
    padding: 100px 5%;
    background: #0a0a0a;
    position: relative;
}

.avatar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.avatar-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.avatar-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.avatar-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.avatar-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Section - UPDATED */
.stats {
    padding: 80px 5%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* Contact Form */
.contact-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-left {
    padding-right: 20px;
}

.contact-left h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-left p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-details p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group select {
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 10px;
    border: none;
}

.form-group select option:hover {
    background: #667eea;
}

.form-group select option:checked {
    background: #667eea;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    padding: 15px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Floating particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* About Section */
.about-section {
    padding: 80px 0 80px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    align-items: flex-start;
}

.about-left {
    flex: 1 1 340px;
    min-width: 280px;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-right {
    flex: 1 1 340px;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-bottom: 40px;
    place-items: center;
}

.about-highlight {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: 72px; /* Fixed height for consistency */
    min-height: 72px; /* Ensure minimum height */
    transition: box-shadow 0.2s, transform 0.2s;
    box-sizing: border-box;
    justify-content: flex-start;
    text-align: left;
    margin: 0 auto;
    line-height: 1.3; /* Improve text spacing */
}

.about-highlight:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.11);
    transform: translateY(-2px) scale(1.03);
}
.about-highlight span:not(.about-icon) {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-icon {
    font-size: 1.4rem;
    margin-right: 10px;
    background: linear-gradient(135deg, #6a8dff 0%, #00e6d3 100%);
    border-radius: 50%;
    padding: 4px;
    color: #fff;
    box-shadow: 0 1px 4px rgba(106,141,255,0.10);
}

.about-description {
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 18px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    text-shadow: 0 2px 12px rgba(102,126,234,0.12);
    letter-spacing: 0.2px;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.about-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive - UPDATED */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .avatar-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left {
        padding-right: 0;
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

@media (min-width: 901px) {
    .about-content {
        align-items: center;
    }
    .about-right {
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}

.footer {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 103, 103, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem 3rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
            gap: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand h2 {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #64ffda 0%, #00bcd4 50%, #2196f3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .footer-brand p {
            color: #b0b0b0;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .trust-badges {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.5rem;
        }

        .trust-badge {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 70px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .trust-badge:hover {
            transform: translateY(-2px);
            border-color: rgba(100, 255, 218, 0.3);
            box-shadow: 0 8px 25px rgba(100, 255, 218, 0.1);
        }

        .trust-badge i {
            color: #64ffda;
            font-size: 1.2rem;
            margin-bottom: 0.3rem;
        }

        .trust-badge span {
            color: #e0e0e0;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .trust-badge .sub {
            color: #888;
            font-size: 0.6rem;
            font-weight: 400;
            margin-top: 0.1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links h4 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            letter-spacing: -0.01em;
        }

        .footer-links a {
            color: #b0b0b0;
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, #64ffda, #2196f3);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #64ffda;
            transform: translateX(4px);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .footer-links a i {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .footer-socials {
            display: flex;
            flex-direction: column;
        }

        .footer-socials h4 {
            color: #ffffff;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0b0b0;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-links a:hover {
            transform: translateY(-3px);
            border-color: #64ffda;
            color: #64ffda;
            box-shadow: 0 8px 25px rgba(100, 255, 218, 0.2);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1.5rem 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #888;
            font-size: 0.9rem;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(76, 175, 80, 0.1);
            border: 1px solid rgba(76, 175, 80, 0.2);
            border-radius: 20px;
            font-size: 0.8rem;
            color: #4caf50;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #4caf50;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
            100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-container {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 2.5rem;
            }
            
            .footer-brand {
                grid-column: 1 / -1;
                max-width: none;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 3rem 1.5rem 2rem;
            }
            
            .footer-brand h2 {
                font-size: 1.8rem;
            }
            
            .trust-badges {
                flex-wrap: wrap;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 2.5rem 1rem 2rem;
            }
            
            .trust-badge {
                min-width: 60px;
                padding: 0.6rem;
            }
        }