:root {
--bg-color: #0c0c0e;
--text-color: #ffffff;
--accent-color: #0066cc;
--accent-gradient: linear-gradient(135deg, #4753ff 0%, #3b82f6 50%, #06b6d4 100%);
--secondary-color: #151518;
--transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
--container-padding: 0px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
cursor: none; }
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
overflow-x: hidden;
line-height: 1.6;
} html {
scrollbar-width: thin;
scrollbar-color: #3b82f6 #050507; }
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #050507;
}
::-webkit-scrollbar-thumb {
background: var(--accent-gradient);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #06b6d4;
}
h1,
h2,
h3 {
font-family: 'Outfit', sans-serif;
text-transform: uppercase;
letter-spacing: 2px;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition-smooth);
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 var(--container-padding);
} #cursor {
width: 20px;
height: 20px;
background: white;
border-radius: 50%;
position: fixed;
pointer-events: none;
z-index: 10000;
mix-blend-mode: difference;
transition: transform 0.1s ease;
}
#cursor-follower {
width: 40px;
height: 40px;
border: 1px solid rgba(255, 255, 255, 0.5);
border-radius: 50%;
position: fixed;
pointer-events: none;
z-index: 9999;
transition: transform 0.15s ease, background 0.3s ease;
} .reveal {
opacity: 0;
transform: translateY(30px);
will-change: transform, opacity, filter;
filter: blur(10px);
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
filter: blur(0px);
} header {
position: fixed;
top: 30px;
left: 50%;
transform: translateX(-50%);
width: auto;
z-index: 1000;
padding: 12px 10px;
transition: var(--transition-smooth);
background: rgba(21, 21, 24, 0.4);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 100px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
header.scrolled {
top: 20px;
background: rgba(12, 12, 14, 0.85);
padding: 8px 10px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
border: 1px solid rgba(255, 77, 0, 0.2);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 0 40px;
gap: 60px; }
.logo img {
height: 40px;
display: block;
}
.nav-links {
display: flex;
gap: 35px;
}
.nav-links a {
font-weight: 500;
font-size: 14px;
opacity: 0.6;
letter-spacing: 0.5px;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--accent-gradient);
transition: var(--transition-smooth);
border-radius: 2px;
}
.nav-links a:hover {
opacity: 1;
color: var(--text-color);
}
.nav-links a:hover::after {
width: 100%;
} .hamburger {
display: none;
flex-direction: column;
gap: 6px;
cursor: pointer;
z-index: 100;
}
.hamburger span {
width: 25px;
height: 2px;
background-color: #fff;
transition: var(--transition-smooth);
border-radius: 2px;
}
.logo {
display: flex;
align-items: center;
transition: var(--transition-smooth);
}
.logo:hover {
transform: scale(1.05);
} .hero {
height: 150vh;
display: flex;
align-items: flex-start; padding-top: 22vh; position: relative;
overflow: hidden;
}
.hero-container {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.hero-content { z-index: 10;
pointer-events: none;
text-align: center;
margin: 0 auto;
}
.hero-title {
font-size: clamp(48px, 8vw, 110px);
line-height: 0.9;
margin-bottom: 20px;
font-weight: 800;
}
.highlight {
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
display: inline-block;
}
.hero-description {
font-size: 20px;
max-width: 600px;
margin: 0 auto 40px;
opacity: 0.8;
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 18px 45px;
background: var(--accent-gradient);
color: white;
font-weight: 700;
border-radius: 100px;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
pointer-events: all;
transition: var(--transition-smooth);
}
.cta-button:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 15px 50px rgba(6, 182, 212, 0.6);
}
main {
position: relative;
} .visual-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 650vh; z-index: 1;
pointer-events: none;
}
.hero-visual {
position: sticky;
top: 0;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
pointer-events: none;
overflow: hidden;
}
#interactive-canvas {
width: 100vw;
height: 100vh;
display: block;
} .mobile-canvas-stage {
display: none;
} .innovation {
height: 150vh;
display: flex;
align-items: flex-start;
padding-top: 25vh;
position: relative;
z-index: 5;
}
.innovation-container {
width: 100%;
display: flex;
justify-content: flex-end; }
.innovation-content {
max-width: 800px;
text-align: right;
z-index: 10;
pointer-events: none;
}
.innovation-content .cta-button {
pointer-events: all;
} .impact {
height: 150vh;
display: flex;
align-items: flex-start;
padding-top: 25vh;
position: relative;
z-index: 5;
}
.impact-container {
width: 100%;
display: flex;
justify-content: center; }
.impact-content {
max-width: 900px;
text-align: center;
z-index: 10;
pointer-events: none;
}
.impact-content .cta-button {
pointer-events: all;
} .achievements {
padding: 120px 0;
background: transparent;
position: relative;
z-index: 5;
} .achievements {
height: 100vh;
padding: 0;
background: transparent;
position: relative;
z-index: 5;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.trophy-wrapper {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
width: 100%;
max-width: 1800px;
margin: 0 auto;
gap: 2vw;
padding: 0 1vw;
}
.ach-side {
display: flex;
gap: 1vw;
}
.ach-column {
display: flex;
flex-direction: column;
gap: 2vh;
justify-content: center;
}
.ach-column.offset {
padding-top: 4vh;
}
.ach-card {
background: rgba(21, 21, 24, 0.6);
backdrop-filter: blur(20px);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 12px;
padding: 15px;
width: clamp(180px, 12vw, 190px);
text-align: center;
transition: var(--transition-smooth);
position: relative;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
} .ach-card::before {
content: '';
position: absolute;
top: 50%;
width: 40px;
height: 1px;
background: linear-gradient(90deg, var(--accent-blue), transparent);
}
.side-left .ach-card::before {
right: -40px;
}
.side-right .ach-card::before {
left: -40px;
background: linear-gradient(-90deg, var(--accent-blue), transparent);
}
.ach-card:hover {
transform: translateY(-5px);
border-color: var(--accent-blue);
background: rgba(21, 21, 24, 0.9);
box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
.ach-value {
font-size: clamp(24px, 2.5vw, 42px);
font-weight: 800;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
display: inline-block;
margin-bottom: 0.5vh;
letter-spacing: -1px;
}
.ach-label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
opacity: 0.6;
line-height: 1.4;
} .ach-center {
position: relative;
width: 16vw;
max-width: 450px;
display: flex;
justify-content: center;
align-items: center;
}
.trophy-image {
width: 100%;
height: auto;
filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.4));
z-index: 2;
}
.trophy-glow {
position: absolute;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
filter: blur(50px);
animation: trophy-pulse 4s ease-in-out infinite;
}
@keyframes trophy-pulse {
0%,
100% {
transform: scale(1);
opacity: 0.5;
}
50% {
transform: scale(1.4);
opacity: 0.8;
}
}
.stat-label {
text-transform: uppercase;
font-size: 13px;
font-weight: 700;
letter-spacing: 2px;
opacity: 0.5;
color: var(--text-color);
} .superpowers {
padding: 150px 0;
position: relative;
overflow: hidden;
}
.section-header {
text-align: center;
margin: 0 auto 3vh;
}
.section-description {
font-size: 18px;
opacity: 0.6;
margin-top: 20px;
}
.powers-container {
position: relative;
padding-top: 50px;
}
.scroll-curve-svg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
opacity: 0.8; pointer-events: none;
}
#drawing-path {
stroke-dasharray: 2500;
stroke-dashoffset: 2500;
}
.power-item {
display: flex;
align-items: center;
justify-content: space-between;
gap: 80px;
margin-bottom: 250px; }
.power-item.alternate {
flex-direction: row-reverse;
}
.power-content {
flex: 1;
}
.power-image {
flex: 1.2;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.power-image img {
width: 100%;
display: block;
transition: transform 0.8s ease;
}
.power-item:hover .power-image img {
transform: scale(1.05);
}
.power-tag {
font-size: 12px;
text-transform: uppercase;
color: var(--accent-color);
font-weight: 700;
letter-spacing: 2px;
margin-bottom: 15px;
display: inline-block;
}
.power-title {
font-size: 60px;
line-height: 1.1;
margin-bottom: 25px;
font-weight: 800;
}
.power-text {
font-size: 20px;
opacity: 0.7;
max-width: 500px;
}
.powers-footer {
display: flex;
justify-content: center;
margin-top: -100px; position: relative;
z-index: 10;
padding-bottom: 40px;
} .clients {
padding: 100px 0;
position: relative;
z-index: 5;
background: var(--bg-color);
width: 100vw;
margin-left: calc(-50vw + 50%);
overflow: hidden;
}
.marquee-container {
width: 100%;
display: flex;
flex-direction: column;
gap: 40px;
margin-top: 50px;
}
.marquee-row {
width: 100%;
overflow: hidden;
position: relative;
white-space: nowrap;
} .marquee-row::before,
.marquee-row::after {
content: '';
position: absolute;
top: 0;
width: 15vw;
height: 100%;
z-index: 2;
pointer-events: none;
}
.marquee-row::before {
left: 0;
background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}
.marquee-row::after {
right: 0;
background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}
.marquee-track {
display: flex;
width: max-content;
align-items: center;
gap: 80px;
padding-right: 80px; } .marquee-left .marquee-track {
animation: scroll-left 45s linear infinite;
} .marquee-right .marquee-track {
animation: scroll-right 45s linear infinite;
}
@keyframes scroll-left {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
} }
@keyframes scroll-right {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0);
}
} .marquee-row:hover .marquee-track {
animation-play-state: paused;
}
.client-logo {
display: flex;
justify-content: center;
align-items: center;
width: 200px;
height: 100px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 16px;
padding: 2px;
transition: var(--transition-smooth);
}
.client-logo img {
max-width: 100%;
max-height: 100%;
opacity: 0.7;
filter: grayscale(100%) brightness(100%); transition: var(--transition-smooth);
} .client-logo:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(59, 130, 246, 0.3);
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.client-logo:hover img {
opacity: 1;
filter: grayscale(0) brightness(100%);
transform: scale(1.05);
} .testimonials {
padding: 120px 0;
position: relative;
z-index: 5;
background: transparent;
}
.testimonial-container {
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
max-width: 1400px;
margin: 60px auto 0;
padding: 0 10px;
}
.quote-icon {
flex-shrink: 0;
opacity: 0.8;
}
.testimonial-slider-wrapper {
flex: 1;
max-width: 800px;
overflow: hidden;
position: relative;
}
.testimonial-slider {
display: flex;
transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.testimonial-slide {
min-width: 100%;
opacity: 0.4;
transform: scale(0.95);
transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
padding: 0 20px;
}
.testimonial-slide.active {
opacity: 1;
transform: scale(1);
}
.testimonial-text {
font-size: clamp(20px, 2vw, 28px);
line-height: 1.6;
color: rgba(255, 255, 255, 0.6);
margin-bottom: 30px;
}
.testimonial-text .text-white {
color: #fff;
font-weight: 600;
}
.testimonial-author {
font-size: 16px;
color: var(--accent-blue);
font-weight: 700;
letter-spacing: 1px;
}
.testimonial-controls {
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 30px;
padding: 0 20px;
}
.testi-dots {
display: flex;
gap: 12px;
}
.testi-dots .dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
cursor: pointer;
transition: var(--transition-smooth);
}
.testi-dots .dot.active {
background: var(--accent-blue);
transform: scale(1.3);
} .our-works {
height: 100vh;
background: #0c0c0e;
overflow: hidden;
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding-top: 170px !important;
}
.works-header {
text-align: center;
position: absolute;
top: 100px; left: 0;
right: 0;
z-index: 5;
margin: 0;
}
.horizontal-scroller {
width: 100%;
padding: 40px 0;
}
.works-track {
display: flex;
gap: 80px;
padding: 0 calc(50vw - 250px); width: max-content;
}
.work-card {
flex: 0 0 500px;
height: 350px;
border-radius: 24px;
overflow: hidden;
background: #151518;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
transition: var(--transition-smooth);
}
.work-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.work-card.tilted-1 {
transform: rotate(-4deg) translateY(30px);
}
.work-card.tilted-2 {
transform: rotate(3deg) translateY(-30px);
}
.work-card:hover {
transform: scale(1.05) rotate(0deg) translateY(0);
z-index: 5;
border-color: var(--accent-color);
}
.view-all-card {
background: linear-gradient(135deg, rgba(21, 21, 24, 1) 0%, rgba(12, 12, 14, 1) 100%);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
border: 2px dashed rgba(59, 130, 246, 0.3);
}
.view-all-content h3 {
font-size: 32px;
margin-bottom: 15px;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.view-all-content p {
font-size: 16px;
opacity: 0.6;
margin-bottom: 25px;
max-width: 250px;
} .industries {
padding: 150px 0;
background: #000;
}
.industries-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 100px;
align-items: start;
}
.industry-visual-container {
position: sticky;
top: 15vh;
height: auto;
aspect-ratio: 1 / 1;
max-height: 75vh;
width: 100%;
border-radius: 40px;
overflow: hidden;
background: #111;
border: 1px solid rgba(255, 255, 255, 0.05);
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}
.industry-visual-container video,
.industry-visual-container img {
width: 100%;
height: 100%; object-position: top center;
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
z-index: 1;
}
.visual-glow {
position: absolute;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
width: 80%;
height: 40px;
background: var(--accent-color);
filter: blur(60px);
opacity: 0.3;
}
.industry-list {
position: relative;
padding-left: 40px;
}
.industry-list::before {
content: '';
position: absolute;
left: 65px;
top: 0;
bottom: 0;
width: 1px;
background: rgba(255, 255, 255, 0.1);
}
.industry-item {
display: flex;
gap: 30px;
padding: 60px 0;
opacity: 0.3;
transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
cursor: pointer;
position: relative;
}
.industry-item.active {
opacity: 1;
transform: translateX(10px);
}
.industry-num {
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
background: #000;
font-size: 14px;
font-weight: 600;
z-index: 2;
transition: 0.4s;
}
.industry-item.active .industry-num {
border-color: var(--accent-light);
color: var(--accent-light);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}
.industry-info h3 {
font-size: 32px;
margin-bottom: 12px;
transition: 0.4s;
}
.industry-item.active h3 {
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.industry-info p {
font-size: 18px;
opacity: 0.6;
max-width: 400px;
} .portfolio {
padding: 120px 0;
background: #08080a;
text-align: center;
}
.section-title {
font-size: clamp(48px, 8vw, 110px);
line-height: 0.9;
font-weight: 800;
margin-bottom: 20px;
}
.section-subtitle {
font-size: 18px;
opacity: 0.6;
margin-bottom: 80px;
}
.portfolio-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.portfolio-item {
position: relative;
border-radius: 12px;
overflow: hidden;
height: 500px;
}
.portfolio-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s ease;
}
.portfolio-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 40px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
transform: translateY(20px);
opacity: 0;
transition: var(--transition-smooth);
}
.portfolio-item:hover img {
transform: scale(1.1);
}
.portfolio-item:hover .portfolio-overlay {
transform: translateY(0);
opacity: 1;
} .careers {
padding: 200px 0;
text-align: center;
background: linear-gradient(var(--bg-color), #121215);
}
.careers-content {
max-width: 800px;
margin: 0 auto;
}
.careers-content p {
font-size: 22px;
margin: 30px 0 50px;
opacity: 0.7;
}
.cta-outline {
display: inline-block;
padding: 18px 40px;
border: 2px solid var(--accent-color);
color: var(--accent-color);
font-weight: 700;
border-radius: 5px;
text-transform: uppercase;
}
.cta-outline:hover {
background-color: var(--accent-color);
color: white;
} footer {
padding: 100px 0 50px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
text-align: center;
}
.footer-nav {
display: flex;
justify-content: center;
gap: 30px;
margin: 40px 0;
font-size: 14px;
opacity: 0.6;
}
.copyright {
font-size: 13px;
opacity: 0.4;
}
.social-icons svg {
width: 18px;
height: 18px;
}
.social-icons a:hover {
background: rgba(77, 190, 241, 0.15);
color: #5ac4f0;
border-color: rgba(90, 196, 240, 0.75);
transform: translateY(-3px);
}
.visit-info li {
display: flex;
align-items: flex-start;
gap: 15px;
}
.visit-info li svg {
width: 22px;
height: 22px;
color: #4dbef1;
flex-shrink: 0;
margin-top: 1px;
}
.visit-info span {
font-size: 15.5px;
color: rgba(255, 255, 255, 0.92);
line-height: 1.55;
}
.footer-links ul,
.footer-services ul,
.visit-info {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
.footer-links ul {
gap: 24px;
}
.footer-services ul {
gap: 14px;
}
.footer-links a {
color: #fff;
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #5ac4f0;
}
.footer-services li {
position: relative;
padding-left: 24px;
color: rgba(255, 255, 255, 0.92);
font-size: 15.5px;
line-height: 1.35;
}
.footer-services li::before {
content: "";
position: absolute;
left: 1px;
top: 0.42em;
width: 10px;
height: 5px;
border-left: 3px solid #4dbef1;
border-bottom: 3px solid #4dbef1;
transform: rotate(-45deg);
}
.visit-info {
gap: 22px;
}
.social-icons {
display: flex;
gap: 12px;
margin-top: 24px;
}
.social-icons a {
color: #fff;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.24);
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.social-icons svg {
width: 18px;
height: 18px;
}
.social-icons a:hover {
background: rgba(77, 190, 241, 0.15);
color: #5ac4f0;
border-color: rgba(90, 196, 240, 0.75);
transform: translateY(-3px);
} .who-we-are {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0;
position: relative;
z-index: 5;
background: transparent;
overflow: hidden;
}
.who-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2vh;
margin-top: 2vh;
}
.who-card {
background: rgba(255, 255, 255, 0.02);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.05);
padding: 3vh 2vw;
border-radius: 30px;
transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
position: relative;
overflow: hidden;
}
.who-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.1), transparent);
opacity: 0;
transition: 0.5s;
}
.who-card:hover {
transform: translateY(-10px);
border-color: rgba(99, 102, 241, 0.3);
background: rgba(255, 255, 255, 0.04);
}
.who-card:hover::before {
opacity: 1;
}
.who-icon {
font-size: 14px;
font-weight: 700;
color: #6366f1;
margin-bottom: 10px;
width: 45px;
height: 45px;
border: 1px solid rgba(99, 102, 241, 0.3);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(99, 102, 241, 0.05);
}
.who-card h3 {
font-size: 24px;
margin-bottom: 15px;
}
.who-card p {
font-size: 16px;
line-height: 1.6;
opacity: 0.6;
} .contact-section {
padding: 120px 0;
position: relative;
z-index: 5;
background: transparent;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-top: 60px;
}
.contact-left {
display: flex;
flex-direction: column;
gap: 20px;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.form-input,
.form-textarea {
width: 100%;
padding: 16px 20px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
color: #fff;
font-family: inherit;
font-size: 16px;
outline: none;
transition: var(--transition-smooth);
}
.form-input::placeholder,
.form-textarea::placeholder {
color: rgba(255, 255, 255, 0.3);
}
.form-input:focus,
.form-textarea:focus {
border-color: var(--accent-blue);
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}
.form-textarea {
resize: vertical;
min-height: 120px;
}
.submit-btn {
background: var(--accent-blue);
color: #fff;
padding: 16px 40px;
border: none;
border-radius: 30px;
font-weight: 700;
font-size: 16px;
cursor: pointer;
transition: var(--transition-smooth);
width: max-content;
margin-top: 10px;
}
.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(59, 130, 246, 0.4);
background: #2563eb;
}
.contact-info-blocks {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
padding: 0 0 30px 0;
}
.info-item {
display: flex;
align-items: flex-start;
gap: 15px;
}
.info-item.full-width {
grid-column: span 2;
padding-top: 10px;
border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.info-icon {
color: var(--accent-blue);
width: 24px;
height: 24px;
flex-shrink: 0;
}
.info-text h4 {
font-size: 12px;
color: var(--accent-blue);
margin-bottom: 5px;
font-weight: 800;
letter-spacing: 1px;
}
.info-text p {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.6;
}
.contact-right {
display: flex;
flex-direction: column;
gap: 20px;
justify-content: center;
}
.map-container {
width: 100%;
height: 300px;
border-radius: 20px;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.05);
filter: grayscale(100%) invert(90%) hue-rotate(180deg);
transition: filter 0.5s ease;
}
.map-container:hover {
filter: grayscale(0) invert(0) hue-rotate(0deg);
}   .main-content {
position: relative;
z-index: 2;
background: var(--bg-color);
box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8); }
.footer-reveal-container {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 1; }   .site-footer {
background: #001b2e;
background: linear-gradient(190deg, rgba(0, 27, 46, 1) 0%, rgba(0, 0, 0, 1) 100%);
color: #fff;
padding: clamp(58px, 7vw, 86px) 0 clamp(54px, 6vw, 74px);
position: relative;
overflow: hidden;
text-align:left;
}
.site-footer .container {
width: min(100% - 48px, 1360px);
margin: 0 auto;
}
.footer-col.footer-brand {
text-align: left;
}
.footer-grid {
display: grid;
grid-template-columns: minmax(280px, 1.45fr) minmax(130px, 0.75fr) minmax(280px, 1fr) minmax(290px, 1.15fr);
gap: 40px;
position: relative;
z-index: 2; padding-bottom: 80px;
}
.footer-col h4 {
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 25px;
font-weight: 600;
text-align: left;
} .footer-logo {
display: block;
width: min(260px, 78%);
height: auto;
margin-bottom: 34px;
}
.footer-brand p {
font-size: 14px;
line-height: 1.6;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 25px;
text-align: left;
}
.footer-col.footer-links {
text-align: left;
}
.social-icons {
display: flex;
gap: 15px;
}
.social-icons a {
color: #fff;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.2);
width: 35px;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: var(--transition-smooth);
}
.social-icons a:hover {
background: #fff;
color: #021a2b;
border-color: #fff;
transform: translateY(-3px);
} .visit-info {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
gap: 20px;
}
.visit-info li {
display: flex;
align-items: flex-start;
gap: 15px;
}
.visit-info li svg {
color: #06b6d4; flex-shrink: 0;
margin-top: 2px;
}
.visit-info span {
font-size: 14px;
color: rgba(255, 255, 255, 0.8);
line-height: 1.5;
text-align: left;
} .footer-links ul {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
gap: 15px;
}
.footer-links a {
color: #fff;
font-size: 14px;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #06b6d4;
} .google-partner {
display: inline-flex;
align-items: center;
gap: 14px;
color: #fff;
text-decoration: none;
font-size: 22px;
line-height: 1;
transition: opacity 0.25s ease, transform 0.25s ease;
cursor:pointer !important;
}
.google-partner:hover {
opacity: 0.82;
transform: translateY(-1px);
}
.google-partner img {
width: 40px;
height: 40px;
object-fit: contain;
}
.footer-links ul,
.footer-services ul,
.visit-info {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
}
.footer-links ul {
gap: 24px;
}
.footer-services ul {
gap: 14px;
}
.footer-links a {
color: #fff;
font-size: 15px;
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #5ac4f0;
}
.footer-services li {
position: relative;
padding-left: 24px;
color: rgba(255, 255, 255, 0.92);
font-size: 15.5px;
line-height: 1.35;
}
.footer-services li::before {
content: "";
position: absolute;
left: 1px;
top: 0.42em;
width: 10px;
height: 5px;
border-left: 3px solid #4dbef1;
border-bottom: 3px solid #4dbef1;
transform: rotate(-45deg);
}
.subscribe-form {
display: flex;
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
padding-bottom: 5px;
}
.subscribe-form input {
background: transparent;
border: none;
color: #fff;
font-size: 14px;
width: 100%;
outline: none;
padding: 5px 0;
}
.visit-info span {
font-size: 15.5px;
color: rgba(255, 255, 255, 0.92);
line-height: 1.55;
text-align: left;
}
.social-icons {
display: flex;
gap: 12px;
margin-top: 24px;
}
.social-icons a {
color: #fff;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.24);
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.social-icons svg {
width: 18px;
height: 18px;
}
.social-icons a:hover {
background: rgba(77, 190, 241, 0.15);
color: #5ac4f0;
border-color: rgba(90, 196, 240, 0.75);
transform: translateY(-3px);
} .globe-arch {
position: absolute;
bottom: -50px;
left: 0;
width: 100%;
height: 300px;
pointer-events: none;
z-index: 1;
opacity: 0.7;
}
.globe-arch svg {
width: 100%;
height: 100%;
display: block;
} .footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.05);
padding: 20px 0;
text-align: center;
position: relative;
z-index: 2;
}
.footer-bottom p {
font-size: 13px;
color: rgba(255, 255, 255, 0.5);
margin: 0;
} .tools-expertise {
position: relative;
padding: clamp(60px, 8vh, 120px) 0 0 0;
overflow: hidden;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.tools-physics-container {
position: relative;
width: 100%;
height: 75vh;
min-height: 700px;
margin-top: clamp(20px, 4vh, 50px);
border-top: 0px solid rgba(255, 255, 255, 0.05);
border-bottom: 5px solid rgb(0, 33, 173);
cursor: grab;
background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.03) 0%, transparent 80%);
}
.tools-physics-container:active {
cursor: grabbing;
}
.tools-physics-overlay {
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 12px;
text-transform: uppercase;
letter-spacing: 2px;
color: rgba(255, 255, 255, 0.4);
pointer-events: none;
z-index: 10;
}
#tools-canvas {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: auto;
}
#physics-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
pointer-events: none;
}
.tool-node {
position: absolute;
top: -100px;
left: -100px;
padding: clamp(10px, 0.5vw, 20px) clamp(10px, 0.5vw, 20px);
background: rgba(6, 95, 212, 0.12);
border: 1px solid rgba(30, 108, 253, 0.4);
border-radius: 50px;
color: #0c9ee2;
font-size: clamp(14px, 1.1vw, 22px);
font-weight: 500;
white-space: nowrap;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 0 12px rgba(6, 182, 212, 0.2);
cursor: grab;
user-select: none;
transform: translate(-50%, -50%);
will-change: transform;
pointer-events: auto;
transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.1s;
}
.tool-node:hover {
box-shadow: 0 0 30px rgba(6, 182, 212, 0.6), inset 0 0 20px rgba(6, 182, 212, 0.5);
border-color: rgba(6, 182, 212, 0.9);
background: rgba(6, 182, 212, 0.25);
z-index: 10;
}
.tool-node:active {
cursor: grabbing;
} .tools-lab {
position: relative;
padding: clamp(20px, 3vh, 40px) 0;
overflow: hidden;
background:
radial-gradient(circle at 50% 45%, rgba(14, 165, 233, 0.13), transparent 34%),
linear-gradient(180deg, rgba(3, 7, 18, 0) 0%, rgba(2, 8, 23, 0.58) 100%);
}
@media (min-width: 1201px) {
.tools-lab {
height: 100vh;
min-height: 550px;
display: flex;
align-items: center;
box-sizing: border-box;
}
.tools-lab-grid {
height: clamp(480px, 75vh, 580px);
min-height: 0;
}
}
.tools-lab-grid {
display: grid;
grid-template-columns: minmax(280px, 1.25fr) minmax(280px, 0.95fr) minmax(300px, 1.15fr);
gap: clamp(12px, 1.2vw, 18px);
width: 100%;
}
.lab-panel {
position: relative;
border: 1px solid rgba(14, 165, 233, 0.26);
border-radius: 8px;
background:
linear-gradient(145deg, rgba(8, 17, 34, 0.86), rgba(2, 6, 23, 0.72)),
radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.11), transparent 44%);
box-shadow: inset 0 0 35px rgba(14, 165, 233, 0.06), 0 22px 55px rgba(0, 0, 0, 0.28);
padding: clamp(12px, 1.2vh, 18px);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-sizing: border-box;
height: 100%;
display: flex;
flex-direction: column;
}
.lab-toolbox {
display: flex;
flex-direction: column;
}
.lab-panel-heading {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 10px;
margin-bottom: clamp(10px, 1.2vh, 16px);
}
.lab-step {
display: grid;
place-items: center;
flex: 0 0 auto;
width: 20px;
height: 20px;
border-radius: 999px;
background: linear-gradient(135deg, #38bdf8, #2563eb);
color: #eff6ff;
font-size: 11px;
font-weight: 800;
box-shadow: 0 0 12px rgba(14, 165, 233, 0.62);
}
.lab-panel-heading h3 {
margin: 0 0 3px;
color: #f8fafc;
font-size: clamp(15px, 1.1vw, 18px);
line-height: 1.1;
}
.lab-panel-heading p {
margin: 0;
color: rgba(226, 232, 240, 0.72);
font-size: clamp(11px, 0.75vw, 13px);
line-height: 1.3;
}
.lab-tool-list {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: clamp(6px, 0.8vh, 8px);
align-content: start;
flex-grow: 1;
}
.lab-tool-pill {
display: flex;
align-items: center;
justify-content: center;
min-height: clamp(32px, 3.8vh, 36px);
width: 100%;
padding: clamp(6px, 0.8vh, 8px) clamp(8px, 0.9vw, 12px);
border: 1px solid rgba(59, 130, 246, 0.32);
border-radius: 999px;
background: linear-gradient(145deg, rgba(8, 20, 38, 0.94), rgba(2, 8, 23, 0.82));
color: #dbeafe;
font: inherit;
font-size: clamp(10.5px, 0.7vw, 12.5px);
font-weight: 700;
line-height: 1.1;
text-align: center;
cursor: grab !important;
user-select: none;
touch-action: none;
box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.04);
transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lab-tool-pill:hover,
.lab-tool-pill.active {
border-color: rgba(56, 189, 248, 0.9);
background: linear-gradient(145deg, rgba(14, 116, 224, 0.34), rgba(2, 8, 23, 0.88));
color: #38bdf8;
box-shadow: 0 0 22px rgba(14, 165, 233, 0.42), inset 0 0 18px rgba(56, 189, 248, 0.12);
transform: translateY(-1px);
}
.lab-tool-pill.is-in-jar {
opacity: 0;
transform: scale(0.92);
pointer-events: none;
}
.lab-tool-pill:active {
cursor: grabbing !important;
}
.lab-tool-pill.dragging-source {
opacity: 0.42;
}
.lab-detail-icon,
.lab-jar-selected {
display: grid;
place-items: center;
flex: 0 0 auto;
color: #e0f2fe;
background: radial-gradient(circle at 30% 20%, #38bdf8, #2563eb 55%, #082f49);
box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
font-weight: 800;
}
.lab-reset-button {
align-self: center;
margin-top: 10px;
min-width: 100px;
padding: 8px 16px;
border: 1px solid rgba(56, 189, 248, 0.7);
border-radius: 999px;
background: rgba(2, 8, 23, 0.9);
color: #38bdf8;
font: inherit;
font-size: 12.5px;
font-weight: 800;
letter-spacing: 0.02em;
box-shadow: 0 0 15px rgba(14, 165, 233, 0.2), inset 0 0 12px rgba(14, 165, 233, 0.06);
transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.lab-reset-button:hover {
background: rgba(14, 116, 224, 0.18);
box-shadow: 0 0 30px rgba(14, 165, 233, 0.42), inset 0 0 16px rgba(14, 165, 233, 0.14);
transform: translateY(-1px);
}
.lab-drop-panel {
display: flex;
flex-direction: column;
align-items: center;
}
.lab-jar-zone {
position: relative;
display: grid;
place-items: center;
flex: 1;
width: 100%;
min-height: 0;
height: 100%;
}
.lab-jar-zone.is-hovered .lab-jar {
filter: drop-shadow(0 0 58px rgba(56, 189, 248, 0.66));
}
.lab-drop-line {
position: absolute;
top: 0;
left: 12%;
width: 58%;
height: 35%;
border-top: 1px dashed rgba(14, 165, 233, 0.78);
border-right: 1px dashed rgba(14, 165, 233, 0.78);
border-radius: 0 120px 0 0;
pointer-events: none;
}
.lab-drop-line::after {
content: "";
position: absolute;
right: -5px;
bottom: -1px;
width: 9px;
height: 9px;
border-right: 2px solid #38bdf8;
border-bottom: 2px solid #38bdf8;
transform: rotate(45deg);
filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.9));
}
.lab-jar {
position: relative;
width: clamp(200px, 23vh, 270px);
aspect-ratio: 0.78;
display: grid;
place-items: center;
filter: drop-shadow(0 0 36px rgba(56, 189, 248, 0.34));
}
.lab-jar-rim,
.lab-jar-base {
position: absolute;
left: 10%;
width: 80%;
height: 12%;
border: 2px solid rgba(186, 230, 253, 0.78);
border-radius: 50%;
background: linear-gradient(180deg, rgba(186, 230, 253, 0.2), rgba(14, 165, 233, 0.04));
box-shadow: inset 0 0 20px rgba(186, 230, 253, 0.32), 0 0 20px rgba(56, 189, 248, 0.2);
}
.lab-jar-rim {
top: 10%;
z-index: 4;
}
.lab-jar-base {
bottom: 10%;
opacity: 0.7;
}
.lab-jar-glass {
position: absolute;
top: 14%;
bottom: 12%;
left: 14%;
right: 14%;
display: grid;
place-items: center;
border: 2px solid rgba(186, 230, 253, 0.55);
border-radius: 18% 18% 28% 28% / 11% 11% 18% 18%;
background:
radial-gradient(circle at 50% 48%, rgba(14, 165, 233, 0.18), transparent 38%),
linear-gradient(90deg, rgba(186, 230, 253, 0.22), rgba(8, 47, 73, 0.08) 20%, rgba(8, 47, 73, 0.14) 80%, rgba(186, 230, 253, 0.22));
box-shadow: inset 15px 0 20px rgba(186, 230, 253, 0.16), inset -15px 0 20px rgba(56, 189, 248, 0.1), 0 0 38px rgba(14, 165, 233, 0.2);
overflow: hidden;
}
.lab-jar-glass::before {
content: "";
position: absolute;
inset: 10% 14% auto auto;
width: 18%;
height: 70%;
border-radius: 999px;
background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
opacity: 0.52;
}
.lab-bubbles {
position: absolute;
inset: 12% 12% 12%;
z-index: 1;
pointer-events: none;
opacity: 0.82;
}
.lab-bubbles span {
position: absolute;
bottom: -16px;
width: var(--bubble-size, 8px);
height: var(--bubble-size, 8px);
left: var(--bubble-left, 50%);
border: 1px solid rgba(186, 230, 253, 0.74);
border-radius: 50%;
background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), rgba(56, 189, 248, 0.22) 45%, transparent 72%);
box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
animation: labBubbleRise var(--bubble-speed, 4s) ease-in infinite;
animation-delay: var(--bubble-delay, 0s);
}
.lab-bubbles span:nth-child(1) {
--bubble-left: 16%;
--bubble-size: 7px;
--bubble-speed: 4.8s;
--bubble-delay: -0.8s;
}
.lab-bubbles span:nth-child(2) {
--bubble-left: 32%;
--bubble-size: 11px;
--bubble-speed: 5.7s;
--bubble-delay: -2.2s;
}
.lab-bubbles span:nth-child(3) {
--bubble-left: 49%;
--bubble-size: 6px;
--bubble-speed: 4.2s;
--bubble-delay: -1.4s;
}
.lab-bubbles span:nth-child(4) {
--bubble-left: 63%;
--bubble-size: 13px;
--bubble-speed: 6.1s;
--bubble-delay: -3.4s;
}
.lab-bubbles span:nth-child(5) {
--bubble-left: 76%;
--bubble-size: 8px;
--bubble-speed: 4.9s;
--bubble-delay: -2.8s;
}
.lab-bubbles span:nth-child(6) {
--bubble-left: 88%;
--bubble-size: 5px;
--bubble-speed: 3.9s;
--bubble-delay: -1.9s;
}
.lab-jar.is-ready .lab-bubbles span {
animation-duration: calc(var(--bubble-speed, 4s) * 0.58);
}
.lab-jar-orbit {
position: absolute;
z-index: 1;
width: 70%;
aspect-ratio: 1;
border-radius: 50%;
border: 1px solid rgba(56, 189, 248, 0.22);
background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 70%);
animation: labPulse 3.2s ease-in-out infinite;
}
.lab-jar-selected {
position: relative;
z-index: 2;
width: clamp(70px, 8vh, 100px);
height: clamp(70px, 8vh, 100px);
border-radius: 50%;
font-size: clamp(22px, 2.5vh, 32px);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lab-jar-stack {
position: absolute;
left: 12%;
right: 12%;
bottom: 8%;
z-index: 3;
display: grid;
gap: 5px;
align-content: end;
max-height: 34%;
pointer-events: none;
}
.lab-jar-card {
min-width: 0;
padding: 7px 10px;
border: 1px solid rgba(56, 189, 248, 0.6);
border-radius: 999px;
background: rgba(2, 8, 23, 0.78);
color: #e0f2fe;
font-size: clamp(9px, 0.74vw, 12px);
font-weight: 800;
line-height: 1;
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
box-shadow: 0 0 18px rgba(14, 165, 233, 0.32), inset 0 0 12px rgba(14, 165, 233, 0.12);
animation: labCardDrop 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lab-jar.is-ready {
animation: labJarGlow 0.7s ease;
}
.lab-jar.is-ready .lab-jar-selected {
transform: scale(1.08);
box-shadow: 0 0 36px rgba(56, 189, 248, 0.72), 0 0 80px rgba(37, 99, 235, 0.38);
}
.lab-assurance {
margin: 0;
color: rgba(248, 250, 252, 0.82);
font-size: 13px;
}
.lab-detail-card {
border: 1px solid rgba(59, 130, 246, 0.28);
border-radius: 8px;
background:
radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.14), transparent 38%),
rgba(5, 13, 28, 0.82);
padding: clamp(12px, 1.2vh, 18px);
box-shadow: inset 0 0 32px rgba(14, 165, 233, 0.05), 0 18px 48px rgba(0, 0, 0, 0.28);
height: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
}
.tools-lab:not(.has-detail) .lab-detail-card {
display: grid;
min-height: 260px;
align-content: center;
}
.tools-lab:not(.has-detail) .lab-detail-icon,
.tools-lab:not(.has-detail) .lab-detail-groups {
display: none;
}
.tools-lab:not(.has-detail) .lab-detail-top {
justify-content: center;
text-align: center;
margin-bottom: 14px;
}
.tools-lab:not(.has-detail) .lab-detail-description {
max-width: 340px;
margin: 0 auto;
text-align: center;
}
.lab-detail-close {
display: none;
margin-left: auto;
width: 34px;
height: 34px;
border: 1px solid rgba(56, 189, 248, 0.34);
border-radius: 50%;
background: rgba(2, 8, 23, 0.72);
color: #e0f2fe;
font-size: 24px;
line-height: 1;
}
body.tools-lab-popup-open {
overflow: hidden;
}
.lab-detail-top {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: clamp(10px, 1vh, 16px);
}
.lab-detail-icon {
width: clamp(38px, 4.5vh, 48px);
height: clamp(38px, 4.5vh, 48px);
border-radius: 12px;
font-size: clamp(14px, 1.8vh, 18px);
}
.lab-detail-top h3 {
margin: 0 0 3px;
color: #f8fafc;
font-size: clamp(16px, 1.1vw, 20px);
}
.lab-detail-top p,
.lab-detail-description {
margin: 0;
color: rgba(226, 232, 240, 0.76);
line-height: 1.45;
}
.lab-detail-description {
font-size: clamp(11.5px, 0.8vw, 13px);
margin-bottom: clamp(12px, 1.4vh, 20px);
}
.lab-detail-groups {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: clamp(10px, 1.2vh, 16px) clamp(12px, 1.2vw, 20px);
align-content: start;
}
.lab-detail-groups h4 {
margin: 0 0 6px;
color: #38bdf8;
font-size: clamp(12px, 0.85vw, 13.5px);
}
.lab-detail-groups ul {
list-style: none;
padding: 0;
margin: 0;
}
.lab-detail-groups li {
position: relative;
padding-left: 14px;
color: rgba(226, 232, 240, 0.82);
font-size: clamp(11px, 0.78vw, 12px);
line-height: 1.5;
}
.lab-detail-groups li::before {
content: "";
position: absolute;
top: 0.65em;
left: 0;
width: 6px;
height: 2.5px;
border-left: 1px solid #bae6fd;
border-bottom: 1px solid #bae6fd;
transform: rotate(-45deg);
}
.lab-drag-ghost {
position: fixed;
z-index: 9999;
pointer-events: none;
width: max-content;
max-width: 220px;
opacity: 0.96;
transform: translate(-50%, -50%) scale(1.04);
box-shadow: 0 0 34px rgba(56, 189, 248, 0.64), inset 0 0 18px rgba(56, 189, 248, 0.15);
}
.lab-drag-ghost.is-returning {
transition: left 0.22s ease, top 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
opacity: 0;
transform: translate(-50%, -50%) scale(0.82);
}
@keyframes labPulse {
0%, 100% {
transform: scale(0.92);
opacity: 0.72;
}
50% {
transform: scale(1.06);
opacity: 1;
}
}
@keyframes labJarGlow {
0% {
filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.3));
}
45% {
filter: drop-shadow(0 0 54px rgba(56, 189, 248, 0.78));
}
100% {
filter: drop-shadow(0 0 36px rgba(56, 189, 248, 0.34));
}
}
@keyframes labCardDrop {
from {
opacity: 0;
transform: translateY(-24px) scale(0.88);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
@keyframes labBubbleRise {
0% {
opacity: 0;
transform: translate3d(0, 0, 0) scale(0.5);
}
18% {
opacity: 0.9;
}
72% {
opacity: 0.75;
}
100% {
opacity: 0;
transform: translate3d(var(--bubble-drift, 10px), -210px, 0) scale(1.24);
}
}  @media (max-width: 1400px) {
.container {
max-width: 1200px;
}
.ach-card {
width: 220px;
padding: 20px 15px;
}
.ach-value {
font-size: 32px;
}
.ach-center {
width: 350px;
}
.trophy-wrapper {
gap: 20px;
}
} @media (max-width: 1200px) {
.footer-grid {
grid-template-columns: 1.3fr 0.8fr;
gap: 48px 70px;
}
.tools-lab-grid {
grid-template-columns: 1fr 1fr;
min-height: auto;
}
.lab-details {
grid-column: 1 / -1;
}
.lab-tool-list {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-title {
font-size: 80px;
}
.power-title {
font-size: 50px;
}
.industry-list {
padding-left: 20px;
}
} @media (max-width: 1024px) { .visual-wrapper {
position: absolute !important;
top: 0;
left: 0;
width: 100%;
height: 500dvh; z-index: 2;
}
.hero-visual {
position: sticky !important;
top: 0;
width: 100%;
height: 100vh;
height: 100dvh;
z-index: 2;
background: var(--bg-color);
}
#interactive-canvas {
width: 100%;
height: 100%;
touch-action: none;
} .hero,
.innovation,
.impact {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding-top: 0;
z-index: 3;
}
.hero-container,
.innovation-container,
.impact-container {
width: 100%;
flex-direction: column;
justify-content: flex-end;
align-items: center;
padding-bottom: 30px;
}
.hero-content,
.innovation-content,
.impact-content {
max-width: 90%;
text-align: center;
margin: 0 !important;
pointer-events: all;
}
.hero-title {
font-size: clamp(40px, 8vw, 60px);
} .power-item,
.power-item.alternate {
flex-direction: column !important;
text-align: center;
gap: 40px;
margin-bottom: 150px;
}
.power-image {
order: -1 !important;
width: 100%;
max-width: 600px;
margin: 0 auto;
}
.power-text {
margin: 0 auto;
} .who-we-are,
.achievements {
height: 100dvh !important;
padding: 60px 0 60px;
display: flex;
flex-direction: column;
justify-content: center;
overflow: hidden !important;
position: relative;
}
.who-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
} .trophy-wrapper {
grid-template-columns: 1fr;
gap: 10px;
height: auto;
}
.ach-center {
order: -1;
width: 100px;
margin: 0 auto 10px;
}
.ach-side {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
width: 100%;
}
.ach-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
width: 100%;
}
.ach-column.offset {
padding: 0;
}
.ach-card {
width: 100%;
padding: 8px 5px;
}
.ach-card::before {
display: none;
}
.ach-value {
font-size: 20px;
}
.ach-label {
font-size: 8px;
}
} @media (max-width: 992px) { header {
width: 95%;
top: 15px;
}
nav {
padding: 0 20px;
}
.hamburger {
display: flex;
}
.nav-links {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: rgba(12, 12, 14, 0.98);
backdrop-filter: blur(25px);
flex-direction: column;
padding: 40px 0;
border-radius: 20px;
opacity: 0;
visibility: hidden;
transform: translateY(-20px);
transition: var(--transition-smooth);
border: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 15px;
align-items: center;
gap: 30px;
}
.nav-links.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-links a {
font-size: 20px;
} .industries-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.industry-visual-container {
position: sticky;
top: 80px; z-index: 5;
aspect-ratio: 16/9;
margin-bottom: 0;
border-radius: 20px;
}
.industry-list {
padding: 40px 0;
margin-top: 0;
}
.industry-visual-container {
position: sticky;
top: 80px; z-index: 10;
aspect-ratio: 16/9;
margin-bottom: 20px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
background: #111;
overflow: hidden;
}
.industry-list {
padding: 0;
margin-top: 20px;
}
.industry-item {
padding: 40px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
position: relative;
z-index: 1;
}
.industry-item:last-child {
border-bottom: none;
}
.industry-info h3 {
font-size: 24px;
}
.industry-info p {
font-size: 15px;
max-width: 100%;
} .contact-grid {
grid-template-columns: 1fr;
gap: 50px;
}
.contact-right {
min-height: 350px;
} .portfolio-grid {
grid-template-columns: repeat(2, 1fr);
gap: 20px;
} .testimonial-container {
flex-direction: column;
gap: 30px;
}
.quote-icon svg {
width: 60px;
height: 60px;
}
.testimonial-text {
font-size: 20px;
text-align: center;
}
.testimonial-author {
text-align: center;
}
.testimonial-controls {
justify-content: center;
}
} @media (max-width: 768px) {
:root {
--container-padding: 20px;
}
.tools-lab {
padding: 42px 0 64px;
}
.tools-lab-grid {
grid-template-columns: 1fr;
gap: 14px;
}
.lab-panel {
padding: 16px;
}
.lab-toolbox {
min-height: 0;
}
.lab-panel-heading {
justify-content: flex-start;
margin-bottom: 16px;
}
.lab-tool-list {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 8px;
}
.lab-tool-pill {
min-height: 42px;
padding: 10px 12px;
}
.lab-reset-button {
display: none;
}
.lab-drop-panel {
display: none;
}
.lab-jar-zone {
min-height: 310px;
}
.lab-drop-line {
left: 16%;
width: 50%;
height: 27%;
}
.lab-detail-groups {
grid-template-columns: 1fr 1fr;
gap: 18px;
}
.lab-details {
position: fixed;
inset: 0;
z-index: 990;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 100svh;
padding: calc(env(safe-area-inset-top, 0px) + 78px) 18px calc(env(safe-area-inset-bottom, 0px) + 88px);
border: 0;
border-radius: 0;
background: rgba(2, 6, 23, 0.78);
overflow: hidden;
overscroll-behavior: contain;
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: opacity 0.24s ease, visibility 0.24s ease;
}
.tools-lab.detail-open .lab-details {
opacity: 1;
visibility: visible;
pointer-events: auto;
}
.lab-details .lab-panel-heading,
.lab-detail-card {
width: min(100%, 560px);
margin-left: auto;
margin-right: auto;
}
.lab-details .lab-panel-heading {
flex: 0 0 auto;
align-items: center;
padding: 0 2px;
margin-bottom: 12px;
}
.lab-detail-card {
flex: 1 1 auto;
min-height: 0;
max-height: none;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.lab-detail-close {
display: grid;
place-items: center;
}
.section-title {
font-size: clamp(28px, 8vw, 36px); }
.section-description {
font-size: 14px;
margin-top: 10px;
line-height: 1.4;
} .marquee-track {
gap: 40px;
}
.client-logo {
width: 150px;
height: 80px;
} .works-track {
gap: 30px;
padding: 0 20px;
}
.work-card {
flex: 0 0 300px;
height: 250px;
} .footer-grid {
grid-template-columns: 1fr;
gap: 38px;
}
.site-footer {
padding: 46px 0 24px;
}
.globe-arch {
display: block;
left: 50%;
bottom: 22px;
width: 150vw;
height: 230px;
transform: translateX(-50%);
opacity: 0.82;
}
.footer-bottom {
margin-top: 70px;
padding-top: 18px;
}
.footer-logo {
width: min(230px, 82%);
margin-bottom: 24px;
}
.footer-brand p {
margin-bottom: 30px;
}
.footer-links ul,
.footer-services ul {
gap: 13px;
}
.footer-reveal-container {
position: relative;
}
.main-content {
margin-bottom: 0 !important;
} .tool-node {
font-size: 11px; padding: 5px 11px;
}
.tools-physics-container {
height: 65vh;
min-height: 500px;
}
.tools-expertise {
padding-top: clamp(40px, 10vh, 80px);
}
.hero,
.innovation,
.impact,
.who-we-are,
.achievements {
height: 100dvh !important;
overflow: hidden !important;
display: flex;
flex-direction: column;
justify-content: center;
} .innovation-container {
justify-content: flex-end;
padding-bottom: clamp(60px, 15vh, 120px);
}
.innovation-content {
text-align: center;
max-width: 100%;
} .who-grid {
grid-template-columns: repeat(2, 1fr);
gap: 10px;
width: 100%;
}
.who-card {
padding: 10px 8px;
border-radius: 12px;
}
.who-card h3 {
font-size: 13px;
margin-bottom: 3px;
}
.who-card p {
font-size: 10px;
line-height: 1.2;
} .trophy-wrapper {
gap: 10px;
}
.ach-center {
width: 100px;
margin-bottom: 10px;
}
.ach-side {
gap: 8px;
}
.ach-column {
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.ach-column.offset {
padding: 0px;
}
.ach-value {
font-size: 20px;
}
.ach-label {
font-size: 8px;
}
.ach-card {
padding: 8px 5px;
}
.section-header {
margin-bottom: 15px;
}
.section-description {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden; } .testimonial-text {
font-size: 18px;
}
.quote-icon {
opacity: 0.5;
} .portfolio-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.portfolio-item {
height: 300px;
}
.portfolio-overlay {
opacity: 1;
transform: translateY(0);
padding: 20px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.portfolio-overlay h3 {
font-size: 20px;
}
} @media (max-width: 480px) {
.lab-tool-list,
.lab-detail-groups {
grid-template-columns: 1fr;
}
.lab-toolbox {
min-height: 0;
}
.lab-tool-pill {
font-size: 12px;
}
.lab-detail-top {
align-items: flex-start;
gap: 12px;
}
.lab-detail-icon {
width: 48px;
height: 48px;
border-radius: 12px;
}
.lab-jar-zone {
min-height: 280px;
}
.hero-title {
font-size: 42px;
}
.hero-description {
font-size: 16px;
}
.cta-button {
padding: 15px 30px;
width: 100%;
justify-content: center;
}
.stats-grid {
grid-template-columns: 1fr;
}
.power-title {
font-size: 32px;
}
.industry-info h3 {
font-size: 24px;
}
.form-row {
grid-template-columns: 1fr;
}
.tools-physics-container {
height: 80vh;
min-height: 540px; margin-top: 10px;
} .tool-node {
top: -16px;
left: -58px;
} .testimonial-text {
font-size: 16px;
}
.quote-icon {
display: none;
}
.globe-arch {
width: 175vw;
height: 210px;
bottom: 18px;
}
.footer-bottom {
margin-top: 58px;
}
.footer-bottom p {
font-size: 11px;
}
}