: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;
} @media (max-width: 992px) {
nav {
padding: 0 20px;
}
.hamburger {
display: flex;
}
.nav-links {
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: rgba(21, 21, 24, 0.95);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
flex-direction: column;
padding: 30px 0;
border-radius: 20px;
opacity: 0;
visibility: hidden;
transform: translateY(-20px);
transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
border: 1px solid rgba(255, 255, 255, 0.05);
margin-top: 15px;
align-items: center;
gap: 25px;
}
.nav-links.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-links a {
font-size: 18px;
} .hamburger.active span:nth-child(1) {
transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: translateY(-8px) rotate(-45deg);
}
}
.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;
}
} @media (max-width: 1400px) {
.ach-card {
width: 220px;
padding: 20px 15px;
}
.ach-value {
font-size: 32px;
}
.ach-center {
width: 350px;
}
.trophy-wrapper {
gap: 20px;
}
}
@media (max-width: 1100px) {
.trophy-wrapper {
grid-template-columns: 1fr;
height: auto;
padding-top: 100px;
}
.achievements {
height: auto;
padding: 100px 0;
}
.ach-side {
flex-direction: row;
justify-content: center;
width: 100%;
gap: 15px;
}
.ach-column {
flex: 1;
max-width: 260px;
gap: 15px;
}
.ach-card {
width: 100%;
padding: 20px 10px;
}
.ach-column.offset {
padding-top: 0;
}
.ach-center {
order: -1;
width: 280px;
margin-bottom: 50px;
margin: 0 auto;
}
.ach-card::before {
display: none;
}
}
.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);
} @media (max-width: 768px) {
.marquee-container {
gap: 20px;
}
.marquee-track {
gap: 30px;
padding-right: 30px;
}
.client-logo {
width: 140px;
height: 80px;
padding: 15px;
}
.marquee-left .marquee-track {
animation-duration: 20s;
}
.marquee-right .marquee-track {
animation-duration: 20s;
}
} .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);
} @media (max-width: 992px) {
.testimonial-container {
flex-direction: column;
gap: 30px;
text-align: center;
display: block;
}
.quote-icon {
transform: scale(0.6);
}
.right-quote {
display: none;
}
.testimonial-controls {
justify-content: center;
}
} .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;
} @media (max-width: 992px) {
header {
width: 90%;
min-width: unset;
top: 15px;
}
header.scrolled {
top: 10px;
}
nav {
padding: 0 15px;
gap: 15px;
}
.nav-links {
gap: 15px;
}
.nav-links a {
font-size: 12px;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
.stat-number {
font-size: 44px;
}
.power-title {
font-size: 40px;
}
.scroll-curve-svg {
display: block;
opacity: 0.3;
top: 0;
height: 100%;
}
#scroll-path,
#drawing-path {
d: path("M500,0 L500,2800");
stroke-width: 40;
}
.works-header {
top: 80px;
}
.works-track {
gap: 40px;
padding: 0 calc(50vw - 150px);
}
.work-card {
flex: 0 0 300px;
height: 200px;
}
.industries-grid {
grid-template-columns: 1fr;
gap: 0;
}
.industry-visual-container {
position: sticky;
top: 100px;
width: 100%;
margin-left: 0;
height: auto;
aspect-ratio: 16 / 9;
max-height: 50vh;
z-index: 20;
border-radius: 24px;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8),
0 0 20px rgba(59, 130, 246, 0.1);
margin-bottom: 30px;
overflow: hidden;
}
.video-overlay {
display: none;
}
.industry-list {
padding: 50px 20px;
position: relative;
z-index: 5;
}
.industry-list::before {
left: 45px;
}
.industry-num {
width: 40px;
height: 40px;
}
.industry-info h3 {
font-size: 26px;
}
.industry-item {
padding: 40px 0;
}
.who-grid {
grid-template-columns: 1fr;
}
.who-we-are {
padding-top: 180px;
}
.portfolio-grid {
grid-template-columns: 1fr;
}
} @media (max-width: 1024px) { .visual-wrapper {
position: absolute !important;
top: 0;
left: 0;
width: 100%;
height: 800vh;
z-index: 2;
pointer-events: none;
}
.hero-visual {
position: sticky !important;
top: 0;
width: 100%;
height: 100vh;
height: 100dvh;
min-height: 100vh;
opacity: 1 !important;
pointer-events: auto;
overflow: hidden;
z-index: 2;
}
#interactive-canvas {
width: 100%;
height: 100%;
min-height: 100vh;
min-height: 100dvh;
display: block;
touch-action: none;
} .hero-visual::after {
display: none;
} .hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding-top: 0;
padding-bottom: 0;
position: relative;
overflow: visible;
z-index: 3;
}
.hero-container {
width: 100%;
flex-direction: column;
justify-content: flex-end;
align-items: center;
gap: 0;
}
.hero-content {
max-width: 100%;
text-align: center;
padding: 0 24px !important;
margin: 0 !important;
pointer-events: all;
} .innovation {
height: 100vh;
display: flex;
align-items: flex-end; padding-top: 0;
padding-bottom: 80px;
position: relative;
z-index: 3;
}
.innovation-container {
width: 100%;
flex-direction: column;
justify-content: flex-end;
align-items: center;
}
.innovation-content {
max-width: 100%;
text-align: center;
padding: 0 24px;
pointer-events: all;
} .impact {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding-top: 0;
padding-bottom: 0;
position: relative;
z-index: 3;
}
.impact-container {
width: 100%;
flex-direction: column;
justify-content: flex-end;
align-items: center;
}
.impact-content {
max-width: 100%;
text-align: center;
padding: 0 24px;
pointer-events: all;
} .hero-content,
.innovation-content,
.impact-content {
background: transparent !important;
border-radius: 0;
padding: 0 24px !important;
}
.hero-title {
font-size: clamp(36px, 11vw, 60px);
line-height: 1;
margin-bottom: 16px;
}
.hero-description {
font-size: 15px;
margin: 0 auto 28px;
max-width: 100%;
opacity: 0.85;
}
.cta-button {
padding: 14px 32px;
font-size: 13px;
} .power-item,
.power-item.alternate {
flex-direction: column !important; text-align: center;
gap: 30px;
margin-bottom: 100px;
align-items: center;
} .power-image {
order: -1 !important; width: 100%;
flex: none;
max-width: 100%;
rotate: 0deg !important; border-radius: 16px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
0 0 40px rgba(59, 130, 246, 0.15);
}
.power-content {
order: 0;
width: 100%;
flex: none;
}
.power-title {
font-size: 32px;
margin-bottom: 16px;
}
.power-text {
font-size: 16px;
max-width: 100%;
}
.scroll-curve-svg {
opacity: 0.15;
} .section-title {
font-size: clamp(36px, 11vw, 60px);
line-height: 1;
font-weight: 800;
margin-bottom: 16px;
}
.section-description {
font-size: 16px;
} .who-we-are {
padding-top: 65vh; position: relative;
z-index: 5;
}
.who-card {
padding: 40px 24px;
background: rgba(255, 255, 255, 0.05); } .achievements {
position: relative;
z-index: 10;
background: var(--bg-color);
margin-top: -100px; } .superpowers {
position: relative;
z-index: 10;
background: var(--bg-color);
}
} .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;
}
@media (max-width: 992px) {
.who-grid {
grid-template-columns: 1fr;
}
.who-we-are {
height: auto !important;
padding: 100px 20px 80px !important;
display: block !important;
background: var(--bg-color);
position: relative;
z-index: 10;
overflow: visible !important;
}
.who-grid {
grid-template-columns: 1fr;
gap: 30px;
margin-top: 50px;
}
.who-card {
padding: 40px 25px;
}
}
@media (max-width: 580px) {
.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 15px;
}
.stat-card {
padding: 30px 15px;
}
.stat-number {
font-size: 40px;
}
.stat-label {
font-size: 11px;
letter-spacing: 1px;
}
} .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);
} @media (max-width: 992px) {
.contact-grid {
grid-template-columns: 1fr;
gap: 20px;
padding: 0 10px;
}
.contact-right {
min-height: 400px;
}
.form-row {
grid-template-columns: 1fr;
}
}   .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: 80px 10px 5px;
position: relative;
overflow: hidden;
}
.footer-col.footer-brand {
text-align: left;
}
.footer-grid {
display: grid;
grid-template-columns: 1.2fr 1.2fr 0.8fr 1.2fr;
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 {
height: 40px;
margin-bottom: 20px;
}
.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: flex;
align-items: center;
gap: 15px;
margin-bottom: 30px;
background: #fff;
padding: 10px 15px;
border-radius: 8px;
width: max-content;
color: #333;
font-weight: 600;
}
.google-partner img {
height: 30px;
}
.footer-join p {
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
line-height: 1.5;
margin-bottom: 20px;
text-align: left;
}
.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;
}
.subscribe-form input::placeholder {
color: rgba(255, 255, 255, 0.4);
}
.subscribe-form button {
background: transparent;
border: none;
color: #fff;
font-size: 12px;
font-weight: 700;
cursor: pointer;
letter-spacing: 1px;
transition: color 0.3s ease;
}
.subscribe-form button:hover {
color: #06b6d4;
} .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%;
} .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;
} @media (max-width: 992px) {
.footer-grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 768px) {
.footer-grid {
grid-template-columns: 1fr;
}
.footer-reveal-container {
position: relative;
z-index: 1;
}
.main-content {
margin-bottom: 0 !important; }
} .tools-expertise {
position: relative;
padding: 10vh 0 0 0;
overflow: hidden;
height: 100vh;
display: flex;
flex-direction: column;
}
.tools-physics-container {
position: relative;
width: 100%;
flex-grow: 1;
margin-top: 5vh; border-top: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
cursor: grab;
}
.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;
}
@media (max-width: 768px) {
.tools-expertise {
padding: 8vh 0 0 0;
}
}
#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: 20px 40px;
background: rgba(6, 95, 212, 0.12);
border: 1px solid rgba(30, 108, 253, 0.4);
border-radius: 50px;
color: #0c9ee2;
font-size: 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;
}
@media (max-width: 768px) {
.tool-node {
font-size: 16px;
padding: 14px 28px;
}
} .wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-textarea {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
color: #fff;
padding: 14px 18px;
border-radius: 8px;
width: 100%;
font-family: 'Outfit', sans-serif;
font-size: 1rem;
margin-bottom: 16px;
transition: border 0.3s ease;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-email:focus,
.wpcf7-form .wpcf7-textarea:focus {
border-color: #3b82f6;
outline: none;
}
.wpcf7-form input[type="submit"] {
background: linear-gradient(135deg, #6366f1, #3b82f6);
color: #fff;
border: none;
padding: 14px 36px;
border-radius: 50px;
font-family: 'Outfit', sans-serif;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wpcf7-form input[type="submit"]:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(99,102,241,0.4);
}
.wpcf7-not-valid-tip { color: #f87171; font-size: 0.8rem; }
.wpcf7-response-output { 
border-radius: 8px; 
padding: 12px; 
margin-top: 12px; 
font-size: 0.9rem; 
}