/* ===========================================
   DJECTORY
   Infrastructure Simplified
=========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'JetBrains Mono',monospace;

background:#070b13;

color:#f5f5f5;

overflow-x:hidden;

line-height:1.7;

position:relative;

}

/*=========================
BACKGROUND
==========================*/

#particle-canvas{

position:fixed;

inset:0;

width:100%;

height:100%;

z-index:-5;

pointer-events:none;

}

.background-grid{

position:fixed;

inset:0;

background-image:

linear-gradient(rgba(0,255,255,.05) 1px,transparent 1px),

linear-gradient(90deg,rgba(0,255,255,.05) 1px,transparent 1px);

background-size:45px 45px;

z-index:-4;

}

.glow{

position:fixed;

width:500px;

height:500px;

border-radius:50%;

filter:blur(130px);

opacity:.18;

z-index:-3;

animation:floatGlow 15s ease-in-out infinite;

}

.glow1{

background:#00ffff;

top:-120px;

left:-150px;

}

.glow2{

background:#ff00d4;

right:-150px;

bottom:-150px;

animation-delay:5s;

}

@keyframes floatGlow{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(80px);

}

100%{

transform:translateY(0px);

}

}

/*=========================
NAVBAR
==========================*/

header{

position:sticky;

top:0;

z-index:999;

backdrop-filter:blur(18px);

background:rgba(8,12,18,.70);

border-bottom:1px solid rgba(255,255,255,.06);

}

.navbar{

max-width:1300px;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 40px;

}

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo-icon{

width:58px;

height:58px;

display:flex;

align-items:center;

justify-content:center;

font-family:'Orbitron',sans-serif;

font-size:30px;

font-weight:bold;

border-radius:16px;

background:linear-gradient(135deg,#00e5ff,#6a5cff);

box-shadow:

0 0 25px rgba(0,255,255,.45);

}

.logo-icon-new{

width:58px;

height:58px;

display:flex;

align-items:center;

justify-content:center;

border-radius:12px;

background:rgba(10,20,30,.6);

border:1px solid rgba(0,255,255,0.3);

overflow:hidden;

}

.logo-icon-new img{

width:100%;

height:100%;

object-fit:contain;

}

.logo-text h2{

font-family:'Orbitron',sans-serif;

letter-spacing:2px;

font-size:24px;

}

.logo-text span{

font-size:13px;

color:#8eb8c7;

}

.navbar ul{

display:flex;

list-style:none;

gap:35px;

}

.navbar a{

text-decoration:none;

color:white;

transition:.3s;

}

.navbar ul a:hover{

color:#00ffff;

}

.hire-btn{

padding:12px 24px;

border-radius:50px;

background:#00e5ff;

color:#000 !important;

font-weight:bold;

transition:.3s;

}

.hire-btn:hover{

transform:translateY(-4px);

box-shadow:

0 0 25px cyan;

}

/*=========================
HERO
==========================*/

.hero{

max-width:1300px;

margin:auto;

padding:100px 40px;

display:grid;

grid-template-columns:1.1fr .9fr;

gap:70px;

align-items:center;

}

.hero-badge{

display:inline-block;

padding:8px 18px;

border:1px solid cyan;

border-radius:50px;

color:#00ffff;

margin-bottom:30px;

font-size:14px;

}

.hero h1{

font-family:'Orbitron',sans-serif;

font-size:68px;

line-height:1.1;

margin-bottom:30px;

background:linear-gradient(90deg,#ffffff,#00ffff);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

color:#9fb6c4;

font-size:18px;

margin-bottom:35px;

max-width:650px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:40px;

}

.btn-primary{

padding:16px 34px;

background:#00e5ff;

border-radius:40px;

color:#000;

font-weight:bold;

text-decoration:none;

transition:.35s;

}

.btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 0 35px cyan;

}

.btn-secondary{

padding:16px 34px;

border:1px solid #00ffff;

border-radius:40px;

text-decoration:none;

color:white;

transition:.35s;

}

.btn-secondary:hover{

background:#00ffff;

color:#000;

}

.tech-stack{

display:flex;

flex-wrap:wrap;

gap:12px;

}

.tech-stack span{

padding:10px 16px;

background:#111927;

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

transition:.3s;

}

.tech-stack span:hover{

transform:translateY(-5px);

border-color:cyan;

box-shadow:0 0 20px rgba(0,255,255,.3);

}

/*=========================
AVATAR FRAME
==========================*/

.avatar-frame{

width:180px;

height:180px;

margin:0 auto 30px;

border-radius:50%;

padding:4px;

background:linear-gradient(135deg,#00e5ff,#ff2ee0);

box-shadow:0 0 35px rgba(0,229,255,.35);

animation:avatarPulse 3.5s ease-in-out infinite;

}

.avatar-frame-inner{

width:100%;

height:100%;

border-radius:50%;

overflow:hidden;

background:#0d131f;

}

.avatar-frame-inner img{

width:100%;

height:100%;

object-fit:cover;

display:block;

}

@keyframes avatarPulse{

0%,100%{ box-shadow:0 0 25px rgba(0,229,255,.3); }

50%{ box-shadow:0 0 45px rgba(255,46,224,.4); }

}

/*=========================
TERMINAL
==========================*/

.terminal{

background:#0d131f;

border-radius:20px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

box-shadow:

0 20px 60px rgba(0,0,0,.45);

}

.terminal-top{

background:#182131;

padding:15px 20px;

display:flex;

align-items:center;

justify-content:space-between;

}

.dots{

display:flex;

gap:8px;

}

.dots span{

width:12px;

height:12px;

border-radius:50%;

}

.dots span:nth-child(1){

background:#ff5f57;

}

.dots span:nth-child(2){

background:#ffbd2e;

}

.dots span:nth-child(3){

background:#28c840;

}

.terminal-body{

padding:35px;

font-size:15px;

line-height:1.9;

}

.terminal-body span{

color:#00ffff;

font-weight:bold;

}

.online{

color:#00ff7f;

font-weight:bold;

}
/*=========================
ANIMATED SKILL ICONS
==========================*/

.skill-icon-anim{

display:inline-flex;

vertical-align:middle;

margin-right:12px;

width:26px;

height:26px;

}

.skill-card h3, .about-card h3{

display:flex;

align-items:center;

}

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

@keyframes pulseGlow{
    0%,100%{ opacity:1; transform:scale(1); }
    50%{ opacity:.55; transform:scale(1.15); }
}

@keyframes floatIcon{
    0%,100%{ transform:translateY(0px); }
    50%{ transform:translateY(-5px); }
}

@keyframes dashFlow{
    to{ stroke-dashoffset:-24; }
}

.icon-spin{ animation:spinSlow 6s linear infinite; transform-origin:center; }
.icon-pulse{ animation:pulseGlow 2.2s ease-in-out infinite; transform-origin:center; }
.icon-float{ animation:floatIcon 3s ease-in-out infinite; }
.icon-flow{ stroke-dasharray:6 6; animation:dashFlow 1.2s linear infinite; }

/*=========================
SECTIONS
==========================*/

.section{

max-width:1300px;

margin:120px auto;

padding:0 40px;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-family:'Orbitron',sans-serif;

font-size:42px;

margin-bottom:18px;

color:#ffffff;

}

.section-title p{

max-width:760px;

margin:auto;

color:#9fb6c4;

font-size:17px;

}

/*=========================
ABOUT
==========================*/

.about-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

@media(max-width:1200px){

.about-grid{

grid-template-columns:repeat(2,1fr);

}

}

.about-card{

background:#101826;

padding:35px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.about-card:hover{

transform:translateY(-12px);

border-color:#00ffff;

box-shadow:

0 15px 45px rgba(0,255,255,.18);

}

.about-card h3{

margin-bottom:18px;

font-size:22px;

font-family:'Orbitron',sans-serif;

}

.about-card p{

color:#a6b8c8;

}

/*=========================
SKILLS
==========================*/

.skills-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.skill-card{

background:#101826;

padding:30px;

border-radius:18px;

transition:.35s;

border:1px solid rgba(255,255,255,.08);

}

.skill-card:hover{

transform:translateY(-10px);

border-color:#00ffff;

box-shadow:0 15px 45px rgba(0,255,255,.18);

}

.skill-card h3{

margin-bottom:20px;

font-family:'Orbitron',sans-serif;

}

.skill-card ul{

list-style:none;

}

.skill-card li{

padding:10px 0;

border-bottom:1px solid rgba(255,255,255,.06);

color:#c9d3dc;

}

.skill-card li:last-child{

border:none;

}

/*=========================
SERVICES COMPREHENSIVE
==========================*/

.services-comprehensive{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

margin-bottom:50px;

}

@media(max-width:900px){

.services-comprehensive{

grid-template-columns:1fr;

gap:30px;

}

}

.service-category{

background:#0f1622;

border:1px solid rgba(46,242,255,0.15);

padding:30px;

border-radius:12px;

transition:.3s;

}

.service-category:hover{

border-color:#00ffff;

box-shadow:0 10px 30px rgba(46,242,255,0.15);

}

.category-title{

font-family:'Orbitron',sans-serif;

font-size:18px;

color:#00ffff;

text-shadow:0 0 10px rgba(46,242,255,0.4);

margin-bottom:16px;

}

.service-items{

list-style:none;

}

.service-items li{

color:#b6c4cf;

padding:8px 0;

font-size:14px;

line-height:1.6;

border-bottom:1px solid rgba(255,255,255,0.05);

}

.service-items li:last-child{

border:none;

}

.services-cta{

text-align:center;

background:linear-gradient(135deg, rgba(46,242,255,0.08), rgba(255,46,224,0.08));

border:1px solid rgba(46,242,255,0.2);

border-radius:16px;

padding:40px;

}

.services-cta h3{

font-family:'Orbitron',sans-serif;

font-size:24px;

color:#00ffff;

text-shadow:0 0 10px rgba(46,242,255,0.4);

margin-bottom:12px;

}

.services-cta p{

color:#b6c4cf;

margin-bottom:28px;

max-width:600px;

margin-left:auto;

margin-right:auto;

}

.btn-inquiry{

display:inline-block;

padding:14px 40px;

background:url(#grad1) rgba(46,242,255,0.1);

border:2px solid #00ffff;

border-radius:8px;

color:#00ffff;

font-weight:bold;

text-decoration:none;

transition:.3s;

font-size:15px;

letter-spacing:1px;

}

.btn-inquiry:hover{

background:#00ffff;

color:#000;

box-shadow:0 0 30px rgba(46,242,255,0.6);

}

/*=========================
OLD SERVICES (removed - keeping for reference)
==========================*/

.blog-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.blog-card{

background:#101826;

padding:35px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

display:flex;

flex-direction:column;

}

.blog-card:hover{

transform:translateY(-12px);

border-color:#00ffff;

box-shadow:0 18px 45px rgba(0,255,255,.18);

}

.featured{

grid-column:span 2;

}

.category{

display:inline-block;

padding:8px 15px;

background:#00ffff20;

color:#00ffff;

border-radius:30px;

font-size:13px;

margin-bottom:20px;

}

.blog-card h3{

font-family:'Orbitron',sans-serif;

margin-bottom:18px;

font-size:25px;

}

.blog-card p{

color:#b6c4cf;

margin-bottom:25px;

}

.blog-card a{

margin-top:auto;

text-decoration:none;

color:#00ffff;

font-weight:bold;

}

/*=========================
STATS
==========================*/

.stats{

max-width:1200px;

margin:120px auto;

padding:0 40px;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.stat-box{

background:#101826;

padding:40px;

text-align:center;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.stat-box:hover{

transform:translateY(-10px);

border-color:#00ffff;

}

.stat-box h2{

font-size:48px;

font-family:'Orbitron',sans-serif;

color:#00ffff;

margin-bottom:10px;

}

.stat-box p{

color:#9fb6c4;

}

/*=========================
CONTACT
==========================*/

.contact-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.contact-card{

background:#101826;

padding:35px;

text-align:center;

border-radius:20px;

transition:.35s;

border:1px solid rgba(255,255,255,.08);

}

.contact-card:hover{

transform:translateY(-10px);

border-color:#00ffff;

box-shadow:0 15px 40px rgba(0,255,255,.18);

}

.contact-card h3{

font-family:'Orbitron',sans-serif;

margin-bottom:15px;

}

.contact-card p{

color:#b8c6d0;

word-break:break-word;

}

/*=========================
FOOTER
==========================*/

footer{

margin-top:120px;

padding:70px 40px 30px;

background:#05080d;

border-top:1px solid rgba(255,255,255,.06);

}

.footer-content{

max-width:1300px;

margin:auto;

display:flex;

justify-content:space-between;

gap:60px;

flex-wrap:wrap;

}

.footer-content h2{

font-family:'Orbitron',sans-serif;

margin-bottom:15px;

}

.footer-content p{

color:#91a5b6;

max-width:450px;

}

.footer-links{

display:flex;

gap:30px;

align-items:flex-start;

flex-wrap:wrap;

}

.footer-links a{

text-decoration:none;

color:#d6dce3;

transition:.3s;

}

.footer-links a:hover{

color:#00ffff;

}

.copyright{

text-align:center;

margin-top:50px;

color:#6f8497;

font-size:14px;

}

/*=========================
RESPONSIVE
==========================*/

@media(max-width:1100px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.tech-stack{

justify-content:center;

}

.about-grid,
.skills-grid,
.blog-grid,
.contact-grid,
.stats{

grid-template-columns:repeat(2,1fr);

}

.featured{

grid-column:span 2;

}

.navbar{

flex-direction:column;

gap:25px;

}

}

@media(max-width:768px){

.hero{

padding:70px 20px;

}

.section{

padding:0 20px;

}

.navbar{

padding:20px;

}

.navbar ul{

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.hero h1{

font-size:48px;

}

.about-grid,
.skills-grid,
.blog-grid,
.contact-grid,
.stats{

grid-template-columns:1fr;

}

.featured{

grid-column:auto;

}

.footer-content{

flex-direction:column;

text-align:center;

}

.footer-links{

justify-content:center;

}

}

/*=========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#081019;

}

::-webkit-scrollbar-thumb{

background:#00d9ff;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#61efff;

}
.active{

color:#00ffff !important;

font-weight:bold;

}

.hero{

min-height:90vh;

}