/*==============================
  GOOGLE FONT
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
  RESET
==============================*/

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

html{
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    background:#07111f;
    color:#fff;
    overflow-x:hidden;
}

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

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#07111f;
}

::-webkit-scrollbar-thumb{
    background:#00d8ff;
    border-radius:50px;
}

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

.bg-animation{

    position:fixed;
    left:0;
    top:0;

    width:100%;
    height:100%;

    z-index:-1;
    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #07111f,
    #0b1d35,
    #112b4a);

}

.bg-animation span{

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    filter:blur(70px);

    background:rgba(0,216,255,.12);

    animation:blob 20s linear infinite;

}

.bg-animation span:nth-child(1){
left:5%;
top:10%;
}

.bg-animation span:nth-child(2){
right:10%;
top:15%;
animation-duration:16s;
}

.bg-animation span:nth-child(3){
bottom:10%;
left:30%;
animation-duration:22s;
}

.bg-animation span:nth-child(4){
right:25%;
bottom:20%;
animation-duration:18s;
}

.bg-animation span:nth-child(5){
left:70%;
top:60%;
animation-duration:24s;
}

@keyframes blob{

0%{

transform:
translateY(0)
rotate(0deg);

}

50%{

transform:
translateY(-90px)
rotate(180deg);

}

100%{

transform:
translateY(0)
rotate(360deg);

}

}

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

header{

position:fixed;

top:0;
left:0;

width:100%;

padding:18px 8%;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

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

z-index:999;

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

font-size:32px;

font-weight:700;

color:#00d8ff;

letter-spacing:2px;

}

nav ul{

display:flex;

gap:35px;

list-style:none;

}

nav ul li a{

text-decoration:none;

color:#fff;

font-size:16px;

font-weight:500;

transition:.3s;

position:relative;

}

nav ul li a:hover{

color:#00d8ff;

}

nav ul li a::after{

content:"";

position:absolute;

left:0;
bottom:-6px;

width:0;

height:2px;

background:#00d8ff;

transition:.4s;

}

nav ul li a:hover::after{

width:100%;

}

.menu{

display:none;

font-size:28px;

cursor:pointer;

}

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

.hero{

min-height:100vh;

padding:120px 8%;

display:flex;

align-items:center;

justify-content:space-between;

gap:70px;

}

.hero-left{

flex:1;

}

.small-title{

color:#00d8ff;

letter-spacing:5px;

margin-bottom:20px;

font-size:14px;

}

.hero-left h1{

font-size:72px;

font-weight:800;

line-height:1.1;

margin-bottom:10px;

}

.hero-left h2{

height:55px;

font-size:34px;

color:#00d8ff;

margin-bottom:25px;

}

.hero-text{

font-size:18px;

line-height:34px;

color:#d8d8d8;

max-width:650px;

}

/*==============================
 BUTTONS
==============================*/

.buttons{

display:flex;

gap:20px;

margin-top:45px;

}

.btn{

padding:16px 38px;

background:#00d8ff;

border-radius:40px;

color:#07111f;

text-decoration:none;

font-weight:600;

transition:.4s;

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

}

.btn:hover{

transform:translateY(-8px);

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

}

.btn-outline{

padding:16px 38px;

border-radius:40px;

border:2px solid #00d8ff;

text-decoration:none;

color:white;

transition:.4s;

}

.btn-outline:hover{

background:#00d8ff;

color:#07111f;

}

/*==============================
 SOCIAL
==============================*/

.social{

display:flex;

gap:18px;

margin-top:40px;

}

.social a{

width:55px;

height:55px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:rgba(255,255,255,.08);

color:#00d8ff;

font-size:22px;

text-decoration:none;

transition:.4s;

}

.social a:hover{

transform:translateY(-8px);

background:#00d8ff;

color:#07111f;

}

/*==============================
 IMAGE
==============================*/

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image{
    width:420px;
    height:420px;
    border-radius:50%;
    padding:8px;
    background:linear-gradient(45deg,#00d8ff,#0066ff);
    overflow:hidden;
    box-shadow:0 0 50px rgba(0,216,255,.35);
}

.image img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    object-position:center top;
    transition:.4s;
}

.image:hover img{
    transform:scale(1.05);
}

/*==============================
 SCROLL
==============================*/

.scroll-down{

position:absolute;

left:50%;

bottom:40px;

transform:translateX(-50%);

}

.scroll-down span{

width:25px;

height:45px;

display:block;

border:2px solid white;

border-radius:30px;

position:relative;

}

.scroll-down span::before{

content:"";

position:absolute;

left:50%;

top:8px;

width:6px;

height:6px;

border-radius:50%;

background:white;

transform:translateX(-50%);

animation:mouse 2s infinite;

}

@keyframes mouse{

0%{

opacity:1;

top:8px;

}

100%{

opacity:0;

top:24px;

}

}
/*=====================================
SECTION TITLE
=====================================*/

section{
    padding:110px 8%;
}

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    margin-bottom:70px;
    background:linear-gradient(90deg,#00d8ff,#00ffd5);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

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

.about{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:70px;
    align-items:center;
}

.about-img{
    display:flex;
    justify-content:center;
}

.about-img img{
    width:340px;
    border-radius:25px;
    border:4px solid #00d8ff;
    transition:.5s;
    box-shadow:0 0 45px rgba(0,216,255,.25);
}

.about-img img:hover{
    transform:scale(1.05) rotate(-3deg);
}

.about-content{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    padding:45px;
    border-radius:20px;
    transition:.4s;
}

.about-content:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,216,255,.20);
}

.about-content p{
    font-size:18px;
    line-height:34px;
    color:#d5d5d5;
}

.about-content b{
    color:#00d8ff;
}

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

.stats{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.stat:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,216,255,.25);
}

.stat h2{
    font-size:48px;
    color:#00d8ff;
    margin-bottom:12px;
}

.stat p{
    color:#d6d6d6;
    font-size:17px;
}

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

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.service{
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border-radius:22px;
    padding:40px 30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.45s;
}

.service::before{

content:"";

position:absolute;

top:0;
left:-100%;

width:100%;
height:4px;

background:#00d8ff;

transition:.5s;

}

.service:hover::before{
    left:0;
}

.service:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 45px rgba(0,216,255,.25);
}

.service i{
    font-size:55px;
    color:#00d8ff;
    margin-bottom:25px;
}

.service h3{
    font-size:25px;
    margin-bottom:18px;
}

.service p{
    line-height:30px;
    color:#d7d7d7;
}

/*=====================================
GLASS EFFECT
=====================================*/

.glass{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
}

/*=====================================
HOVER ANIMATION
=====================================*/

.service,
.stat,
.about-content{

transition:
all .4s ease;

}

.service:hover,
.stat:hover,
.about-content:hover{

border-color:#00d8ff;

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

#skills{
    padding:120px 8%;
}

.skill-wrapper{
    max-width:900px;
    margin:auto;
}

.skill{
    margin-bottom:35px;
}

.skill .info{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-weight:600;
    font-size:17px;
}

.skill .info span:first-child{
    color:#fff;
}

.skill .info span:last-child{
    color:#00d8ff;
}

.bar{
    width:100%;
    height:12px;
    background:#16263d;
    border-radius:50px;
    overflow:hidden;
}

.progress{
    height:100%;
    border-radius:50px;
    background:linear-gradient(90deg,#00d8ff,#00ffd5);
    animation:grow 2s ease forwards;
}

.acs{width:70%;}
.aws{width:80%;}
.linux{width:92%;}
.windows{width:90%;}
.vmware{width:85%;}
.iis{width:90%;}

@keyframes grow{
    from{
        width:0;
    }
}

/*====================================
EXPERIENCE
====================================*/

#experience{
    padding:120px 8%;
}

.timeline{
    position:relative;
    max-width:900px;
    margin:auto;
}

.timeline::before{

content:"";

position:absolute;

left:30px;
top:0;

width:4px;
height:100%;

background:#00d8ff;

border-radius:20px;

}

.timeline-box{

position:relative;

margin:40px 0 40px 80px;

padding:35px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border-radius:22px;

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

transition:.4s;

}

.timeline-box:hover{

transform:translateX(10px);

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

}

.timeline-box::before{

content:"";

position:absolute;

left:-64px;

top:38px;

width:24px;

height:24px;

border-radius:50%;

background:#00d8ff;

border:5px solid #07111f;

}

.timeline-box h3{

font-size:24px;

color:#00d8ff;

margin-bottom:10px;

}

.timeline-box h4{

font-size:18px;

margin-bottom:10px;

}

.timeline-box span{

display:inline-block;

margin-bottom:15px;

color:#8fdfff;

font-size:15px;

}

.timeline-box p{

line-height:30px;

color:#d5d5d5;

}

/*====================================
PROJECTS
====================================*/

#projects{

padding:120px 8%;

}

.project-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

}

.project-card{

background:rgba(255,255,255,.05);

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

backdrop-filter:blur(20px);

padding:40px;

border-radius:25px;

text-align:center;

transition:.45s;

position:relative;

overflow:hidden;

}

.project-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:5px;

background:#00d8ff;

transition:.5s;

}

.project-card:hover::before{

left:0;

}

.project-card:hover{

transform:translateY(-15px);

box-shadow:0 20px 50px rgba(0,216,255,.25);

}

.project-card i{

font-size:60px;

color:#00d8ff;

margin-bottom:25px;

}

.project-card h3{

font-size:26px;

margin-bottom:20px;

}

.project-card p{

color:#d6d6d6;

line-height:30px;

}

/*====================================
SECTION SPACING
====================================*/

#about,
#services,
#skills,
#experience,
#projects{

scroll-margin-top:100px;

}
/*====================================
DOCS SECTION
====================================*/

#docs{
    padding:80px 8%;
}

.docs-box{
    max-width:800px;
    margin:auto;
    text-align:center;

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:60px 40px;

    transition:.4s;
}

.docs-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,216,255,.25);
    border-color:#00d8ff;
}

.docs-box i{
    font-size:55px;
    color:#00d8ff;
    margin-bottom:20px;
}

.docs-box h2{
    font-size:34px;
    margin-bottom:15px;
}

.docs-box p{
    color:#d6d6d6;
    line-height:28px;
    max-width:520px;
    margin:0 auto 30px;
}

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

#contact{
    padding:120px 8%;
}

.contact-box{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.contact-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:40px;
    transition:.4s;
}

.contact-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,216,255,.25);
}

.contact-card i{
    font-size:55px;
    color:#00d8ff;
    margin-bottom:20px;
}

.contact-card h3{
    margin-bottom:15px;
    font-size:26px;
}

.contact-card p,
.contact-card a{
    color:#d7d7d7;
    text-decoration:none;
    line-height:30px;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px;
    border:none;
    outline:none;
    border-radius:15px;
    background:#10243d;
    color:white;
    font-size:16px;
}

.contact-form textarea{
    resize:none;
    height:180px;
}

.contact-form button{
    padding:18px;
    border:none;
    border-radius:40px;
    background:#00d8ff;
    color:#07111f;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,216,255,.30);
}

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

footer{
    margin-top:80px;
    padding:35px 8%;
    text-align:center;
    background:#06101d;
    border-top:1px solid rgba(255,255,255,.08);
}

footer h3{
    color:#00d8ff;
    margin-bottom:10px;
}

footer p{
    color:#bdbdbd;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:25px 0;
}

.footer-social a{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#11263f;
    color:#00d8ff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#00d8ff;
    color:#07111f;
    transform:translateY(-6px);
}

/*====================================
BACK TO TOP
====================================*/

.top-btn{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#00d8ff;
    color:#07111f;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:22px;
    box-shadow:0 0 20px rgba(0,216,255,.35);
    transition:.3s;
    z-index:999;
}

.top-btn:hover{
    transform:translateY(-8px);
}

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

@media(max-width:991px){

.hero{
flex-direction:column-reverse;
text-align:center;
padding-top:160px;
}

.hero-left h1{
font-size:54px;
}

.hero-left h2{
font-size:28px;
}

.image{
width:320px;
height:320px;
}

.about{
grid-template-columns:1fr;
text-align:center;
}

.stats{
grid-template-columns:repeat(2,1fr);
}

nav ul{
display:none;
position:absolute;
top:100%;
left:0;

width:100%;

flex-direction:column;
align-items:center;

gap:22px;

padding:25px 0;

background:rgba(4,15,32,.95);
backdrop-filter:blur(18px);
border-bottom:1px solid rgba(255,255,255,.08);
}

nav ul.show{
display:flex;
}

.menu{
display:block;
z-index:1000;
}

.timeline::before{
left:15px;
}

.timeline-box{
margin-left:45px;
}

.timeline-box::before{
left:-42px;
}

}

@media(max-width:768px){

.section-title{
font-size:36px;
}

.hero-left h1{
font-size:42px;
}

.hero-text{
font-size:16px;
line-height:30px;
}

.buttons{
flex-direction:column;
}

.stats{
grid-template-columns:1fr;
}

.project-grid,
.service-grid,
.contact-box{
grid-template-columns:1fr;
}

.image{
width:260px;
height:260px;
}

.logo{
font-size:28px;
}

}

@media(max-width:500px){

header{
padding:15px 6%;
}

.hero{
padding:150px 6% 80px;
}

section{
padding:90px 6%;
}

.small-title{
font-size:12px;
}

.hero-left h1{
font-size:34px;
}

.hero-left h2{
font-size:22px;
}

.btn,
.btn-outline{
padding:14px 28px;
font-size:15px;
}

}

/*====================================
SMOOTH TRANSITIONS
====================================*/

section,
.project-card,
.service,
.stat,
.timeline-box,
.contact-card,
.about-content{
transition:all .35s ease;
}