/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}



:root{

--primary:#00aaff;
--secondary:#009dff;

--dark:#050b1d;
--light:#ffffff;

--text:#d6e4ff;
--card:#101b36;

--border:rgba(255,255,255,.08);

}


body{

background:var(--dark);
color:var(--light);

}


/* ==========================
LOADER
========================== */

#loader{

    position:fixed;
    inset:0;
    background:#050b1d;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;

}

.loader-logo{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

}

.loader-circle{

    width:85px;
    animation:spin 2s linear infinite;

}

.loader-text{

    width:230px;

}

#loader h2{

    margin-top:25px;
    color:#fff;
    letter-spacing:2px;
     animation:pulse 1.5s infinite;

}

@keyframes spin{

0%{

transform:rotate(0);

}

100%{

transform:rotate(360deg);

}

}

@keyframes pulse{

0%,100%{

opacity:1;

}

50%{

opacity:.4;

}

}


/* ==========================
BACKGROUND
========================== */

.bg-animation{

position:fixed;
inset:0;
z-index:-2;
overflow:hidden;

}

.blob{

position:absolute;
border-radius:50%;
filter:blur(120px);
opacity:.35;

}

.one{

width:350px;
height:350px;
background:#00a2ff;
top:-100px;
left:-100px;

}

.two{

width:400px;
height:400px;
background:#0048ff;
right:-120px;
top:200px;

}

.three{

width:350px;
height:350px;
background:#00c3ff;
bottom:-150px;
left:40%;

}



/* ==========================
NAVBAR
========================== */

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

}

.navbar{

width:90%;
margin:auto;

height:90px;

display:flex;
justify-content:space-between;
align-items:center;

background:rgba(8,18,40,.75);

backdrop-filter:blur(18px);

margin-top:20px;

padding:0 35px;

border-radius:70px;

border:1px solid rgba(255,255,255,.08);

}

.logo img{

height:58px;

}

.navbar ul{

display:flex;
list-style:none;
gap:45px;

}

.navbar a{

color:white;
text-decoration:none;
font-weight:500;

transition:.4s;

}

.navbar a:hover{

color:var(--primary);

}

.nav-btn{

padding:13px 28px;

background:linear-gradient(135deg,#0ea5ff,#0048ff);

border-radius:50px;

font-weight:600;

}

.nav-btn:hover{

transform:translateY(-3px);

}



/* ==========================
HERO
========================== */

.hero{

min-height:100vh;

width:90%;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:70px;

padding-top:130px;

}

.hero h5{

color:#35b7ff;

letter-spacing:2px;

margin-bottom:15px;

}

.hero h1{

font-size:65px;

line-height:82px;

margin-bottom:25px;

}

.hero span{

color:#27b6ff;

}

.hero p{

font-size:18px;

line-height:34px;

color:var(--text);

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

}

.primary-btn{

padding:18px 38px;

display:inline-block;

text-decoration:none;

font-weight:600;

color:white;

border-radius:50px;

background:linear-gradient(
-45deg,
#00aaff,
#0057ff,
#00d4ff,
#0080ff
);

background-size:300% 300%;

animation:gradientMove 6s ease infinite;

transition:.4s;

box-shadow:0 10px 30px rgba(0,170,255,.35);

}

.primary-btn:hover{

transform:translateY(-6px);

box-shadow:0 20px 45px rgba(0,170,255,.45);

}

.secondary-btn{

padding:17px 35px;

border-radius:50px;

border:1px solid rgba(255,255,255,.2);

text-decoration:none;

color:white;

font-weight:600;

}

.hero-image{

display:flex;
justify-content:center;

}

.hero-image img{

width:100%;
max-width:600px;

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0);

}

}



/* ==========================
COMMON SECTION
========================== */

section{

padding:120px 0;

width:90%;

margin:auto;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-size:48px;

margin-bottom:18px;

}

.section-title p{

max-width:800px;

margin:auto;

line-height:34px;

color:var(--text);

}



/* ==========================
PROJECTS
========================== */

.project-slider{
display:flex;
align-items:center;
gap:25px;
width:100%;
}

#projectsContainer{
display:flex;
gap:30px;
overflow-x:auto;
scroll-behavior:smooth;
width:100%;
flex:1;
padding:15px 0;
}

#projectsContainer::-webkit-scrollbar{
display:none;
}

.project-card{
min-width:360px;
max-width:360px;
flex:0 0 360px;
}

.project-card{

position:relative;
overflow:hidden;
background:rgba(255,255,255,.05);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
transition:.5s;
cursor:pointer;
box-shadow:0 20px 60px rgba(0,0,0,.25);

}

.project-card:hover{

transform:translateY(-18px) rotateX(5deg);
box-shadow:0 30px 70px rgba(0,162,255,.35);
border-color:#19b5ff;

}

.project-card img{

width:100%;
height:240px;
object-fit:cover;
transition:.6s;

}

.project-card:hover img{

transform:scale(1.12);

}

.project-content{

padding:30px;

}

.project-content small{

display:inline-block;
padding:8px 18px;
border-radius:30px;
background:#0ea5ff22;
color:#27b7ff;
margin-bottom:18px;
font-weight:600;

}

.project-content h3{

font-size:28px;
margin-bottom:15px;

}

.project-content p{

opacity:.8;
line-height:1.8;
margin-bottom:25px;

}

.view-btn{

display:inline-flex;
align-items:center;
gap:10px;

padding:14px 30px;

border-radius:40px;

background:linear-gradient(90deg,#00a8ff,#0066ff);

color:white;

font-weight:600;

text-decoration:none;

transition:.4s;

}

.view-btn:hover{

transform:translateY(-5px);

box-shadow:0 15px 35px rgba(0,170,255,.4);

}


/* ==========================
CASE STUDY
========================== */

#caseStudy{

margin:100px auto;

width:min(1200px,90%);

background:rgba(255,255,255,.05);

backdrop-filter:blur(25px);

border-radius:30px;

padding:60px;

border:1px solid rgba(255,255,255,.08);

display:none;

animation:popup .8s;

}

#caseStudy.active{

display:block;

}


@keyframes popup{

from{

opacity:0;

transform:scale(.85);

}

to{

opacity:1;

transform:scale(1);

}

}



/*==========================
CONTACT
==========================*/

.contact-wrapper{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

margin-top:60px;

}

.contact-form{

display:flex;

flex-direction:column;

gap:20px;

}

.contact-form input,
.contact-form textarea{

padding:18px;

background:#101b36;

color:#fff;

border:1px solid rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.08);

border-radius:15px;

outline:none;

font-size:16px;

}

.contact-form textarea{

resize:none;

}

.contact-info{

background:#101b36;

padding:40px;

border-radius:20px;

}

.contact-info h3{

margin-bottom:20px;

}

.contact-info li{

margin-bottom:18px;

list-style:none;

}

/*======================
SEARCH
=======================*/

.project-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:60px;

gap:30px;

flex-wrap:wrap;

}

#searchProject{

    background:#101b36;

color:#fff;

border:1px solid rgba(255,255,255,.08);

width:380px;

padding:18px 25px;

border-radius:50px;

outline:none;

font-size:16px;

}

.filters{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.filter{

padding:12px 24px;

border-radius:40px;

border:none;

cursor:pointer;

background:#101b36;

color:white;

transition:.4s;

}

.filter:hover{

background:#009dff;

}

.filter.active{

background:#009dff;

}


/*======================
PROJECT CARD PREMIUM
=======================*/

.project-card{

position:relative;

overflow:hidden;

background:linear-gradient(145deg,#111d3d,#091225);

border-radius:25px;

transition:.5s;

}

.project-card::after{

content:"";

position:absolute;

top:-100%;

left:-50%;

width:200%;

height:200%;

background:linear-gradient(

transparent,

rgba(255,255,255,.15),

transparent

);

transform:rotate(25deg);

transition:1s;

}

.project-card:hover::after{

top:100%;

}

.project-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,153,255,.3);

}

.project-content{

padding:30px;

}

.project-content small{

color:#46b8ff;

font-size:14px;

letter-spacing:1px;

display:block;

margin-bottom:10px;

}

.view-btn{

margin-top:20px;

display:inline-flex;

align-items:center;

gap:8px;

}

.view-btn:hover{

gap:16px;

}
/*==========================
FLOATING CONTACT
===========================*/

.floating-contact{

position:fixed;

right:30px;

bottom:30px;

z-index:999;

}

.floating-contact a{

width:65px;

height:65px;

display:flex;

justify-content:center;

align-items:center;

background:linear-gradient(135deg,#00b4ff,#0057ff);

border-radius:50%;

font-size:28px;

color:white;

text-decoration:none;

box-shadow:0 0 25px rgba(0,162,255,.5);

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(0,162,255,.6);

}

70%{

box-shadow:0 0 0 18px rgba(0,162,255,0);

}

100%{

box-shadow:0 0 0 0 rgba(0,162,255,0);

}

}
/*==========================
STATS
===========================*/

.stats-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:25px;

}

.stat-card{

padding:45px;

background:#101b38;

border-radius:20px;

text-align:center;

border:1px solid rgba(255,255,255,.06);

transition:.4s;

}

.stat-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(0,162,255,.25);

}

.stat-card h2{

font-size:50px;

color:#00aaff;

margin-bottom:10px;

}

.stat-card p{

color:#bfcde0;

}
/*==========================
CURSOR GLOW
===========================*/

/*==========================
CURSOR GLOW
===========================*/

.cursor-glow{

position:fixed;

width:340px;
height:340px;

background:radial-gradient(circle,
rgba(0,170,255,.45),
rgba(0,170,255,.18),
transparent 72%);

filter:blur(18px);

pointer-events:none;

transform:translate(-50%,-50%);

z-index:-1;

transition:.08s linear;

}

/*==========================
CASE STUDY PREMIUM
==========================*/

#caseStudy{

display:none;

margin-top:80px;

padding:60px;

border-radius:30px;

background:linear-gradient(145deg,#101b36,#091224);

border:1px solid rgba(255,255,255,.08);

box-shadow:0 20px 60px rgba(0,162,255,.15);

}

#caseStudy.active{

display:block;

animation:fadeCase .8s ease;

}

#caseStudy h2{

font-size:42px;

margin-bottom:20px;

}

#caseStudy h3{

margin-top:40px;

margin-bottom:20px;

color:#00aaff;

font-size:26px;

}

#caseStudy p{

line-height:32px;

color:#c7d3e4;

}

#caseStudy ul{

margin-left:20px;

}

#caseStudy li{

margin-bottom:12px;

color:#c7d3e4;

}

.tech-stack{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-top:20px;

}

.tech{

padding:10px 20px;

background:#0d2248;

border-radius:40px;

border:1px solid rgba(255,255,255,.08);

}

.features{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:20px;

margin-top:25px;

}

.feature{

background:#101b36;

}

.feature:hover{

background:#15254a;

}


.feature i{

font-size:28px;

color:#00aaff;

margin-bottom:15px;

display:block;

}
#closeCaseStudy{

float:right;

width:45px;

height:45px;

border:none;

cursor:pointer;

border-radius:50%;

background:#009dff;

color:white;

font-size:22px;

transition:.3s;

}

#closeCaseStudy:hover{

background:#ff3b3b;

transform:rotate(90deg);

}

/*======================
CHAT
=======================*/

#chatButton{

position:fixed;

left:30px;

bottom:30px;

width:65px;

height:65px;

border-radius:50%;

background:#00aaff;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

cursor:pointer;

z-index:999;

box-shadow:0 15px 40px rgba(0,170,255,.4);

}

#chatPopup{

position:fixed;

left:30px;

bottom:110px;

width:330px;

background:#101b36;

border-radius:20px;

display:none;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.4);

z-index:999;

}

.chat-header{

padding:18px;

background:#009dff;

display:flex;

justify-content:space-between;

align-items:center;

}

.chat-header h3{

font-size:18px;

}

#closeChat{

cursor:pointer;

font-size:20px;

}

.chat-body{

padding:20px;

}

.chat-body p{

margin-bottom:15px;

line-height:28px;

}

.chat-option{

width:100%;

margin-top:12px;

padding:14px;

border:none;

border-radius:12px;

cursor:pointer;

background:#17284d;

color:white;

transition:.3s;

}

.chat-option:hover{

background:#00aaff;

}

/*======================
TIMELINE
=======================*/

.timeline{

margin-top:30px;

display:flex;

flex-direction:column;

gap:25px;

}

.timeline-item{

position:relative;

padding:25px 30px 25px 80px;

background:#101b36;

border-radius:18px;

border-left:5px solid #00aaff;

transition:.4s;

}

.timeline-item:hover{

transform:translateX(10px);

background:#14244a;

}

.timeline-item span{

position:absolute;

left:20px;

top:25px;

width:40px;

height:40px;

border-radius:50%;

background:#00aaff;

display:flex;

align-items:center;

justify-content:center;

font-weight:bold;

}

.timeline-item h4{

margin-bottom:10px;

font-size:22px;

}

.timeline-item p{

color:#bfcde0;

line-height:28px;

}
/*======================
BUSINESS IMPACT
=======================*/

.impact-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:25px;

}

.impact-card{

background:#132345;
padding:30px;
border-radius:20px;
text-align:center;
transition:.4s;
border:1px solid rgba(255,255,255,.08);

}

.impact-card:hover{

transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,170,255,.25);

}

.impact-card h2{

font-size:40px;
color:#00aaff;
margin-bottom:10px;

}

.impact-card p{

color:#cbd5e1;

}

/*======================
BACK TO TOP
=======================*/

#topBtn{

position:fixed;

right:35px;

bottom:120px;

width:55px;

height:55px;

background:#009dff;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

color:#fff;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.4s;

z-index:999;

box-shadow:0 10px 30px rgba(0,162,255,.35);

}

#topBtn.show{

opacity:1;

visibility:visible;

}

#topBtn:hover{

transform:translateY(-8px);

background:#0077ff;

}

/*======================
FOOTER
=======================*/

footer{

margin-top:120px;

padding:70px 0;

background:#081120;

text-align:center;

}

footer img{

height:70px;

margin-bottom:20px;

}

footer h2{

margin-bottom:15px;

}

.footer-content p{

max-width:600px;

margin:auto;

color:#bfcde0;

line-height:30px;

}

.footer-links{

display:flex;

justify-content:center;

gap:35px;

margin:35px 0;

flex-wrap:wrap;

}

.footer-links a{

text-decoration:none;

color:white;

}

.socials{

display:flex;

justify-content:center;

gap:18px;

margin-bottom:30px;

}

.socials a{

width:50px;

height:50px;

background:#10203d;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:22px;

transition:.4s;

}

.socials a:hover{

background:#009dff;

transform:translateY(-6px);

}

.copy{

margin-top:30px;

font-size:15px;

color:#8ca2bf;

}

/*==========================
SCROLL BAR
==========================*/

#progressBar{

position:fixed;

top:0;

left:0;

width:0;

height:5px;

background:linear-gradient(to right,#00aaff,#0057ff);

z-index:999999;

}

@keyframes gradientMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

/*==========================
ABOUT CARDS
==========================*/

.about-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

margin-top:60px;

}

.about-card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

padding:40px;

border-radius:25px;

border:1px solid rgba(255,255,255,.08);

transition:.5s;

text-align:center;

}

.about-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 50px rgba(0,170,255,.25);

}

.about-card i{

font-size:55px;

color:#00aaff;

margin-bottom:20px;

display:block;

}

.about-card h3{

margin-bottom:15px;

font-size:28px;

}

.about-card p{

line-height:30px;

color:#c8d4e5;

}

/*======================
HERO BACKGROUND
======================*/

#home{

position:relative;

overflow:hidden;

}

.hero-bg{

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

z-index:-1;

overflow:hidden;

}

.circle{

position:absolute;

border-radius:50%;

filter:blur(70px);

opacity:.35;

}

.one{

width:350px;

height:350px;

background:#00aaff;

top:-100px;

left:-80px;

animation:float1 8s ease-in-out infinite alternate;

}

.two{

width:300px;

height:300px;

background:#0057ff;

right:-80px;

top:150px;

animation:float2 10s ease-in-out infinite alternate;

}

.three{

width:280px;

height:280px;

background:#00d4ff;

bottom:-120px;

left:45%;

animation:float3 12s ease-in-out infinite alternate;

}

.grid-overlay{

position:absolute;

width:100%;

height:100%;

background-image:

linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),

linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

background-size:40px 40px;

opacity:.35;

}

@keyframes float1{

0%{

transform:translate(0,0);

}

100%{

transform:translate(120px,80px);

}

}

@keyframes float2{

0%{

transform:translate(0,0);

}

100%{

transform:translate(-120px,-70px);

}

}

@keyframes float3{

0%{

transform:translate(0,0);

}

100%{

transform:translate(70px,-100px);

}

}

.hero-content,
.hero-image{

position:relative;

z-index:2;

}

/*==========================
PROJECT GALLERY
==========================*/

.project-gallery{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:20px;

margin-top:30px;

}

.project-gallery img{

width:100%;

height:220px;

object-fit:cover;

border-radius:18px;

cursor:pointer;

transition:.5s;

border:2px solid rgba(255,255,255,.08);

}

.project-gallery img:hover{

transform:scale(1.06);

box-shadow:0 20px 45px rgba(0,170,255,.35);

}

/*==========================
TECH BADGES
==========================*/

.tech-stack{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-top:20px;

}

.tech-badge{

padding:10px 20px;

border-radius:30px;

background:linear-gradient(135deg,#00aaff,#0057ff);

color:white;

font-size:15px;

font-weight:600;

transition:.4s;

}

.tech-badge:hover{

transform:translateY(-5px);

}

.project-card{

position:relative;

overflow:hidden;

}

.project-card::before{

content:"View Case Study";

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

display:flex;

justify-content:center;

align-items:center;

font-size:26px;

font-weight:bold;

color:white;

opacity:0;

transition:.4s;

}

.project-card:hover::before{

opacity:1;

}

/*======================
WHY CHOOSE US
=======================*/

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:60px;

}

.why-card{

padding:40px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

text-align:center;

transition:.4s;

backdrop-filter:blur(10px);

}

.why-card:hover{

transform:translateY(-12px);

box-shadow:0 20px 50px rgba(0,170,255,.25);

}

.why-card i{

font-size:55px;

color:#00aaff;

margin-bottom:20px;

display:block;

}

.why-card h3{

margin-bottom:15px;

font-size:26px;

}

.why-card p{

line-height:28px;

color:#cfd8e6;

}

/*==========================
LIGHTBOX
==========================*/

#lightbox{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.92);

display:none;

justify-content:center;

align-items:center;

z-index:9999;

}

#lightbox img{

max-width:90%;

max-height:90%;

border-radius:20px;

}

#closeLightbox{

position:absolute;

top:30px;

right:40px;

font-size:45px;

cursor:pointer;

color:white;

}

.project-card::before{

content:"";
position:absolute;
top:-120%;
left:-50%;
width:220%;
height:220%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,.15),
transparent
);

transform:rotate(25deg);
transition:1s;

}

.project-card:hover::before{

top:120%;

}

.project-card::after{

content:"";
position:absolute;
inset:-2px;
border-radius:25px;
padding:2px;

background:linear-gradient(
135deg,
#00bfff,
transparent,
#6c63ff,
transparent,
#00bfff
);

-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;
mask-composite:exclude;

opacity:0;
transition:.5s;

}

.project-card:hover::after{

opacity:1;

}

#projects{

animation:fadeProjects 1s ease;

}

@keyframes fadeProjects{

from{

opacity:0;

transform:translateY(80px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.slider-btn{
    width:70px;
    height:70px;
    border-radius:50%;
    border:none;
    background:#00aaff;
    color:#fff;
    font-size:36px;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    z-index:20;
    box-shadow:0 10px 35px rgba(0,170,255,.45);
    transition:.3s;
}

.slider-btn:hover{
    transform:scale(1.12);
    background:#0088ff;
}