@import url('orbital.css');
/* Concept: Neural Core with Orbiting Tech Elements (Home Page) */

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    margin-top: -50px;
}

/* Core Orb - The 'Brain' */
.neural-core {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #FF9F43, #FF6A00);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 106, 0, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.2);
    animation: corePulse 4s ease-in-out infinite;
    z-index: 10;
}

.neural-core::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 1px dashed rgba(255, 106, 0, 0.3);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}

.neural-core::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite reverse;
}

/* Floating Tech Cards */
.tech-card {
    position: absolute;
    background: rgba(18, 18, 23, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 12;
    transition: all 0.3s ease;
}

.tech-card i {
    color: #FF6A00;
    font-size: 1.2rem;
}

.tech-card:hover {
    transform: scale(1.1) !important;
    border-color: #FF6A00;
    box-shadow: 0 0 30px rgba(255, 106, 0, 0.3);
    cursor: pointer;
}

/* Positioning Cards */
.card-web {
    top: 20%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.card-mobile {
    bottom: 25%;
    right: 5%;
    animation: float2 7s ease-in-out infinite 1s;
}

.card-ai {
    top: 15%;
    right: 15%;
    animation: float3 8s ease-in-out infinite 0.5s;
}

.card-code {
    bottom: 15%;
    left: 20%;
    animation: float1 9s ease-in-out infinite 2s;
}

/* Connecting Lines */
.connection-line {
    position: absolute;
    background: linear-gradient(90deg, #FF6A00, transparent);
    height: 2px;
    opacity: 0.4;
    z-index: 5;
    transform-origin: left center;
}

.line-1 {
    width: 150px;
    top: 130px;
    left: 100px;
    transform: rotate(45deg);
    animation: pulseLine 3s infinite;
}

.line-2 {
    width: 120px;
    top: 250px;
    right: 120px;
    transform: rotate(140deg);
    animation: pulseLine 4s infinite 1s;
}


/* =========================================
   About Us Animation - Digital Synergy
   ========================================= */

.synergy-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Center Hexagon */
.hex-core {
    width: 160px;
    height: 180px;
    background: rgba(255, 106, 0, 0.1);
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: hexPulse 4s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 106, 0, 0.5);
    /* Fake border via box-shadow or inset not possible with clip-path easily, using svg or just filter */
    filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.4));
}

.hex-core::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 160px;
    background: linear-gradient(135deg, #FF6A00, #FF9F43);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: -1;
}

.hex-icon {
    font-size: 4rem;
    color: white;
    z-index: 11;
    animation: iconFloat 3s ease-in-out infinite;
}

/* Orbiting Nodes */
.orbit-path {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(255, 106, 0, 0.2);
    border-radius: 50%;
    animation: spinSlow 40s linear infinite;
}

.orbit-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: 1px solid #FF6A00;
    border-radius: 12px;
    /* Soft square */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF6A00;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
    font-size: 1.2rem;
    animation: nodeCounterSpin 40s linear infinite;
    /* Counter rotate to keep icon upright */
}

.node-1 {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    bottom: 50px;
    right: 20px;
}

.node-3 {
    bottom: 50px;
    left: 20px;
}

/* Data Particles */
.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF6A00;
}

.p1 {
    top: 50%;
    left: 50%;
    animation: particleShoot1 3s infinite;
}

.p2 {
    top: 50%;
    left: 50%;
    animation: particleShoot2 3s infinite 1s;
}

.p3 {
    top: 50%;
    left: 50%;
    animation: particleShoot3 3s infinite 2s;
}

/* Mission/Vision Boxes */
.vision-box,
.mission-box {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.vision-box {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.1), rgba(255, 165, 0, 0.05));
    border-color: #FF6A00;
}

.mission-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 106, 0, 0.05));
    border-color: #FF9F43;
}

.vision-box h3 {
    color: #FF6A00 !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.mission-box h3 {
    color: #FFB347 !important;
    font-size: 1.25rem;
    font-weight: 700;
}

.vision-box p,
.mission-box p {
    color: var(--gray-400) !important;
}

.vision-box:hover,
.mission-box:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.15), rgba(255, 165, 0, 0.1));
}


/* Animation Keyframes */
@keyframes corePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(255, 106, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 90px rgba(255, 106, 0, 0.6);
    }
}

@keyframes spinSlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes nodeCounterSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes hexPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 106, 0, 0.4));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px rgba(255, 106, 0, 0.7));
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px) translateX(10px);
    }
}

@keyframes pulseLine {

    0%,
    100% {
        opacity: 0.1;
        width: 50%;
    }

    50% {
        opacity: 0.6;
        width: 100%;
    }
}

@keyframes particleShoot1 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(150px, -150px);
        opacity: 0;
    }
}

@keyframes particleShoot2 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-150px, 100px);
        opacity: 0;
    }
}

@keyframes particleShoot3 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(120px, 120px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 991px) {

    .hero-visual-wrapper,
    .synergy-wrapper {
        height: 400px;
        transform: scale(0.8);
        margin-top: 20px;
    }
}

@media (max-width: 576px) {

    .hero-visual-wrapper,
    .synergy-wrapper {
        height: 350px;
        transform: scale(0.65);
    }

    .tech-card,
    .orbit-node {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}