/* Advanced Animations and Effects */

/* Black Orb Background Effect - Now only in main section */
.black-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #000000, #333333, #000000);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.08;
    z-index: 1;
    animation: orbFloat 20s infinite ease-in-out;
    mix-blend-mode: multiply;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(calc(-50% + 100px), calc(-50% + 100px)) scale(1.3);
    }
    50% {
        transform: translate(calc(-50% + 200px), calc(-50% + 50px)) scale(0.9);
    }
    75% {
        transform: translate(calc(-50% + 50px), calc(-50% + 150px)) scale(1.2);
    }
}

/* Animated Background Section */
.animated-bg-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

/* Color Blinkers */
.color-blinker {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    animation: colorBlinkSwap 18s infinite ease-in-out;
}

.blinker-left {
    left: -150px;
    top: 20%;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    animation-delay: 0s;
}

.blinker-right {
    right: -150px;
    top: 60%;
    background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
    animation-delay: 9s;
}

.blinker-center {
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    animation-delay: 4.5s;
}

@keyframes colorBlinkSwap {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.3) translateX(100px);
    }
    50% {
        opacity: 0.3;
        transform: scale(1) translateX(-100px);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.2) translateX(50px);
    }
}

/* Enhanced Carousel 3D Effects */
.enhanced-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.carousel-3d-container {
    position: relative;
    transform: translateZ(50px);
}

.carousel-3d-content {
    position: relative;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: shapeFloat 30s infinite linear, shapePulse 4s infinite ease-in-out;
    opacity: 0.3;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #a1c4fd, #c2e9fb);
    top: 60%;
    right: 15%;
    animation-delay: 7.5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
    bottom: 30%;
    left: 20%;
    animation-delay: 15s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #84fab0, #8fd3f4);
    top: 40%;
    right: 25%;
    animation-delay: 22.5s;
}

@keyframes shapeFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-100px, -50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes shapePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Glowing Text Effects */
.glowing-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.6),
                 0 0 30px rgba(255, 255, 255, 0.4);
    animation: glowPulse 4s infinite alternate;
}

.glowing-title {
    text-shadow: 0 0 15px rgba(135, 206, 235, 0.8),
                 0 0 25px rgba(135, 206, 235, 0.6),
                 0 0 35px rgba(135, 206, 235, 0.4);
    animation: titleGlow 5s infinite alternate;
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                     0 0 20px rgba(255, 255, 255, 0.6),
                     0 0 30px rgba(255, 255, 255, 0.4);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.9),
                     0 0 25px rgba(255, 255, 255, 0.7),
                     0 0 35px rgba(255, 255, 255, 0.5);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 15px rgba(135, 206, 235, 0.8),
                     0 0 25px rgba(135, 206, 235, 0.6),
                     0 0 35px rgba(135, 206, 235, 0.4);
    }
    100% {
        text-shadow: 0 0 20px rgba(135, 206, 235, 0.9),
                     0 0 30px rgba(135, 206, 235, 0.7),
                     0 0 40px rgba(135, 206, 235, 0.5);
    }
}

/* Interactive Main Section */
.main-interactive-section {
    position: relative;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.animated-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.stat-card.floating {
    animation: statFloat 8s ease-in-out infinite;
}

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 2s; }
.stat-card:nth-child(3) { animation-delay: 4s; }
.stat-card:nth-child(4) { animation-delay: 6s; }

.stat-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: skyblue;
}

.stat-number {
    font-size: 2.8em;
    font-weight: bold;
    color: white;
    margin: 10px 0;
}

@keyframes statFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Interactive Visual Center */
.interactive-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.rotating-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringRotate infinite linear;
}

.ring-1 {
    width: 300px;
    height: 300px;
    border-image: linear-gradient(45deg, #ff9a9e, #fad0c4) 1;
    animation-duration: 30s;
}

.ring-2 {
    width: 240px;
    height: 240px;
    top: 30px;
    left: 30px;
    border-image: linear-gradient(45deg, #a1c4fd, #c2e9fb) 1;
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring-3 {
    width: 180px;
    height: 180px;
    top: 60px;
    left: 60px;
    border-image: linear-gradient(45deg, #ffecd2, #fcb69f) 1;
    animation-duration: 20s;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.central-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 90px;
    left: 90px;
    background: radial-gradient(circle at 30% 30%, skyblue, #4682b4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    color: white;
    animation: centralPulse 4s infinite alternate;
}

@keyframes centralPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(135, 206, 235, 0.5);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(135, 206, 235, 0.8);
    }
}

/* Animated Features */
.animated-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, skyblue, #4682b4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Floating Elements */
.floating-elements-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    pointer-events: none;
}

.floating-line {
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(135, 206, 235, 0.6),
        transparent);
    animation: lineFloat 30s infinite linear;
}

.floating-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, skyblue, rgba(135, 206, 235, 0));
    animation: dotFloat 25s infinite ease-in-out;
}

@keyframes lineFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

@keyframes dotFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(100px, -80px) scale(1.5);
        opacity: 0.5;
    }
    66% {
        transform: translate(-60px, 120px) scale(0.7);
        opacity: 1;
    }
}

/* Bubble Animation */
.bubble-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: bubbleFloat 30s infinite linear;
    opacity: 0;
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(100vh) scale(0.3);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) scale(1.2);
        opacity: 0;
    }
}

/* Enhanced Interactive Images */
.interactive-circle {
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: circleFloat 10s ease-in-out infinite;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 5px white,
        inset 0 0 20px rgba(135, 206, 235, 0.4);
}

@keyframes circleFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0) scale(1);
    }
    33% {
        transform: translateY(-15px) rotateY(10deg) scale(1.05);
    }
    66% {
        transform: translateY(8px) rotateY(-10deg) scale(0.95);
    }
}

/* Pulse Button Effect */
.pulse {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(135, 206, 235, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(135, 206, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(135, 206, 235, 0);
    }
}

/* Particle Background Sections */
.particle-bg {
    position: relative;
    overflow: hidden;
}

.particle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(135, 206, 235, 0.1) 0%,
        rgba(135, 206, 235, 0.05) 50%,
        transparent 70%);
    z-index: -1;
}

/* Color Shift Animation */
@keyframes colorShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }
    25% {
        filter: hue-rotate(90deg) brightness(1.1);
    }
    50% {
        filter: hue-rotate(180deg) brightness(1);
    }
    75% {
        filter: hue-rotate(270deg) brightness(1.1);
    }
    100% {
        filter: hue-rotate(360deg) brightness(1);
    }
}

/* Button Glow Effect */
@keyframes buttonGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(135, 206, 235, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(135, 206, 235, 0.8)) 
                drop-shadow(0 0 30px rgba(135, 206, 235, 0.3));
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .interactive-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visual-container {
        width: 250px;
        height: 250px;
    }
    
    .ring-1 {
        width: 250px;
        height: 250px;
    }
    
    .ring-2 {
        width: 190px;
        height: 190px;
        top: 30px;
        left: 30px;
    }
    
    .ring-3 {
        width: 130px;
        height: 130px;
        top: 60px;
        left: 60px;
    }
    
    .central-orb {
        width: 100px;
        height: 100px;
        top: 75px;
        left: 75px;
    }
}

@media (max-width: 768px) {
    .black-orb {
        width: 150px;
        height: 150px;
    }
    
    .color-blinker {
        width: 200px;
        height: 200px;
    }
    
    .animated-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .animated-stats {
        grid-template-columns: 1fr;
    }
    
    .visual-container {
        width: 200px;
        height: 200px;
    }
    
    .ring-1 {
        width: 200px;
        height: 200px;
    }
    
    .ring-2 {
        width: 140px;
        height: 140px;
        top: 30px;
        left: 30px;
    }
    
    .ring-3 {
        width: 80px;
        height: 80px;
        top: 60px;
        left: 60px;
    }
    
    .central-orb {
        width: 80px;
        height: 80px;
        top: 60px;
        left: 60px;
        font-size: 2.5em;
    }
    
    .floating-line {
        height: 150px;
    }
}

/* Advanced Animations and Effects */

/* Enhanced White Orb */
.white-orb {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.3),
        transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
    animation: whiteOrbFloat 20s infinite ease-in-out;
    mix-blend-mode: screen;
}

@keyframes whiteOrbFloat {
    0%, 100% {
        transform: translate(10vw, 10vh) scale(1);
    }
    25% {
        transform: translate(80vw, 30vh) scale(1.3);
    }
    50% {
        transform: translate(40vw, 70vh) scale(0.9);
    }
    75% {
        transform: translate(70vw, 50vh) scale(1.2);
    }
}

/* Enhanced Main Section */
.main-section {
    position: relative;
    height: 100vh;
    background: #000 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(135, 206, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(135, 206, 235, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.particle-network-container,
.main-bubble-container,
.swirling-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Main Bubbles */
.main-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: mainBubbleFloat 30s infinite linear;
    opacity: 0;
    bottom: -100px;
}

@keyframes mainBubbleFloat {
    0% {
        transform: translateY(0) scale(0.3);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) scale(1.2);
        opacity: 0;
    }
}

/* Light Rays */
.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ray {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    animation: rayScan 3s infinite linear;
}

.ray-1 { left: 10%; }
.ray-2 { left: 30%; }
.ray-3 { left: 50%; }
.ray-4 { left: 70%; }
.ray-5 { left: 90%; }

@keyframes rayScan {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Main Content */
.main-content-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
}

.main-3d-content h1.main-title {
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.2;
    text-shadow: 
        0 0 10px rgba(135, 206, 235, 0.8),
        0 0 20px rgba(135, 206, 235, 0.6),
        0 0 30px rgba(135, 206, 235, 0.4),
        0 0 40px rgba(135, 206, 235, 0.2);
    animation: titlePulse 3s infinite alternate;
}

@keyframes titlePulse {
    0% {
        text-shadow: 
            0 0 10px rgba(135, 206, 235, 0.8),
            0 0 20px rgba(135, 206, 235, 0.6),
            0 0 30px rgba(135, 206, 235, 0.4);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(135, 206, 235, 0.9),
            0 0 25px rgba(135, 206, 235, 0.7),
            0 0 35px rgba(135, 206, 235, 0.5),
            0 0 45px rgba(135, 206, 235, 0.3);
    }
}

/* Circular Team Section */
.circular-team-section {
    position: relative;
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.circular-team-container {
    position: relative;
    width: 800px;
    height: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-team {
    position: relative;
    width: 100%;
    height: 100%;
}

.circular-team-member {
    position: absolute;
    width: 150px;
    height: 150px;
    transform-origin: center center;
    transition: all 0.5s ease;
    animation: teamFloat 6s ease-in-out infinite;
}

.circular-team-member:hover {
    transform: scale(1.2) rotate(0deg) !important;
    z-index: 10;
}

.circular-team-member .team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid skyblue;
    box-shadow: 
        0 0 20px rgba(135, 206, 235, 0.5),
        0 0 40px rgba(135, 206, 235, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    animation: teamImageRotate 10s linear infinite;
}

@keyframes teamImageRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.circular-team-member .team-info {
    text-align: center;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.circular-team-member:hover .team-info {
    opacity: 1;
}

.team-central-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, skyblue, #4682b4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: white;
    animation: centralOrbPulse 3s infinite alternate;
    box-shadow: 
        0 0 40px rgba(135, 206, 235, 0.7),
        0 0 80px rgba(135, 206, 235, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    z-index: 2;
}

@keyframes centralOrbPulse {
    0% {
        transform: scale(1);
        box-shadow: 
            0 0 40px rgba(135, 206, 235, 0.7),
            0 0 80px rgba(135, 206, 235, 0.5);
    }
    100% {
        transform: scale(1.1);
        box-shadow: 
            0 0 50px rgba(135, 206, 235, 0.8),
            0 0 100px rgba(135, 206, 235, 0.6);
    }
}

/* Section Swirl Effects */
.section-swirl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    opacity: 0.1;
    z-index: 0;
}

.section-swirl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 50%;
    animation: swirlRotate 20s linear infinite;
}

@keyframes swirlRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Swirl Lines in Interactive Visual */
.swirl-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.swirl-lines::before,
.swirl-lines::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.swirl-lines::before {
    border-top-color: rgba(135, 206, 235, 0.6);
    animation: swirlLine1 8s linear infinite;
}

.swirl-lines::after {
    border-bottom-color: rgba(135, 206, 235, 0.4);
    animation: swirlLine2 6s linear infinite reverse;
}

@keyframes swirlLine1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1.2);
    }
}

@keyframes swirlLine2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
    }
}

/* Floating Animation for Team Members */
@keyframes teamFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Enhanced Interactive Visual */
.interactive-visual .visual-container {
    animation: visualContainerFloat 8s ease-in-out infinite;
}

@keyframes visualContainerFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
    }
    50% {
        transform: translateY(10px) rotateX(-5deg) rotateY(-5deg);
    }
    75% {
        transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    }
}

/* Modern Scroll Effects */
.static-grid-section {
    scroll-snap-align: start;
}

.page-content {
    scroll-snap-type: y proximity;
}

/* Particle Trail Effects */
.particle-trail {
    animation: particleFade 2s linear forwards;
}

@keyframes particleFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Enhanced Glowing Effects */
.glowing-text {
    animation: textGlowShift 4s infinite alternate;
}

@keyframes textGlowShift {
    0% {
        text-shadow: 
            0 0 10px rgba(135, 206, 235, 0.8),
            0 0 20px rgba(135, 206, 235, 0.6),
            0 0 30px rgba(135, 206, 235, 0.4);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(135, 206, 235, 0.9),
            0 0 25px rgba(135, 206, 235, 0.7),
            0 0 35px rgba(135, 206, 235, 0.5),
            0 0 45px rgba(135, 206, 235, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-3d-content h1.main-title {
        font-size: 3rem;
    }
    
    .circular-team-container {
        width: 600px;
        height: 600px;
    }
    
    .circular-team-member {
        width: 120px;
        height: 120px;
    }
    
    .circular-team-member .team-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .main-3d-content h1.main-title {
        font-size: 2.5rem;
    }
    
    .circular-team-container {
        width: 400px;
        height: 400px;
    }
    
    .circular-team-member {
        width: 100px;
        height: 100px;
    }
    
    .circular-team-member .team-image {
        width: 80px;
        height: 80px;
    }
    
    .team-central-orb {
        width: 100px;
        height: 100px;
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .main-3d-content h1.main-title {
        font-size: 2rem;
    }
    
    .circular-team-container {
        width: 300px;
        height: 300px;
    }
    
    .circular-team-member {
        width: 80px;
        height: 80px;
    }
    
    .circular-team-member .team-image {
        width: 60px;
        height: 60px;
    }
    
    .team-central-orb {
        width: 80px;
        height: 80px;
        font-size: 1.5em;
    }
}