/* ================= about-us.css ================= */
:root {
    --purple-glow: rgba(139, 92, 246, 0.4);
    --purple-primary: #8b5cf6;
}

/* Custom organic shape for the badge */
.organic-badge {
    border-radius: 60% 40% ;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.4);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.2);
}

/* Gradient Text for 'Growth' */
.text-gradient-growth {
    background: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
}

/* Subtle Data Traces Grid */
.bg-grid-pattern {
    background-image: radial-gradient(circle, rgba(147, 51, 234, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Abstract Digital Pages */
.digital-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

/* Blueprint Grid Background */
.bg-grid-blueprint {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 242, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
}

/* Tracing Line Effect */
.tracing-line {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(90deg, transparent, #00f2ff, #9333ea, transparent);
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.3s ease;
}

.glass-card:hover .tracing-line {
    opacity: 1;
    animation: trace 2s linear infinite;
}

@keyframes trace {
    0% { top: -100%; left: -100%; }
    25% { top: 0; left: 0; }
    50% { top: 0; left: 100%; }
    75% { top: 100%; left: 100%; }
    100% { top: 100%; left: -100%; }
}

/* Floating animation */
@keyframes float-about {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-float {
    animation: float-about 6s ease-in-out infinite;
}

/* Blueprint core float */
.animate-blueprint-float {
    animation: float-blueprint 6s ease-in-out infinite;
}

@keyframes float-blueprint {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Node pulse */
.node-pulse {
    animation: pulse-glow-node 3s infinite;
}

@keyframes pulse-glow-node {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Mission & Vision specific glows */
.mission-glow {
    background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
}

.vision-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

@keyframes pulse-glow-bg {
    0%, 100% { opacity: 0.4; filter: blur(40px); }
    50% { opacity: 0.7; filter: blur(60px); }
}

.animate-pulse-glow {
    animation: pulse-glow-bg 4s ease-in-out infinite;
}

/* Partners logo styling */
.monochrome-logo {
    filter: brightness(0) invert(1) opacity(0.7);
    transition: opacity 0.3s ease;
}

.logo-card:hover .monochrome-logo {
    opacity: 1;
}

.logo-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(147, 51, 234, 0.4);
    box-shadow: 0 10px 30px -10px rgba(147, 51, 234, 0.3);
}

/* Radial Glows */
.radial-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(5, 5, 5, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.glow-top-right { top: -200px; right: -200px; }
.glow-bottom-left { bottom: -200px; left: -200px; }

/* Operational Alchemy & Energy Core Animations */
@keyframes pulse-radial {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.animate-pulse-radial {
    animation: pulse-radial 8s ease-in-out infinite;
}

@keyframes flow-chaos {
    0% { stroke-dashoffset: 1000; opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { stroke-dashoffset: 0; opacity: 0.3; }
}

.chaos-path {
    stroke-dasharray: 20, 15;
    animation: flow-chaos 20s linear infinite;
}

@keyframes flow-ribbon {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

.energy-ribbon {
    stroke-dasharray: 400;
    animation: flow-ribbon 10s linear infinite;
}

@keyframes beam-spark {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

.data-beam-spark {
    height: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, transparent);
    animation: beam-spark 3s linear infinite;
}

@keyframes rotate-core {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.core-rotate {
    animation: rotate-core 40s linear infinite;
}

/* Glassmorphism Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--purple-primary);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3), 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Rotated concentric double-square elements hover synchronization */
.glass-card:hover .absolute.rotate-45 {
    border-color: var(--purple-primary);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
    transform: rotate(45deg) scale(1.1);
}

.glass-card:hover .absolute.rotate-\[30deg\] {
    border-color: var(--purple-primary);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
    transform: rotate(30deg) scale(1.05);
}

/* Concentric square default transitions */
.glass-card .absolute.rotate-45,
.glass-card .absolute.rotate-\[30deg\] {
    transition: border-color 0.4s ease, filter 0.4s ease, transform 0.4s ease;
}

/* Clock pulse for deliverables animate icon */
@keyframes clock-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.animate-clock {
    animation: clock-pulse 2s infinite ease-in-out;
}

/* Footer Banner Glow */
.footer-banner {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.1) 0%, rgba(168, 85, 247, 0.2) 50%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}

.glow-text {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.text-glow {
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

.text-glow-purple {
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.6);
    color: #d8b4fe;
}
