*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#0A0F1C;
color:#E6F1FF;
line-height:1.6;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(10,15,28,0.9);
position:fixed;
width:100%;
top:0;
z-index:1000;
}

.logo{
font-family:'Orbitron',sans-serif;
font-size:24px;
font-weight:700;
}

.logo span{
color:#00FF9C;
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:#E6F1FF;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#0e8d00;

}

.cta{
background:#00FF9C;
color:#000;
padding:10px 20px;
border-radius:30px;
}

/* HERO */

.hero{
display:flex;
align-items:center;
justify-content:space-between;
padding:160px 8% 120px;
}

.hero-content{
max-width:600px;
}

.hero h1{
font-size:52px;
font-family:'Orbitron',sans-serif;
line-height:1.2;
}

.hero h1 span{
color:#00FF9C;
}

.hero p{
margin-top:20px;
color:#8A9BB5;
font-size:18px;
}

.hero-buttons{
margin-top:30px;
display:flex;
gap:20px;
}

.btn-primary{
background:#00FF9C;
color:#000;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
border:1px solid #00FF9C;
padding:14px 26px;
border-radius:30px;
text-decoration:none;
color:#00FF9C;
}

/* SERVICES */

.services-preview{
padding:100px 8%;
text-align:center;
}

.services-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#121A2E;
padding:40px;
border-radius:12px;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 40px rgba(0,255,156,0.2);
}

/* CTA */

.cta-section{
padding:120px 8%;
text-align:center;
background:#00ff9c26
}

.cta-section h2{
font-size:40px;
margin-bottom:30px;
}

/* FOOTER */

footer{
padding:40px;
text-align:center;
color:#8A9BB5;
}

.grid-bg{
position:absolute;
width:100%;
height:100%;
background:
linear-gradient(rgba(0,255,156,0.08) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,255,156,0.08) 1px, transparent 1px);
background-size:60px 60px;
z-index:0;
}

.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 8%;
overflow:hidden;
}


.hologram-dashboard{
position:relative;
width:500px;
height:400px;
z-index:2;
}

.panel{
position:absolute;
background:rgba(18,26,46,0.6);
border:1px solid rgba(0,255,156,0.4);
backdrop-filter:blur(12px);
padding:20px;
border-radius:12px;
box-shadow:0 0 25px rgba(0,255,156,0.15);
}

.panel h4{
margin-bottom:10px;
color:#00FF9C;
font-size:14px;
}

.panel-1{
top:0;
left:0;
width:220px;
}

.panel-2{
bottom:0;
right:0;
width:220px;
}

.panel-3{
top:120px;
left:260px;
width:200px;
}


.chart-line{
height:60px;
background:linear-gradient(
to right,
transparent,
#00FF9C
);
clip-path:polygon(
0% 80%,
20% 60%,
40% 70%,
60% 40%,
80% 50%,
100% 20%,
100% 100%,
0% 100%
);
}

.chart-bars{
display:flex;
gap:6px;
align-items:flex-end;
height:60px;
}

.chart-bars div{
width:8px;
background:#00FF9C;
animation:bars 2s infinite alternate;
}

@keyframes bars{

0%{height:10px}
100%{height:50px}

}


.panel{
animation:floatPanel 6s ease-in-out infinite;
}

@keyframes floatPanel{

0%{transform:translateY(0px)}
50%{transform:translateY(-10px)}
100%{transform:translateY(0px)}

}

.particles span{
position:absolute;
width:3px;
height:3px;
background:#00FF9C;
border-radius:50%;
opacity:0.5;
animation:particleMove linear infinite;
}

@keyframes particleMove{

0%{
transform:translateY(0);
opacity:0;
}

50%{
opacity:1;
}

100%{
transform:translateY(-120px);
opacity:0;
}

}

.process{
padding:120px 8%;
text-align:center;
}

.process-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.process-card{
background:#121A2E;
padding:30px;
border-radius:12px;
border:1px solid rgba(0,255,156,0.2);
transition:0.3s;
}

.process-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,255,156,0.15);
}

footer{
background:#060B16;
padding:40px 8% 30px;
margin-top:80px;
border-top:1px solid rgba(0,255,156,0.15);
}

/* Footer Grid */

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:60px;
margin-bottom:40px;
}

/* Titles */

footer h3{
font-family:'Orbitron',sans-serif;
color:#00FF9C;
margin-bottom:15px;
}

footer h4{
margin-bottom:7px;
color:#E6F1FF;
}

/* Text */

footer p{
color:#8A9BB5;
margin-bottom:10px;
font-size:15px;
}

/* Footer Links */

footer a{
display:block;
text-decoration:none;
color:#8A9BB5;
margin-bottom:8px;
transition:0.3s;
}

footer a:hover{
color:#00FF9C;
}

/* Copyright */

.copyright{
text-align:center;
border-top:1px solid rgba(255,255,255,0.05);
padding-top:20px;
font-size:14px;
color:#6B7C93;
}

@media(max-width:900px){

.footer-grid{
grid-template-columns:1fr;
gap:40px;
text-align:center;
}

}

.solutions-home{
padding:50px 8%;
text-align:center;
}

.section-sub{
margin-top:10px;
color:#8A9BB5;
}

.solutions-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.solution-card{
background:#121A2E;
padding:40px;
border-radius:12px;
border:1px solid rgba(0,255,156,0.15);
transition:0.3s;
}

.solution-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,255,156,0.2);
border-color:#00FF9C;
}

.solution-card h3{
margin-bottom:10px;
color:#00FF9C;
}

.view-all{
margin-top:40px;
display:inline-block;
}

.about-home{
padding:120px 8%;
background:#121A2E;
}

.about-container{
display:flex;
align-items:center;
gap:80px;
}

.about-text{
flex:1;
}

.about-text h2{
font-size:40px;
margin-bottom:20px;
}

.about-text p{
color:#8A9BB5;
margin-bottom:20px;
}

/* futuristic orb */

/* ORB CONTAINER */

.about-visual{
flex:1;
display:flex;
justify-content:center;
align-items:center;
}


/* MAIN ORB */

.data-orb{
position:relative;
width:260px;
height:260px;
border-radius:50%;
border:2px solid #00FF9C;
box-shadow:0 0 45px rgba(0,255,156,0.4);
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}


/* LOGO */

.orb-logo{
width:200px;
z-index:2;
}


/* ANIMATED DATA CHIP BACKGROUND */

.orb-animation{
position:absolute;
width:160%;
height:160%;
background:
radial-gradient(circle, rgba(0,255,156,0.08) 20%, transparent 20%),
linear-gradient(rgba(0,255,156,0.12) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,255,156,0.12) 1px, transparent 1px);
background-size:80px 80px, 40px 40px, 40px 40px;
animation:orbRotate 18s linear infinite;
opacity:1;
}


/* ROTATION */

@keyframes orbRotate{

from{
transform:rotate(0deg);
}

to{
transform:rotate(360deg);
}

}

/* ========================= */
/* TECHNOLOGY STACK SECTION  */
/* ========================= */

.tech{
padding:70px 8%;
text-align:center;
}

.tech h2{
font-size:38px;
margin-bottom:20px;
font-family:'Orbitron',sans-serif;
}

.tech-grid{
margin-top:50px;
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
}

.tech-grid div{
background:#121A2E;
padding:25px 10px;
border-radius:10px;
border:1px solid rgba(0,255,156,0.15);
font-weight:500;
transition:0.3s;
cursor:default;
}

.tech-grid div:hover{
transform:translateY(-6px);
border-color:#00FF9C;
box-shadow:0 10px 25px rgba(0,255,156,0.15);
color:#00FF9C;
}

/* ================================= */
/* GLOBAL RESPONSIVE SETTINGS        */
/* ================================= */

img{
max-width:100%;
height:auto;
}

section{
width:100%;
}

/* ================================= */
/* TABLET RESPONSIVE (1024px)        */
/* ================================= */

@media(max-width:1024px){

.hero{
flex-direction:column;
text-align:center;
height:auto;
padding:140px 8% 80px;
gap:50px;
}

.hero-content{
max-width:100%;
}

.hero h1{
font-size:42px;
}

.hologram-dashboard{
width:100%;
height:350px;
}

.panel-3{
left:auto;
right:0;
}

.services-grid{
grid-template-columns:repeat(2,1fr);
}

.solutions-grid{
grid-template-columns:repeat(2,1fr);
}

.tech-grid{
grid-template-columns:repeat(3,1fr);
}

.about-container{
flex-direction:column;
text-align:center;
gap:50px;
}

.about-visual{
order:-1;
}

}

/* ================================= */
/* MOBILE RESPONSIVE (768px)         */
/* ================================= */

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:15px;
padding:15px 5%;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.hero{
padding:120px 6% 60px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.btn-primary,
.btn-secondary{
width:220px;
text-align:center;
}

.hologram-dashboard{
height:320px;
}

.panel{
transform:scale(0.9);
}

.services-grid{
grid-template-columns:1fr;
}

.solutions-grid{
grid-template-columns:1fr;
}

.tech-grid{
grid-template-columns:repeat(2,1fr);
}

.service-card,
.solution-card{
padding:30px;
}

.cta-section h2{
font-size:30px;
}

.about-text h2{
font-size:30px;
}

}

/* ================================= */
/* SMALL MOBILE (480px)              */
/* ================================= */

@media(max-width:480px){

.hero h1{
font-size:28px;
}

.hero p{
font-size:15px;
}

.hero{
padding-top:110px;
}

.panel{
transform:scale(0.8);
}

.tech-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
gap:30px;
}

.logo{
font-size:20px;
}

nav ul{
gap:20px;
}

}


/* =============================== */
/* SERVICES PAGE                  */
/* =============================== */

.service-hero{
padding:160px 8% 100px;
text-align:center;
}

.service-hero h1{
font-size:48px;
font-family:'Orbitron',sans-serif;
margin-bottom:20px;
}

.service-hero p{
max-width:700px;
margin:auto;
color:#8A9BB5;
font-size:18px;
}

/* SERVICE SECTION */

.service-section{
padding:100px 8%;
text-align:center;
}

.alt-bg{
background:#121A2E;
}

.service-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
}

.service-box{
background:#121A2E;
padding:40px;
border-radius:12px;
border:1px solid rgba(0,255,156,0.2);
transition:0.3s;
}

.service-box:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,255,156,0.2);
border-color:#00FF9C;
}

.service-box h3{
color:#00FF9C;
margin-bottom:15px;
}

.service-box p{
color:#8A9BB5;
}

/* =============================== */
/* RESPONSIVE                     */
/* =============================== */

@media(max-width:1024px){

.service-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.service-hero{
padding:140px 6% 80px;
}

.service-hero h1{
font-size:34px;
}

.service-grid{
grid-template-columns:1fr;
}

.service-section{
padding:80px 6%;
}

}

/* ============================ */
/* SOLUTIONS PAGE               */
/* ============================ */

.solutions-hero{
padding:160px 8% 100px;
text-align:center;
}

.solutions-hero h1{
font-size:48px;
font-family:'Orbitron',sans-serif;
margin-bottom:20px;
}

.solutions-hero p{
max-width:700px;
margin:auto;
color:#8A9BB5;
font-size:18px;
}


/* SOLUTIONS GRID */

.solutions-page{
padding:100px 8%;
}

.solutions-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

.solution-item{
background:#121A2E;
padding:40px;
border-radius:12px;
border:1px solid rgba(0,255,156,0.2);
transition:0.3s;
}

.solution-item:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,255,156,0.2);
border-color:#00FF9C;
}

.solution-item h3{
color:#00FF9C;
margin-bottom:15px;
}

.solution-item p{
color:#8A9BB5;
}


/* ============================ */
/* RESPONSIVE                   */
/* ============================ */

@media(max-width:1024px){

.solutions-container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.solutions-hero{
padding:140px 6% 80px;
}

.solutions-hero h1{
font-size:34px;
}

.solutions-container{
grid-template-columns:1fr;
}

.solutions-page{
padding:80px 6%;
}

}


/* ========================= */
/* ABOUT PAGE                */
/* ========================= */

.about-hero{
padding:160px 8% 100px;
text-align:center;
}

.about-hero h1{
font-size:48px;
font-family:'Orbitron',sans-serif;
margin-bottom:20px;
}

.about-hero p{
max-width:700px;
margin:auto;
color:#8A9BB5;
font-size:18px;
}


/* STORY */

.about-story{
padding:100px 8%;
}

.about-grid{
display:flex;
align-items:center;
gap:80px;
}

.about-text{
flex:1;
}

.about-text h2{
margin-bottom:20px;
}

.about-text p{
color:#8A9BB5;
margin-bottom:20px;
}

.about-visual{
flex:1;
display:flex;
justify-content:center;
}


/* data core animation */

.data-core{
width:240px;
height:240px;
border-radius:50%;
border:2px solid #00FF9C;
box-shadow:0 0 50px rgba(0,255,156,0.6);
animation:rotateCore 12s linear infinite;
}

@keyframes rotateCore{
from{transform:rotate(0deg);}
to{transform:rotate(360deg);}
}


/* MISSION */

.mission-section{
padding:100px 8%;
background:#121A2E;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.mission-card{
background:#0A0F1C;
padding:40px;
border-radius:12px;
border:1px solid rgba(0,255,156,0.2);
}

.mission-card h3{
color:#00FF9C;
margin-bottom:15px;
}

.mission-card p{
color:#8A9BB5;
}


/* VALUES */

.values-section{
padding:100px 8%;
text-align:center;
}

.values-grid{
margin-top:60px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.value-box{
background:#121A2E;
padding:30px;
border-radius:12px;
border:1px solid rgba(0,255,156,0.2);
}

.value-box h4{
color:#00FF9C;
margin-bottom:10px;
}

.value-box p{
color:#8A9BB5;
}


/* RESPONSIVE */

@media(max-width:1024px){

.about-grid{
flex-direction:column;
text-align:center;
}

.mission-grid{
grid-template-columns:1fr;
}

.values-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.about-hero h1{
font-size:34px;
}

.values-grid{
grid-template-columns:1fr;
}

.about-story{
padding:80px 6%;
}

}

/* ========================= */
/* CONTACT PAGE              */
/* ========================= */

.contact-hero{
padding:160px 8% 100px;
text-align:center;
}

.contact-hero h1{
font-size:48px;
font-family:'Orbitron',sans-serif;
margin-bottom:20px;
}

.contact-hero p{
max-width:700px;
margin:auto;
color:#8A9BB5;
font-size:18px;
}


/* CONTACT SECTION */

.contact-section{
padding:100px 8%;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-info h2{
margin-bottom:20px;
}

.contact-info p{
color:#8A9BB5;
margin-bottom:20px;
}

.contact-item{
margin-bottom:20px;
}

.contact-item strong{
display:block;
color:#00FF9C;
margin-bottom:5px;
}


/* FORM */

.contact-form form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
background:#121A2E;
border:1px solid rgba(0,255,156,0.2);
padding:14px;
border-radius:8px;
color:#E6F1FF;
font-family:'Inter',sans-serif;
}

.contact-form textarea{
min-height:120px;
resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#00FF9C;
}


/* RESPONSIVE */

@media(max-width:1024px){

.contact-container{
grid-template-columns:1fr;
gap:40px;
}

}

@media(max-width:768px){

.contact-hero h1{
font-size:34px;
}

.contact-section{
padding:80px 6%;
}

}

/* ABOUT HERO */

.about-hero{
padding:160px 8% 100px;
text-align:center;
}

.about-hero h1{
font-family:'Orbitron',sans-serif;
font-size:48px;
margin-bottom:20px;
}

.about-hero p{
max-width:750px;
margin:auto;
color:#8A9BB5;
font-size:18px;
line-height:1.7;
}



/* STORY SECTION */

.story-section{
padding:100px 8%;
display:flex;
justify-content:center;
}

.story-container{
max-width:850px;
}

.story-container h2{
font-family:'Orbitron',sans-serif;
margin-bottom:30px;
font-size:32px;
}

.story-container p{
margin-bottom:22px;
font-size:17px;
line-height:1.8;
color:#8A9BB5;
}



/* MISSION */

.mission-section{
padding:100px 8%;
background:#121A2E;
}

.mission-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.mission-card{
background:#0A0F1C;
padding:40px;
border-radius:12px;
border:1px solid rgba(0,255,156,0.2);
}

.mission-card h3{
color:#00FF9C;
margin-bottom:15px;
}

.mission-card p{
color:#8A9BB5;
}



/* RESPONSIVE */

@media(max-width:900px){

.about-hero h1{
font-size:36px;
}

.story-container{
max-width:100%;
}

.mission-grid{
grid-template-columns:1fr;
}

}

/* SERVICE PORTFOLIO */

.portfolio-section{
padding:120px 8%;
}

.portfolio-container{
max-width:1000px;
margin:auto;
}

.portfolio-section h2{
font-family:'Orbitron',sans-serif;
margin-bottom:20px;
}

.portfolio-intro{
color:#8A9BB5;
margin-bottom:50px;
}

.tier-block{
margin-bottom:70px;
}

.tier-desc{
color:#8A9BB5;
margin-bottom:30px;
}

.tier-card{
background:#121A2E;
padding:30px;
border-radius:10px;
border:1px solid rgba(0,255,156,0.2);
margin-bottom:25px;
}

.tier-card h4{
color:#00FF9C;
margin-bottom:10px;
}

.tier-card p{
color:#8A9BB5;
margin-bottom:10px;
}

.tier-card ul{
padding-left:20px;
margin-bottom:10px;
}

.tier-card li{
margin-bottom:5px;
}

.deliverable{
font-weight:500;
color:#E6F1FF;
}

.why-section{
margin-top:80px;
}

.why-section ul{
padding-left:20px;
}

.why-section li{
margin-bottom:10px;
color:#8A9BB5;
}

/* RESPONSIVE */

@media(max-width:900px){

.portfolio-container{
max-width:100%;
}

}

/* HEADER LOGO */

.logo img{
height:60px;
width:auto;
display:block;
}


/* FOOTER LOGO */

.footer-logo img{
height:60px;
margin-bottom:10px;
}


/* RESPONSIVE LOGO */

@media(max-width:768px){

.logo img{
height:40px;
}

.footer-logo img{
height:32px;
}

}


.hero-content{
position:relative;
z-index:5;
}

.hero-buttons a{
position:relative;
z-index:6;
}

.grid-bg,
.particles{
pointer-events:none;
}