/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 20px 0 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Tech Orb Animation */
.tech-orb {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--primary-neon);
    border-radius: 50%;
    box-shadow: 0 0 50px var(--primary-neon);
    animation: pulse 3s infinite ease-in-out;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 243, 255, 0.3);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.orb-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    border-color: rgba(188, 19, 254, 0.3);
    animation: rotate-reverse 15s linear infinite;
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: translate(-50%, -50%) rotateX(-60deg) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateX(-60deg) rotateZ(-360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Stats Strip */
.stats-strip {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-neon);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    text-align: center;
}

.icon-glow {
    font-size: 2.5rem;
    color: var(--secondary-neon);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(188, 19, 254, 0.5);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-neon);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card a {
    color: var(--primary-neon);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.industry-card {
    height: 250px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
}

.industry-card h3 {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    margin-top: 80px;
    border-radius: 20px;
    margin-bottom: -50px;
    /* Pull footer up slightly or overlap */
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 40px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .tech-orb {
        margin-top: 50px;
        width: 300px;
        height: 300px;
    }

    .vision-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        width: 45%;
    }

    .vision-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }
}