

/* =====================================================
HEMANGI NEXT GEN TECH INDIA PRIVATE LIMITED
ULTIMATE PREMIUM PURPLE FUTURISTIC CSS
MERGED + MISSING OLD CSS ADDED
===================================================== */

:root{

--primary:#783c96;
--secondary:#b57edc;
--accent:#9b59b6;

--cyan:#00D2FF;

--dark:#050816;
--dark2:#0b1120;

--text:#ffffff;
--text-light:#cbd5e1;
--muted:#94a3b8;

--glass:rgba(255,255,255,.05);
--border:rgba(255,255,255,.08);

}

/* =====================================================
GLOBAL
===================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:var(--dark);
color:var(--text);
overflow-x:hidden;
position:relative;
}

/* =====================================================
SCROLLBAR
===================================================== */

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(var(--primary),var(--secondary));
border-radius:20px;
}

/* =====================================================
BACKGROUND EFFECTS
===================================================== */

body::before{
content:'';
position:fixed;
width:100%;
height:100%;

background:
radial-gradient(circle at top left,rgba(120,60,150,.18),transparent 30%),
radial-gradient(circle at bottom right,rgba(181,126,220,.12),transparent 30%);

background-image:
linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

background-size:50px 50px;
z-index:-2;
}

.bg-blur{
position:fixed;
width:500px;
height:500px;
background:var(--primary);
filter:blur(180px);
opacity:.18;
top:-200px;
right:-100px;
z-index:-1;
}

.bg-blur2{
position:fixed;
width:500px;
height:500px;
background:var(--secondary);
filter:blur(180px);
opacity:.12;
bottom:-200px;
left:-100px;
z-index:-1;
}

.mouse-glow{
position:fixed;
width:350px;
height:350px;
border-radius:50%;
background:
radial-gradient(circle,
rgba(120,60,150,.18),
transparent 70%);
pointer-events:none;
z-index:-1;
transform:translate(-50%,-50%);
mix-blend-mode:screen;
}

/* =====================================================
PARTICLES
===================================================== */

.particles{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
overflow:hidden;
z-index:-3;
pointer-events:none;
}

.particles span{
position:absolute;
display:block;
width:6px;
height:6px;
background:var(--secondary);
border-radius:50%;

box-shadow:
0 0 10px var(--primary),
0 0 20px var(--primary),
0 0 40px var(--primary);

animation:particleMove linear infinite;
opacity:.4;
}

.particles span:nth-child(1){
left:10%;
animation-duration:18s;
animation-delay:0s;
top:100%;
}

.particles span:nth-child(2){
left:25%;
animation-duration:22s;
animation-delay:3s;
top:100%;
}

.particles span:nth-child(3){
left:40%;
animation-duration:16s;
animation-delay:5s;
top:100%;
}

.particles span:nth-child(4){
left:55%;
animation-duration:20s;
animation-delay:2s;
top:100%;
}

.particles span:nth-child(5){
left:70%;
animation-duration:25s;
animation-delay:4s;
top:100%;
}

.particles span:nth-child(6){
left:85%;
animation-duration:19s;
animation-delay:1s;
top:100%;
}

.particles span:nth-child(7){
left:35%;
animation-duration:28s;
animation-delay:6s;
top:100%;
}

.particles span:nth-child(8){
left:65%;
animation-duration:24s;
animation-delay:7s;
top:100%;
}

@keyframes particleMove{

0%{
transform:translateY(0) scale(1);
opacity:0;
}

10%{
opacity:.5;
}

90%{
opacity:.5;
}

100%{
transform:translateY(-120vh) scale(1.8);
opacity:0;
}

}

/* =====================================================
NAVBAR
===================================================== */

nav,
#navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:16px 8%;
display:flex;
justify-content:space-between;
align-items:center;

background:rgba(255,255,255,.04);
backdrop-filter:blur(20px);

border-bottom:1px solid rgba(255,255,255,.08);

z-index:999;
transition:.4s;
}

nav.scrolled,
#navbar.scrolled{
background:rgba(5,8,22,.95);
backdrop-filter:blur(25px);

box-shadow:
0 5px 30px rgba(0,0,0,.3),
0 0 25px rgba(120,60,150,.25);
}

/* =====================================================
LOGO
===================================================== */

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
width:80px;
height:80px;
object-fit:contain;

filter:
drop-shadow(0 0 15px rgba(120,60,150,.6))
drop-shadow(0 0 25px rgba(181,126,220,.4));

animation:logoFloat 5s ease-in-out infinite;
}

.logo-text h2{
font-size:24px;
font-weight:700;

background:linear-gradient(90deg,var(--primary),var(--secondary));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.logo-text span{
font-size:11px;
letter-spacing:0.5px;
color:#9b59b6 !important;
}

.logo span{
color:var(--cyan);
}

@keyframes logoFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-5px);
}

100%{
transform:translateY(0px);
}

}

/* =====================================================
NAV MENU
===================================================== */

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav ul li a{
text-decoration:none;
color:#fff;
font-size:15px;
position:relative;
transition:.3s;
}

nav ul li a::after{
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0%;
height:2px;
background:var(--secondary);
transition:.3s;
}

nav ul li a:hover{
color:var(--secondary);
}

nav ul li a:hover::after{
width:100%;
}

/* =====================================================
MOBILE MENU
===================================================== */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

#nav-menu.active{
display:flex;
}

/* =====================================================
BUTTONS
===================================================== */

.nav-btn{
padding:14px 28px;
border:none;
border-radius:14px;

background:linear-gradient(90deg,var(--primary),var(--secondary));

font-weight:600;
color:#fff;
cursor:pointer;
transition:.4s;
}

.nav-btn:hover{
transform:translateY(-4px);

box-shadow:
0 0 20px rgba(120,60,150,.4),
0 0 40px rgba(181,126,220,.2);
}

/* =====================================================
HERO
===================================================== */

.hero{
min-height:100vh;
display:grid;
grid-template-columns:1.05fr .95fr;
align-items:center;
gap:40px;
padding:140px 8% 80px;
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
width:700px;
height:700px;

background:
radial-gradient(circle,rgba(120,60,150,.18),transparent 70%);

top:-200px;
left:-150px;
z-index:-1;
filter:blur(40px);
}

.hero::after{
content:'';
position:absolute;
width:600px;
height:600px;

background:
radial-gradient(circle,rgba(181,126,220,.12),transparent 70%);

bottom:-250px;
right:-200px;
z-index:-1;
filter:blur(60px);
}

.hero-left{
max-width:620px;
z-index:2;
}

.hero-right{
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

/* =====================================================
BADGES
===================================================== */

.badge,
.section-title span{
display:inline-flex;
align-items:center;
padding:10px 20px;

border-radius:50px;

background:rgba(255,255,255,.05);

border:1px solid rgba(181,126,220,.25);

font-size:13px;
font-weight:600;
letter-spacing:1px;

color:var(--secondary);

backdrop-filter:blur(12px);
}

.badge{
margin-bottom:25px;
}

/* =====================================================
SECTION TITLES
===================================================== */

.section-title{
text-align:center;
margin-bottom:45px;
}

.section-title h2{
font-size:50px;
margin-top:15px;
font-weight:700;

background:linear-gradient(90deg,#fff,var(--secondary));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* =====================================================
HERO TITLE
===================================================== */

.hero h1{
font-size:clamp(42px,5vw,72px);
line-height:1.05;
font-weight:800;
letter-spacing:-2px;
margin-bottom:24px;
max-width:650px;
}

.hero h1 span{
background:linear-gradient(90deg,var(--primary),var(--secondary));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:17px;
line-height:1.9;
color:var(--muted);
max-width:580px;
margin-bottom:35px;
}

/* =====================================================
HERO BUTTONS
===================================================== */

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-bottom:30px;
}

.primary-btn{
padding:16px 34px;
border:none;
border-radius:16px;

background:linear-gradient(90deg,var(--primary),var(--secondary));

font-size:15px;
font-weight:600;
color:#fff;
cursor:pointer;
transition:.4s;

box-shadow:
0 10px 30px rgba(120,60,150,.2);
}

.primary-btn:hover{
transform:translateY(-4px);

box-shadow:
0 0 25px rgba(120,60,150,.35),
0 0 50px rgba(181,126,220,.15);
}

.secondary-btn{
padding:16px 34px;
border-radius:16px;

border:1px solid rgba(255,255,255,.1);

background:rgba(255,255,255,.04);

color:#fff;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.4s;

backdrop-filter:blur(10px);
}

.secondary-btn:hover{
border-color:var(--secondary);
transform:translateY(-4px);
}

/* =====================================================
TRUST BADGES
===================================================== */

.trust-badges{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-top:25px;
}

.trust-badges span{
padding:10px 18px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:50px;
font-size:13px;
color:#cbd5e1;
transition:.4s;
}

.trust-badges span:hover{
transform:translateY(-5px);
border-color:var(--secondary);
}

/* =====================================================
MINI STATS
===================================================== */

.mini-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:18px;
margin-top:20px;
max-width:760px;
}

.mini-stat{
padding:24px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
backdrop-filter:blur(20px);
transition:.4s;
position:relative;
overflow:hidden;
}

.mini-stat::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.15),
rgba(181,126,220,.08)
);

opacity:0;
transition:.4s;
}

.mini-stat:hover::before{
opacity:1;
}

.mini-stat:hover{
transform:translateY(-10px);
border-color:var(--secondary);

box-shadow:
0 0 25px rgba(120,60,150,.25);
}

.mini-stat h3{
font-size:34px;
font-weight:800;
margin-bottom:8px;

background:linear-gradient(90deg,var(--primary),var(--secondary));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.mini-stat p{
font-size:14px;
margin:0;
line-height:1.5;
color:#94A3B8;
}

/* =====================================================
HERO VISUAL
===================================================== */

.hero-visual{
position:relative;
width:420px;
height:420px;
display:flex;
justify-content:center;
align-items:center;
}

.hero-logo{
width:180px;
z-index:5;

filter:
drop-shadow(0 0 20px var(--primary))
drop-shadow(0 0 40px var(--secondary));

animation:float 5s ease-in-out infinite;
}

.tech-circle{
position:absolute;
width:400px;
height:400px;
border-radius:50%;

border:1px solid rgba(255,255,255,.1);
border-top:2px solid var(--primary);

animation:rotateCircle 20s linear infinite;
}

.tech-circle2{
position:absolute;
width:280px;
height:280px;
border-radius:50%;

border:1px solid rgba(255,255,255,.08);
border-bottom:2px solid var(--secondary);

animation:rotateCircle 15s linear infinite reverse;
}

.floating-card{
position:absolute;
padding:15px 25px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:20px;

font-size:14px;
font-weight:600;

box-shadow:
0 0 20px rgba(120,60,150,.15);

transition:.4s;

animation:float 5s ease-in-out infinite;
}

.floating-card:hover{
transform:translateY(-8px);

border-color:var(--secondary);

box-shadow:
0 0 30px rgba(120,60,150,.25);
}

.card1{
top:10%;
left:0;
}

.card2{
top:20%;
right:0;
}

.card3{
bottom:15%;
left:5%;
}

.card4{
bottom:5%;
right:10%;
}

/* =====================================================
STATS SECTION
===================================================== */

.stats-section{
padding:40px 8% 100px;
position:relative;
}

.stats-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-box{
position:relative;
padding:40px 30px;
border-radius:30px;

background:
linear-gradient(
135deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

overflow:hidden;
transition:.4s;
text-align:center;
}

.stat-box::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.18),
rgba(181,126,220,.10)
);

opacity:0;
transition:.4s;
}

.stat-box:hover::before{
opacity:1;
}

.stat-box:hover{
transform:translateY(-10px);

border-color:var(--secondary);

box-shadow:
0 0 25px rgba(120,60,150,.18),
0 0 45px rgba(181,126,220,.08);
}

.stat-box h2{
font-size:52px;
font-weight:800;
margin-bottom:12px;

background:linear-gradient(90deg,var(--primary),var(--secondary));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

position:relative;
z-index:2;
}

.stat-box p{
font-size:16px;
color:var(--text-light);
position:relative;
z-index:2;
}

/* =====================================================
SECTIONS
===================================================== */

section{
padding:70px 8%;
animation:fadeUp 1s ease;
}

/* =====================================================
CARDS
===================================================== */

.service-card,
.why-card,
.feature-box,
.contact-form,
.contact-info,
.testimonial-card,
.faq-item{
position:relative;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

backdrop-filter:blur(20px);

transition:.4s;
overflow:hidden;
}

.service-card::before,
.why-card::before,
.feature-box::before,
.testimonial-card::before,
.faq-item::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.15),
rgba(181,126,220,.08)
);

opacity:0;
transition:.4s;
}

.service-card:hover::before,
.why-card:hover::before,
.feature-box:hover::before,
.testimonial-card:hover::before,
.faq-item:hover::before{
opacity:1;
}

.service-card:hover,
.why-card:hover,
.feature-box:hover,
.testimonial-card:hover,
.faq-item:hover{
transform:translateY(-10px);

border-color:var(--secondary);

box-shadow:
0 0 30px rgba(120,60,150,.18),
0 0 50px rgba(181,126,220,.08);
}

.service-card{
padding:35px;
}

.service-icon{
font-size:52px;
margin-bottom:25px;
}

.service-card h3,
.why-card h3{
font-size:24px;
margin-bottom:18px;
}

.service-card p,
.about-content p,
.contact-info p,
.testimonial-card p{
line-height:1.9;
color:var(--text-light);
}

/* =====================================================
GRIDS
===================================================== */

.services-grid,
.why-grid,
.portfolio-grid,
.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

/* =====================================================
ABOUT
===================================================== */

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-image{
height:500px;
border-radius:30px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
position:relative;
}

.about-img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.about-img:hover{
transform:scale(1.05);
}

.features{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.feature-box{
padding:22px;
}


/* =====================================================
TECH STACK
===================================================== */

.tech-stack{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:25px;
}

.tech{
padding:18px 30px;

background:rgba(255,255,255,.04);

border-radius:18px;

border:1px solid rgba(255,255,255,.08);

font-weight:600;

transition:.3s;
}

.tech:hover{
transform:scale(1.08);

border-color:var(--secondary);

box-shadow:
0 0 25px rgba(120,60,150,.2);
}

/* =====================================================
PORTFOLIO
===================================================== */

.portfolio-card{
position:relative;
overflow:hidden;
border-radius:30px;
height:350px;
cursor:pointer;
}

.portfolio-card img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.portfolio-card:hover img{
transform:scale(1.1);
}

.portfolio-overlay{
position:absolute;
inset:0;

background:
linear-gradient(transparent,#050816);

display:flex;
flex-direction:column;
justify-content:flex-end;

padding:30px;
opacity:0;
transition:.4s;
}

.portfolio-card:hover .portfolio-overlay{
opacity:1;
}

/* =====================================================
CLIENTS
===================================================== */

.clients{
padding:80px 8%;
position:relative;
overflow:hidden;
}

.client-logos{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:30px;
margin-top:50px;
}

.client-logos div{
padding:22px 40px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
font-size:18px;
font-weight:600;
color:#94a3b8;
backdrop-filter:blur(20px);
transition:.4s;
position:relative;
overflow:hidden;
}

.client-logos div::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.15),
rgba(181,126,220,.08)
);

opacity:0;
transition:.4s;
}

.client-logos div:hover::before{
opacity:1;
}

.client-logos div:hover{
transform:translateY(-8px);
border-color:var(--secondary);
color:#fff;

box-shadow:
0 0 25px rgba(120,60,150,.25);
}

/* =====================================================
TESTIMONIALS
===================================================== */

.testimonial-card{
padding:35px;
}

.stars{
color:#FFD700;
margin-bottom:20px;
}

/* =====================================================
FAQ
===================================================== */

.faq-container{
max-width:950px;
margin:auto;
display:flex;
flex-direction:column;
gap:22px;
}

.faq-question{
padding:28px 30px;
cursor:pointer;
font-weight:600;
font-size:18px;

display:flex;
justify-content:space-between;
align-items:center;
}

.faq-question::after{
content:'+';
font-size:28px;
font-weight:300;
color:#9b59b6 !important;
transition:.4s;
}

.faq-item.active .faq-question::after{
color:#b57edc !important;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .5s ease;
padding:0 30px;
}

.faq-answer p{
padding-bottom:28px;
line-height:1.9;
color:var(--text-light);
}

.faq-item.active .faq-answer{
max-height:300px;
}

/* =====================================================
CONTACT
===================================================== */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-form,
.contact-info{
padding:40px;
}

.contact-info h3{
font-size:36px;
margin-bottom:25px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:18px;
margin-bottom:20px;

background:var(--dark2);

border:1px solid rgba(255,255,255,.08);

border-radius:14px;

color:#fff;

font-family:'Poppins';
}

.contact-form input:focus,
.contact-form textarea:focus{
outline:none;
border-color:#9b59b6 !important;

box-shadow:
0 0 20px rgba(120,60,150,.2);
}

.contact-form textarea{
height:150px;
resize:none;
}

.contact-form button{
width:100%;
}

/* =====================================================
CTA SECTION
===================================================== */

.cta-section{
text-align:center;
padding:120px 8%;

background:
linear-gradient(
135deg,
rgba(120,60,150,.15),
rgba(181,126,220,.08)
);

border-top:1px solid rgba(255,255,255,.08);
border-bottom:1px solid rgba(255,255,255,.08);
}

.cta-section h2{
font-size:52px;
margin-bottom:25px;
}

.cta-section p{
max-width:800px;
margin:auto;
line-height:1.8;
color:var(--text-light);
margin-bottom:35px;
}

/* =====================================================
FOOTER
===================================================== */

footer{
position:relative;

padding:90px 8% 40px;

margin-top:100px;

background:
linear-gradient(
180deg,
rgba(255,255,255,.02),
rgba(255,255,255,.01)
);

border-top:1px solid rgba(255,255,255,.08);

overflow:hidden;
}

footer::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:var(--primary);
filter:blur(180px);
opacity:.12;
top:-200px;
right:-150px;
}

.footer-top{
display:flex;
justify-content:space-between;
gap:80px;
flex-wrap:wrap;
margin-bottom:60px;
position:relative;
z-index:2;
}

/* =========================================
FOOTER BRAND FIX
========================================= */

.footer-brand{
width:100%;
max-width:350px;
}

/* LOGO ROW */

.footer-logo{
display:flex;
align-items:center;
gap:14px;
margin-bottom:18px;
}

/* IMAGE */

.footer-logo img{
width:70px;
height:auto;
object-fit:contain;

filter:
drop-shadow(0 0 15px rgba(181,126,220,.35));
}

/* BRAND TEXT */

.footer-logo h2{
font-size:34px;
font-weight:800;
line-height:1.1;

background:linear-gradient(
90deg,
#b57edc,
#783c96
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin:0;
}

/* COMPANY DESCRIPTION */

.footer-brand p{
font-size:16px;
line-height:1.8;
color:rgba(255,255,255,.75);
margin-top:12px;
}

/* MOBILE FIX */

@media(max-width:768px){

.footer-brand{
max-width:100%;
}

/* SAME AS NAVBAR */

.footer-logo{
align-items:center;
gap:12px;
}

.footer-logo img{
width:62px;
}

.footer-logo h2{
font-size:28px;
line-height:1.1;
}

/* Better spacing */

.footer-brand p{
font-size:15px;
line-height:1.7;
margin-top:10px;
}

}

/* TAGLINE */

.footer-tagline{
display:block;

font-size:14px;
font-weight:500;

color:#b57edc;

margin-top:4px;

letter-spacing:.5px;
}

.footer-socials{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.footer-socials a{
padding:12px 22px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
border-radius:14px;
text-decoration:none;
color:#fff;
transition:.4s;
backdrop-filter:blur(20px);
}

.footer-socials a:hover{
transform:translateY(-5px);
border-color:var(--secondary);

box-shadow:
0 0 25px rgba(120,60,150,.25);
}

.footer-links{
display:flex;
gap:70px;
flex-wrap:wrap;
}

.footer-column{
display:flex;
flex-direction:column;
gap:14px;
min-width:180px;
}

.footer-column h3{
font-size:20px;
margin-bottom:10px;
color:#fff;
}

.footer-column a,
.footer-column p{
text-decoration:none;
color:#94a3b8;
transition:.3s;
font-size:15px;
}

.footer-column a:hover{
color:var(--secondary);
transform:translateX(5px);
}

.footer-bottom{
padding-top:30px;
border-top:1px solid rgba(255,255,255,.08);

display:flex;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;

color:#94a3b8;

position:relative;
z-index:2;
}

.footer-bottom p{
font-size:14px;
}

/* =====================================================
SCROLL REVEAL
===================================================== */

.reveal{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* =====================================================
ANIMATIONS
===================================================== */

@keyframes rotateCircle{

0%{
transform:rotate(0deg);
}

100%{
transform:rotate(360deg);
}

}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0px);
}

}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* =====================================================
ULTIMATE RESPONSIVE FIX
===================================================== */

html,
body{
overflow-x:hidden;
width:100%;
}

/* =========================
LAPTOP
========================= */

@media(max-width:1200px){

.hero{
grid-template-columns:1fr;
text-align:center;
padding:160px 6% 80px;
gap:70px;
}

.hero-left{
max-width:100%;
display:flex;
flex-direction:column;
align-items:center;
}

.hero-right{
width:100%;
}

.hero p{
margin:auto;
max-width:750px;
}

.hero-buttons{
justify-content:center;
}

.hero-visual{
margin:auto;
}

.about,
.contact-wrapper{
grid-template-columns:1fr;
}

.about-image{
height:420px;
}

.stats-container{
grid-template-columns:repeat(2,1fr);
}

.mini-stats{
grid-template-columns:repeat(2,1fr);
}

.footer-top{
gap:50px;
}

}

/* =========================
TABLET
========================= */

@media(max-width:992px){

nav{
padding:14px 5%;
}

.logo img{
width:60px;
height:60px;
}

.logo-text h2{
font-size:28px;
}

.logo-text span{
font-size:12px;
line-height:1.4;
display:block;
}

.nav-btn{
padding:12px 20px;
font-size:14px;
}

.menu-toggle{
display:block;
font-size:34px;
z-index:1001;
}

#nav-menu{
position:absolute;
top:100%;
left:0;
width:100%;
background:rgba(5,8,22,.98);
backdrop-filter:blur(20px);
flex-direction:column;
padding:30px;
gap:25px;
display:none;
border-bottom:1px solid rgba(255,255,255,.08);
}

#nav-menu.active{
display:flex;
}

nav ul{
display:none;
}

nav ul li{
width:100%;
}

nav ul li a{
display:block;
font-size:18px;
padding:10px 0;
}

.hero h1{
font-size:58px;
line-height:1.1;
}

.hero p{
font-size:18px;
line-height:1.9;
}

.section-title h2{
font-size:42px;
}

.hero-visual{
width:380px;
height:380px;
}

.tech-circle{
width:340px;
height:340px;
}

.tech-circle2{
width:240px;
height:240px;
}

.stats-container{
grid-template-columns:1fr 1fr;
gap:20px;
}

.services-grid,
.portfolio-grid,
.testimonial-grid,
.why-grid{
grid-template-columns:1fr 1fr;
}

.features{
grid-template-columns:1fr 1fr;
}

.client-logos{
justify-content:center;
}

.client-logos div{
width:calc(50% - 20px);
text-align:center;
}

.footer-links{
width:100%;
justify-content:space-between;
}

}

/* =========================
MOBILE LARGE
========================= */

@media(max-width:768px){

section{
padding:55px 5%;
}

nav{
padding:12px 5%;
}

.logo{
gap:10px;
}

.logo img{
width:52px;
height:52px;
}

.logo-text h2{
font-size:22px;
line-height:1;
}

.logo-text span{
font-size:10px;
}

.nav-btn{
padding:10px 16px;
font-size:13px;
border-radius:12px;
}

.hero{
padding:140px 5% 70px;
min-height:auto;
gap:40px;
}

.badge{
font-size:11px;
padding:8px 16px;
text-align:center;
}

.hero h1{
font-size:44px;
line-height:1.15;
letter-spacing:-1px;
}

.hero p{
font-size:16px;
line-height:1.8;
}

.hero-buttons{
flex-direction:column;
width:100%;
gap:15px;
}

.primary-btn,
.secondary-btn{
width:100%;
padding:16px 20px;
font-size:15px;
}

.hero-visual{
width:100%;
height:320px;
}

.tech-circle{
width:280px;
height:280px;
}

.tech-circle2{
width:200px;
height:200px;
}

.hero-logo{
width:110px;
}

.floating-card{
padding:10px 14px;
font-size:11px;
border-radius:14px;
}

.card1{
left:0;
top:12%;
}

.card2{
right:0;
top:20%;
}

.card3{
bottom:18%;
left:5%;
}

.card4{
bottom:8%;
right:5%;
}

.stats-container{
grid-template-columns:1fr;
}

.stat-box{
padding:35px 25px;
}

.stat-box h2{
font-size:48px;
}

.services-grid,
.portfolio-grid,
.testimonial-grid,
.why-grid,
.features{
grid-template-columns:1fr;
}

.client-logos{
gap:18px;
}

.client-logos div{
width:100%;
padding:20px;
font-size:16px;
}

.about-image{
height:300px;
}

.section-title{
margin-bottom:50px;
}

.section-title h2{
font-size:34px;
line-height:1.2;
}

.contact-form,
.contact-info{
padding:30px 22px;
}

.contact-info h3{
font-size:30px;
}

.cta-section{
padding:90px 5%;
}

.cta-section h2{
font-size:36px;
line-height:1.2;
}

.footer-top{
flex-direction:column;
}

.footer-brand{
min-width:100%;
}

.footer-links{
gap:35px;
flex-direction:column;
}

.footer-column{
min-width:100%;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

nav{
padding:10px 4%;
}

.logo img{
width:46px;
height:46px;
}

.logo-text h2{
font-size:18px;
}

.logo-text span{
font-size:9px;
}

.nav-btn{
padding:10px 14px;
font-size:12px;
}

.menu-toggle{
font-size:30px;
}

.hero{
padding:120px 4% 60px;
}

.hero h1{
font-size:32px;
line-height:1.18;
}

.hero p{
font-size:15px;
line-height:1.9;
}

.badge{
font-size:10px;
padding:8px 14px;
}

.hero-visual{
height:260px;
}

.tech-circle{
width:220px;
height:220px;
}

.tech-circle2{
width:160px;
height:160px;
}

.hero-logo{
width:90px;
}

.floating-card{
font-size:10px;
padding:8px 12px;
}

.section-title h2{
font-size:28px;
}

.stat-box{
padding:30px 20px;
border-radius:24px;
}

.stat-box h2{
font-size:40px;
}

.service-card,
.why-card,
.feature-box,
.testimonial-card,
.contact-form,
.contact-info{
padding:24px 20px;
border-radius:24px;
}

.contact-form input,
.contact-form textarea{
padding:15px;
font-size:14px;
}

.faq-question{
padding:22px 20px;
font-size:15px;
}

.faq-answer{
padding:0 20px;
}

.cta-section h2{
font-size:28px;
}

.footer-logo{
align-items:flex-start;
}

.footer-logo h2{
font-size:22px;
line-height:1.2;
}

.footer-brand p{
font-size:14px;
line-height:1.9;
}

}

/* =========================
EXTRA SMALL DEVICES
========================= */

@media(max-width:360px){

.hero h1{
font-size:28px;
}

.hero p{
font-size:14px;
}

.logo-text h2{
font-size:16px;
}

.logo-text span{
font-size:8px;
}

.nav-btn{
padding:8px 12px;
font-size:11px;
}

.primary-btn,
.secondary-btn{
font-size:14px;
padding:14px 16px;
}

.section-title h2{
font-size:24px;
}

}

/* =========================
FIX OVERFLOW ISSUES
========================= */

img{
max-width:100%;
display:block;
}

.hero-left,
.hero-right,
.about-content,
.contact-info,
.contact-form{
min-width:0;
}

.client-logos div,
.service-card,
.stat-box,
.feature-box,
.testimonial-card,
.why-card{
word-break:break-word;
}

/* =========================
SMOOTH MOBILE EXPERIENCE
========================= */

@media(max-width:768px){

.bg-blur,
.bg-blur2{
opacity:.08;
}

.mouse-glow{
display:none;
}

body::before{
background-size:35px 35px;
}

}

/* =========================
MODERN FAQ SECTION
========================= */

.faq-container{
max-width:950px;
margin:auto;
display:flex;
flex-direction:column;
gap:22px;
}

.faq-item{
background:
linear-gradient(
135deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03)
);
border:1px solid rgba(255,255,255,.08);
border-radius:24px;
overflow:hidden;
backdrop-filter:blur(20px);
transition:.4s;
position:relative;
}

.faq-item::before{
content:'';
position:absolute;
inset:0;
background:
linear-gradient(
135deg,
rgba(0,210,255,.12),
rgba(120,60,150,.10)
);
opacity:0;
transition:.4s;
}

.faq-item:hover::before{
opacity:1;
}

.faq-item:hover{
transform:translateY(-6px);
border-color:#00D2FF;
box-shadow:
0 0 25px rgba(0,210,255,.12),
0 0 50px rgba(120,60,150,.10);
}

.faq-question{
padding:28px 30px;
cursor:pointer;
font-weight:600;
font-size:18px;
position:relative;
display:flex;
justify-content:space-between;
align-items:center;
z-index:2;
}

.faq-question::after{
content:'+';
font-size:28px;
font-weight:300;
color:#00D2FF;
transition:.4s;
}

.faq-item.active .faq-question::after{
transform:rotate(45deg);
color:#fff;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .5s ease;
padding:0 30px;
position:relative;
z-index:2;
}

.faq-answer p{
color:#cbd5e1;
line-height:1.9;
padding-bottom:28px;
font-size:15px;
}

.faq-item.active .faq-answer{
max-height:300px;
}

/* WHY US */

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.why-card{
padding:30px;
background:rgba(255,255,255,.04);
border-radius:25px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

.why-card:hover{
transform:translateY(-8px);
}

/* =========================
FAQ PURPLE BORDER FIX
========================= */

.faq-item{
border:1px solid #9b59b6 !important;

box-shadow:
0 0 12px rgba(155,89,182,.18);
}

.faq-item:hover{
border-color:#b57edc !important;

box-shadow:
0 0 25px rgba(155,89,182,.35),
0 0 50px rgba(181,126,220,.18) !important;
}

.faq-item.active{
border-color:#b57edc !important;

box-shadow:
0 0 30px rgba(155,89,182,.40),
0 0 60px rgba(181,126,220,.22) !important;
}

/* =====================================================
MOBILE VIEW PREMIUM IMPROVEMENTS
===================================================== */

@media(max-width:768px){

/* HIDE START PROJECT BUTTON */

.nav-btn{
display:none;
}

/* =========================
STATS SLIDER
========================= */

.stats-section{
padding-top:40px;
}

.stats-slider{
position:relative;
height:230px;
overflow:hidden;
}

.stat-slide{
position:absolute;
inset:0;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

padding:40px 20px;

background:
linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

border-radius:30px;

backdrop-filter:blur(20px);

opacity:0;
transform:scale(.9);

transition:all .8s ease;

box-shadow:
0 0 30px rgba(120,60,150,.15);

}

.stat-slide.active{
opacity:1;
transform:scale(1);
}

.stat-slide::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.22),
rgba(181,126,220,.10)
);

border-radius:30px;
}

.stat-slide h2{
font-size:58px;
font-weight:800;
margin-bottom:10px;

position:relative;
z-index:2;

background:linear-gradient(90deg,#fff,#b57edc);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stat-slide p{
font-size:16px;
color:#cbd5e1;
position:relative;
z-index:2;
text-align:center;
}

/* =========================================
MOBILE ABOUT SECTION FIX
========================================= */

.about{
gap:24px;
}

.about-image{
height:220px;
border-radius:24px;
overflow:hidden;
}

.about-img{
object-fit:cover;
}

.about-content{

padding:22px 18px;

border-radius:24px;

background:
linear-gradient(
135deg,
rgba(255,255,255,.05),
rgba(255,255,255,.02)
);

border:1px solid rgba(255,255,255,.07);

backdrop-filter:blur(16px);

box-shadow:
0 0 20px rgba(120,60,150,.10);

}

.about-content p{

font-size:14px;
line-height:1.9;

color:#dbe4f0;

margin-bottom:18px;

text-align:left;

}

/* FEATURES GRID */

.features{

grid-template-columns:1fr 1fr;

gap:14px;

margin-top:22px;

}

/* FEATURE BOX */

.feature-box{

padding:18px 12px;

min-height:90px;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

border-radius:18px;

background:
linear-gradient(
135deg,
rgba(120,60,150,.14),
rgba(181,126,220,.04)
);

border:1px solid rgba(181,126,220,.12);

transition:.3s;

}

.feature-box:hover{
transform:translateY(-4px);
}

.feature-box h3{

font-size:14px;
line-height:1.5;
font-weight:600;

}

/* EXTRA SMALL MOBILE */

@media(max-width:480px){

.about-content{
padding:18px 15px;
}

.about-content p{
font-size:13.5px;
line-height:1.85;
}

.features{
gap:12px;
}

.feature-box{
padding:16px 10px;
min-height:80px;
}

.feature-box h3{
font-size:13px;
}

}

/* =========================
SERVICES MOBILE PREMIUM
========================= */

.service-card{
padding:30px 25px;
border-radius:28px;

background:
linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03)
);

overflow:hidden;
position:relative;
}

.service-card::after{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:5px;

background:
linear-gradient(
90deg,
#783c96,
#b57edc
);
}

.service-card:hover{
transform:translateY(-8px) scale(1.02);
}

.service-icon{
font-size:56px;
margin-bottom:20px;

filter:
drop-shadow(0 0 15px rgba(181,126,220,.4));
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
}

.service-card p{
font-size:15px;
line-height:1.9;
}

/* =========================
WHY CHOOSE US MOBILE
========================= */

.why-card{
padding:28px;
text-align:center;

background:
linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03)
);

border-radius:28px;
}

.why-card h3{
font-size:20px;
line-height:1.6;
}

.why-card:hover{
transform:translateY(-10px) scale(1.02);
}

/* =========================
FAQ MOBILE PREMIUM
========================= */

.faq-item{
border-radius:26px !important;
overflow:hidden;
}

.faq-question{
font-size:16px;
line-height:1.6;
padding:24px 22px;
}

.faq-answer p{
font-size:15px;
line-height:2;
color:#dbe4f0;
}

.faq-item.active{
transform:scale(1.02);
}

/* =========================
CTA SECTION PREMIUM
========================= */

.cta-section{
position:relative;
overflow:hidden;

border-radius:35px;

margin:40px 5%;

background:
linear-gradient(
135deg,
rgba(120,60,150,.22),
rgba(181,126,220,.10)
);

box-shadow:
0 0 40px rgba(120,60,150,.18);
}

.cta-section::before{
content:'';
position:absolute;

width:300px;
height:300px;

background:rgba(181,126,220,.15);

filter:blur(100px);

top:-120px;
right:-100px;
}

.cta-section h2{
font-size:34px;
line-height:1.3;
position:relative;
z-index:2;
}

.cta-section p{
font-size:16px;
line-height:2;
position:relative;
z-index:2;
}

.cta-section .primary-btn{
position:relative;
z-index:2;

background:
linear-gradient(
90deg,
#783c96,
#b57edc
);

box-shadow:
0 0 25px rgba(181,126,220,.35);
}

/* =========================
SECTION SPACING
========================= */

.services-grid,
.why-grid,
.testimonial-grid,
.portfolio-grid{
gap:24px;
}

}

/* =========================================
STATS SECTION FINAL FIX
========================================= */

/* DESKTOP VIEW */

.stats-slider{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
position:relative;
}

.stat-slide{
position:relative;
padding:40px 30px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

border-radius:30px;

background:
linear-gradient(
135deg,
rgba(255,255,255,.07),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

text-align:center;

overflow:hidden;

transition:.4s ease;

opacity:1;
transform:translateY(0) scale(1);
}

.stat-slide::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.18),
rgba(181,126,220,.08)
);

opacity:0;
transition:.4s;
}

.stat-slide:hover::before{
opacity:1;
}

.stat-slide:hover{
transform:translateY(-8px);

border-color:var(--secondary);

box-shadow:
0 0 30px rgba(120,60,150,.25),
0 0 50px rgba(181,126,220,.10);
}

.stat-slide h2{
font-size:52px;
font-weight:800;
margin-bottom:12px;

position:relative;
z-index:2;

background:linear-gradient(90deg,#fff,#b57edc);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stat-slide p{
font-size:16px;
color:#dbe4f0;

position:relative;
z-index:2;
}

/* =========================================
MOBILE STATS SLIDER
========================================= */

@media(max-width:768px){

.stats-slider{
height:240px;
position:relative;
overflow:hidden;
display:block;
}

.stat-slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

opacity:0;
transform:scale(.92);

padding:35px 20px;

transition:
opacity .7s ease,
transform .7s ease;
}

.stat-slide.active{
opacity:1;
transform:scale(1);
z-index:2;
}

.stat-slide h2{
font-size:54px;
}

.stat-slide p{
font-size:15px;
}

}

/* =====================================================
TESTIMONIAL SLIDER FINAL FIX
===================================================== */

.testimonials-section{
position:relative;
overflow:hidden;
padding-bottom:40px;
}

.testimonial-slider{
width:100%;
overflow:hidden;
position:relative;
padding:25px 0;
}

.testimonial-track{
display:flex;
align-items:stretch;
gap:30px;
transition:transform 1.8s ease-in-out;
will-change:transform;
padding:15px 0;
}

/* CARD */

.testimonial-card{
position:relative;

min-width:280px;
max-width:320px;
flex-shrink:0;

padding:35px;

border-radius:30px;

background:
linear-gradient(
135deg,
rgba(255,255,255,.07),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

transition:
transform .5s ease,
opacity .5s ease,
box-shadow .5s ease;

overflow:hidden;

/* IMPORTANT */
margin-top:15px;
margin-bottom:15px;
}

/* HOVER FIX */

.testimonial-card:hover{
transform:translateY(-10px);

border-color:var(--secondary);

box-shadow:
0 0 30px rgba(120,60,150,.25),
0 0 50px rgba(181,126,220,.12);
}

@media(max-width:768px){

/* SECTION */

.testimonials-section{
padding-left:16px;
padding-right:16px;
overflow:hidden;
}

/* SLIDER */

.testimonial-slider{
overflow:hidden;
padding:10px 0 25px;
width:100%;
}

/* TRACK */

.testimonial-track{
gap:0;
padding:0;
width:100%;
display:flex;
}

/* CARD */

.testimonial-card{

min-width:100%;
max-width:100%;

width:100%;

margin:0;

padding:24px 18px;

border-radius:24px;

opacity:.45;

transform:scale(.88);

transition:
transform 1s ease,
opacity 1s ease;

overflow:hidden;

box-sizing:border-box;
}

/* ACTIVE CARD */

.testimonial-card.active{
opacity:1;
transform:scale(.96);
}

/* TEXT */

.testimonial-card p{
font-size:15px;
line-height:1.7;
word-break:break-word;
}

.testimonial-card h3{
font-size:20px;
word-break:break-word;
}

/* STARS */

.stars{
font-size:18px;
margin-bottom:14px;
}

}

/* =====================================================
SCROLL TO TOP BUTTON
===================================================== */

.scroll-top-btn{
position:fixed;

bottom:25px;
right:25px;

width:55px;
height:55px;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

font-size:28px;
font-weight:700;

cursor:pointer;

color:#fff;

background:
linear-gradient(
135deg,
#783c96,
#b57edc
);

box-shadow:
0 0 20px rgba(120,60,150,.35),
0 0 40px rgba(181,126,220,.18);

z-index:999;

opacity:0;
visibility:hidden;

transform:translateY(20px);

transition:
opacity .4s ease,
transform .4s ease,
box-shadow .4s ease;
}

/* SHOW BUTTON */

.scroll-top-btn.show{
opacity:1;
visibility:visible;
transform:translateY(0);
}

/* HOVER EFFECT */

.scroll-top-btn:hover{

transform:
translateY(-5px)
scale(1.08);

box-shadow:
0 0 30px rgba(120,60,150,.55),
0 0 60px rgba(181,126,220,.30);

}

/* MOBILE */

@media(max-width:768px){

.scroll-top-btn{

width:50px;
height:50px;

font-size:24px;

right:18px;
bottom:18px;

}

}

/* =========================================
TOAST MESSAGE
========================================= */

.toast-message{

position:fixed;

bottom:30px;
right:30px;

background:linear-gradient(
135deg,
#783c96,
#b57edc
);

color:#fff;

padding:16px 24px;

border-radius:14px;

font-size:15px;
font-weight:600;

box-shadow:
0 0 25px rgba(181,126,220,.35);

z-index:9999;

opacity:0;
visibility:hidden;

transform:translateY(30px);

transition:
all .4s ease;

}

/* SHOW */

.toast-message.show{

opacity:1;
visibility:visible;

transform:translateY(0);

}

/* MOBILE */

@media(max-width:768px){

.toast-message{

right:15px;
left:15px;
bottom:20px;

text-align:center;

font-size:14px;

}

}

/* =========================
READ MORE BUTTON
========================= */

.read-more-btn{
display:inline-flex;
align-items:center;
gap:10px;
padding:14px 28px;
margin-top:30px;
background:linear-gradient(135deg,#7f5cff,#5b2dff);
color:#fff;
font-size:15px;
font-weight:600;
border-radius:14px;
text-decoration:none;
transition:0.4s;
box-shadow:0 10px 30px rgba(91,45,255,0.35);
position:relative;
overflow:hidden;
}

.read-more-btn:hover{
transform:translateY(-4px);
box-shadow:0 15px 40px rgba(91,45,255,0.45);
}

.read-more-btn::before{
content:'';
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:rgba(255,255,255,0.15);
transition:0.5s;
}

.read-more-btn:hover::before{
left:100%;
}

.services-readmore{
text-align:center;
margin-top:50px;
}


/* =====================================================
ABOUT PAGE CSS
HEMANGI NEXT GEN TECH
MATCHING GLOBAL DESIGN SYSTEM
===================================================== */

/* =========================
PAGE HERO
========================= */

.page-hero{
position:relative;
padding:180px 8% 100px;
text-align:center;
overflow:hidden;

background:
linear-gradient(
135deg,
rgba(120,60,150,.18),
rgba(181,126,220,.08)
);

border-bottom:1px solid rgba(255,255,255,.08);
}

.page-hero::before{
content:'';
position:absolute;

width:700px;
height:700px;

background:
radial-gradient(
circle,
rgba(120,60,150,.22),
transparent 70%
);

top:-250px;
left:-150px;

filter:blur(60px);

z-index:0;
}

.page-hero::after{
content:'';
position:absolute;

width:600px;
height:600px;

background:
radial-gradient(
circle,
rgba(181,126,220,.14),
transparent 70%
);

bottom:-250px;
right:-150px;

filter:blur(70px);

z-index:0;
}

.page-hero h1{
position:relative;
z-index:2;

font-size:clamp(42px,6vw,72px);
font-weight:800;

margin-bottom:25px;

line-height:1.1;
letter-spacing:-2px;

background:
linear-gradient(
90deg,
#ffffff,
#b57edc
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.page-hero p{
position:relative;
z-index:2;

max-width:900px;
margin:auto;

font-size:18px;
line-height:2;

color:#cbd5e1;
}

/* =========================
HIGHLIGHT TEXT
========================= */

.highlight{
background:
linear-gradient(
90deg,
#783c96,
#b57edc
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* =========================
ABOUT PAGE SECTION
========================= */

.about-page{
position:relative;
padding:100px 8%;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;
}

/* IMAGE */

.about-grid img{
width:100%;
height:450px;
object-fit:cover;

border-radius:32px;

border:1px solid rgba(255,255,255,.08);

box-shadow:
0 20px 60px rgba(0,0,0,.35),
0 0 40px rgba(120,60,150,.12);

transition:.5s ease;
}

.about-grid img:hover{
transform:scale(1.03);

box-shadow:
0 30px 70px rgba(0,0,0,.45),
0 0 50px rgba(181,126,220,.20);
}

/* CONTENT */

.about-content{
position:relative;

padding:40px;

border-radius:32px;

background:
linear-gradient(
135deg,
rgba(255,255,255,.05),
rgba(255,255,255,.02)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

overflow:hidden;
}

.about-content::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.12),
rgba(181,126,220,.04)
);

opacity:0;
transition:.4s;
}

.about-content:hover::before{
opacity:1;
}

.about-content h2{
position:relative;
z-index:2;

font-size:48px;
font-weight:700;

margin-bottom:30px;

background:
linear-gradient(
90deg,
#ffffff,
#b57edc
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.about-content p{
position:relative;
z-index:2;

font-size:16px;
line-height:2;

color:#cbd5e1;

margin-bottom:20px;
}

/* =========================
MISSION VISION SECTION
========================= */

.mission-vision{
padding:40px 8% 120px;

display:grid;
grid-template-columns:1fr 1fr;
gap:35px;
}

/* CARD */

.mv-card{
position:relative;

padding:55px 45px;

border-radius:32px;

overflow:hidden;

background:
linear-gradient(
135deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

transition:.5s ease;
}

.mv-card::before{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.16),
rgba(181,126,220,.08)
);

opacity:0;
transition:.5s;
}

.mv-card:hover::before{
opacity:1;
}

.mv-card:hover{
transform:translateY(-10px);

border-color:#b57edc;

box-shadow:
0 0 35px rgba(120,60,150,.25),
0 0 60px rgba(181,126,220,.12);
}

/* ICON */

.mv-card img{
position:relative;
z-index:2;

width:85px;
margin-bottom:30px;

filter:
drop-shadow(0 0 20px rgba(181,126,220,.4));
}

/* TITLE */

.mv-card h2{
position:relative;
z-index:2;

font-size:36px;
font-weight:700;

margin-bottom:22px;

background:
linear-gradient(
90deg,
#ffffff,
#b57edc
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* TEXT */

.mv-card p{
position:relative;
z-index:2;

font-size:16px;
line-height:2;

color:#cbd5e1;

margin-bottom:18px;
}

/* =========================
SECTION SPACING FIX
========================= */

.about-page,
.mission-vision{
animation:fadeUp 1s ease;
}

/* =========================
RESPONSIVE DESIGN
========================= */

@media(max-width:1200px){

.about-grid{
gap:50px;
}

.about-content h2{
font-size:42px;
}

}

/* =========================
TABLET
========================= */

@media(max-width:991px){

.page-hero{
padding:160px 6% 90px;
}

.page-hero h1{
font-size:52px;
}

.page-hero p{
font-size:17px;
line-height:1.9;
}

.about-page{
padding:80px 6%;
}

.about-grid{
grid-template-columns:1fr;
gap:45px;
}

.about-content{
padding:35px;
}

.about-content h2{
font-size:38px;
}

.mission-vision{
padding:20px 6% 100px;
grid-template-columns:1fr;
gap:30px;
}

.mv-card{
padding:45px 35px;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.page-hero{
padding:140px 5% 70px;
}

.page-hero h1{
font-size:40px;
line-height:1.2;
letter-spacing:-1px;
}

.page-hero p{
font-size:15px;
line-height:1.9;
}

.about-page{
padding:70px 5%;
}

.about-grid{
gap:30px;
}

.about-grid img{
border-radius:26px;
}

.about-content{
padding:28px 22px;
border-radius:26px;
}

.about-content h2{
font-size:32px;
margin-bottom:22px;
}

.about-content p{
font-size:14px;
line-height:1.9;
}

.mission-vision{
padding:10px 5% 80px;
gap:24px;
}

.mv-card{
padding:35px 25px;
border-radius:26px;
}

.mv-card img{
width:70px;
margin-bottom:22px;
}

.mv-card h2{
font-size:28px;
}

.mv-card p{
font-size:14px;
line-height:1.9;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

.page-hero h1{
font-size:32px;
}

.page-hero p{
font-size:14px;
}

.about-content{
padding:24px 18px;
}

.about-content h2{
font-size:28px;
}

.mv-card{
padding:30px 20px;
}

.mv-card h2{
font-size:24px;
}

.mv-card p{
font-size:13.5px;
}

}

/* =========================
EXTRA PREMIUM EFFECTS
========================= */

.about-content,
.mv-card{
box-shadow:
0 10px 35px rgba(0,0,0,.18);
}

.about-content:hover,
.mv-card:hover{
box-shadow:
0 20px 60px rgba(0,0,0,.28),
0 0 40px rgba(120,60,150,.18);
}

/* =====================================================
SERVICES PAGE CSS
HEMANGI NEXT GEN TECH
PREMIUM PURPLE FUTURISTIC DESIGN
===================================================== */

/* =========================
SERVICES HERO
========================= */

.services-hero{
position:relative;

padding:180px 8% 100px;

text-align:center;

overflow:hidden;

background:
linear-gradient(
135deg,
rgba(120,60,150,.18),
rgba(181,126,220,.08)
);

border-bottom:1px solid rgba(255,255,255,.08);
}

/* GLOW EFFECTS */

.services-hero::before{
content:'';
position:absolute;

width:700px;
height:700px;

background:
radial-gradient(
circle,
rgba(120,60,150,.22),
transparent 70%
);

top:-250px;
left:-150px;

filter:blur(60px);

z-index:0;
}

.services-hero::after{
content:'';
position:absolute;

width:600px;
height:600px;

background:
radial-gradient(
circle,
rgba(181,126,220,.15),
transparent 70%
);

bottom:-250px;
right:-150px;

filter:blur(70px);

z-index:0;
}

/* TITLE */

.services-hero h1{
position:relative;
z-index:2;

font-size:clamp(42px,6vw,72px);

font-weight:800;

line-height:1.1;

letter-spacing:-2px;

margin-bottom:25px;

background:
linear-gradient(
90deg,
#ffffff,
#b57edc
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* TEXT */

.services-hero p{
position:relative;
z-index:2;

max-width:950px;
margin:auto;

font-size:18px;
line-height:2;

color:#cbd5e1;
}

/* =========================
HIGHLIGHT TEXT
========================= */

.highlight{
background:
linear-gradient(
90deg,
#783c96,
#b57edc
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* =========================
SERVICES PAGE
========================= */

.services-page{
position:relative;

padding:100px 8%;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:35px;
}

/* =========================
SERVICE CARD
========================= */

.service-box{
position:relative;

padding:42px 38px;

border-radius:32px;

overflow:hidden;

background:
linear-gradient(
135deg,
rgba(255,255,255,.06),
rgba(255,255,255,.03)
);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(20px);

transition:.5s ease;

box-shadow:
0 10px 35px rgba(0,0,0,.18);
}

/* TOP GLOW LINE */

.service-box::after{
content:'';

position:absolute;

top:0;
left:0;

width:100%;
height:5px;

background:
linear-gradient(
90deg,
#783c96,
#b57edc
);
}

/* HOVER EFFECT */

.service-box::before{
content:'';

position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(120,60,150,.16),
rgba(181,126,220,.08)
);

opacity:0;

transition:.5s;
}

.service-box:hover::before{
opacity:1;
}

.service-box:hover{
transform:translateY(-12px);

border-color:#b57edc;

box-shadow:
0 0 35px rgba(120,60,150,.25),
0 0 60px rgba(181,126,220,.12);
}

/* TITLE */

.service-box h2{
position:relative;
z-index:2;

font-size:30px;

font-weight:700;

line-height:1.4;

margin-bottom:22px;

background:
linear-gradient(
90deg,
#ffffff,
#b57edc
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

/* TEXT */

.service-box p{
position:relative;
z-index:2;

font-size:16px;

line-height:2;

color:#cbd5e1;
}

/* =========================
SECTION ANIMATION
========================= */

.services-page{
animation:fadeUp 1s ease;
}

/* =========================
TABLET VIEW
========================= */

@media(max-width:991px){

.services-hero{
padding:160px 6% 90px;
}

.services-hero h1{
font-size:50px;
}

.services-hero p{
font-size:17px;
line-height:1.9;
}

.services-page{
padding:80px 6%;
gap:28px;
}

.service-box{
padding:38px 30px;
}

.service-box h2{
font-size:26px;
}

}

/* =========================
MOBILE VIEW
========================= */

@media(max-width:768px){

.services-hero{
padding:140px 5% 70px;
}

.services-hero h1{
font-size:40px;
line-height:1.2;
letter-spacing:-1px;
}

.services-hero p{
font-size:15px;
line-height:1.9;
}

.services-page{
padding:70px 5%;
grid-template-columns:1fr;
gap:24px;
}

.service-box{
padding:32px 24px;
border-radius:26px;
}

.service-box h2{
font-size:24px;
margin-bottom:18px;
}

.service-box p{
font-size:14px;
line-height:1.9;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px){

.services-hero h1{
font-size:32px;
}

.services-hero p{
font-size:14px;
}

.service-box{
padding:28px 20px;
}

.service-box h2{
font-size:22px;
}

.service-box p{
font-size:13.5px;
}

}

/* =========================
SCROLL TOP BUTTON
========================= */

.scroll-top-btn{

position:fixed;
bottom:30px;
right:30px;
width:55px;
height:55px;
border-radius:50%;
background:#783c96;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
cursor:pointer;
z-index:9999;
opacity:0;
visibility:hidden;
transition:0.4s;
box-shadow:0 10px 30px rgba(120,60,150,0.4);

}

.scroll-top-btn.show{

opacity:1;
visibility:visible;

}

.scroll-top-btn:hover{

transform:translateY(-5px);

}

/* =========================
TOAST MESSAGE
========================= */

.toast-message{

position:fixed;
bottom:100px;
right:30px;
background:#783c96;
color:#fff;
padding:18px 28px;
border-radius:12px;
font-size:15px;
font-weight:600;
opacity:0;
visibility:hidden;
transition:0.4s;
z-index:9999;
box-shadow:0 10px 30px rgba(120,60,150,0.35);

}

.toast-message.show{

opacity:1;
visibility:visible;
transform:translateY(-10px);

}

.toast-message{

position: fixed;
bottom: 30px;
right: 30px;

background: #111;
color: #fff;

padding: 14px 22px;

border-radius: 10px;

font-size: 15px;
font-weight: 600;

opacity: 0;
visibility: hidden;

transform: translateY(20px);

transition: 0.4s ease;

z-index: 999999;

}

.toast-message.show{

opacity: 1;
visibility: visible;

transform: translateY(0);

}

.scroll-top-btn{

position: fixed;

right: 25px;
bottom: 25px;

width: 50px;
height: 50px;

border-radius: 50%;

background: #000;
color: #fff;

display: flex;
align-items: center;
justify-content: center;

font-size: 24px;
cursor: pointer;

opacity: 0;
visibility: hidden;

transition: 0.3s ease;

z-index: 99999;

}

.scroll-top-btn.show{

opacity: 1;
visibility: visible;

}

.toast-message{
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.toast-message.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===================================
NAVBAR FINAL FIX
=================================== */

#navbar{
position:fixed;
top:0;
left:0;
width:100%;

display:flex;
justify-content:space-between;
align-items:center;

padding:18px 7%;

background:rgba(10,10,20,0.75);

backdrop-filter:blur(14px);

z-index:999999;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
gap:12px;
cursor:pointer;
z-index:1000001;
}

.logo img{
width:48px;
height:48px;
object-fit:contain;
}

.logo-text h2{
font-size:22px;
color:#fff;
margin:0;
line-height:1;
}

.logo-text span{
font-size:12px;
color:#cbd5e1;
}

/* MENU */

#nav-menu{
display:flex;
align-items:center;
gap:30px;

list-style:none;
margin:0;
padding:0;
}

#nav-menu li a{
color:#fff;
text-decoration:none;
font-size:15px;
font-weight:500;
transition:.3s;
}

#nav-menu li a:hover{
color:#b57edc;
}

/* BUTTON */

.nav-btn{
padding:12px 24px;
border:none;
outline:none;
cursor:pointer;

border-radius:12px;

background:
linear-gradient(
135deg,
#783c96,
#b57edc
);

color:#fff;
font-weight:600;

transition:.3s;
}

.nav-btn:hover{
transform:translateY(-3px);
}

/* HAMBURGER */

.menu-toggle{
display:none;

font-size:34px;
color:#fff;

cursor:pointer;

z-index:1000001;
}

/* ===================================
MOBILE NAVBAR
=================================== */

@media(max-width:991px){

.menu-toggle{
display:block;
}

/* MOBILE MENU */

#nav-menu{

position:fixed;

top:82px;
left:-100%;

width:100%;
height:auto;

padding:35px 0;

display:flex;
flex-direction:column;
align-items:center;

gap:24px;

background:#0b1020;

transition:.4s ease;

z-index:999999;

border-top:
1px solid rgba(255,255,255,.08);

box-shadow:
0 20px 40px rgba(0,0,0,.45);
}

/* ACTIVE */

#nav-menu.active{
left:0;
}

/* LINKS */

#nav-menu li{
width:100%;
text-align:center;
}

#nav-menu li a{
display:block;
font-size:18px;
padding:12px;
}

/* HIDE BUTTON */

.nav-btn{
display:none;
}

}

@media(max-width:768px){

    #nav-menu{
        display:none;
        flex-direction:column;
    }

    #nav-menu.active{
        display:flex;
    }

}

/* =========================================
MOBILE NAVBAR FIX
========================================= */

@media screen and (max-width:768px){

    #navbar{
        position:relative;
    }

    .menu-toggle{
        display:block;
        font-size:32px;
        color:#fff;
        cursor:pointer;
        z-index:9999;
    }

    #nav-menu{

        position:absolute;
        top:100%;
        left:0;

        width:100%;

        background:#0f172a;

        display:none;
        flex-direction:column;

        padding:20px 0;

        gap:20px;

        z-index:9999;
    }

    #nav-menu.active{
        display:flex;
    }

    #nav-menu li{
        list-style:none;
        text-align:center;
    }

    #nav-menu li a{
        color:#fff;
        text-decoration:none;
        font-size:18px;
        display:block;
        padding:10px 0;
    }

}

/* =========================
   CONTACT IMAGE
========================= */

.contact-image {
    width: 100%;
    margin: 20px 0 25px;
    overflow: hidden;
    border-radius: 20px;
}

.contact-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: 0.4s ease;
}

.contact-image img:hover {
    transform: scale(1.04);
}

.service-readmore{
display:inline-block;
margin-top:20px;
padding:10px 18px;
border-radius:14px;
text-decoration:none;
font-size:14px;
font-weight:600;
color:#fff;
background:linear-gradient(135deg,#7f5af0,#2cb67d);
transition:.4s ease;
box-shadow:0 10px 30px rgba(127,90,240,.25);
}

.service-readmore:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(127,90,240,.35);
}


/* =========================================
SERVICE HERO
========================================= */

.service-hero{
padding:180px 8% 100px;
position:relative;
z-index:2;
}

.service-hero-content{
max-width:1200px;
margin:auto;
}

.service-badge{
display:inline-block;
padding:10px 18px;
border-radius:50px;
background:rgba(127,90,240,.12);
color:#b794ff;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

.service-hero h1{
font-size:64px;
line-height:1.15;
margin-bottom:25px;
font-weight:800;
max-width:1100px;
}

.service-hero p{
font-size:18px;
line-height:1.9;
color:#d4d4d4;
max-width:1100px;
margin-bottom:35px;
}

/* =========================================
SERVICE DETAILS SECTION
========================================= */

.service-details-section{
padding:120px 8%;
position:relative;
z-index:2;
}

.service-details-container{
max-width:1200px;
margin:auto;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
border-radius:32px;
padding:60px;
box-shadow:0 20px 80px rgba(0,0,0,.35);
}

.service-details-header h2{
font-size:48px;
margin-bottom:25px;
line-height:1.2;
font-weight:800;
}

.service-details-header p,
.service-details-content p{
font-size:17px;
line-height:1.9;
color:#cfcfcf;
margin-bottom:25px;
}

.service-details-content h3{
font-size:30px;
margin-top:60px;
margin-bottom:25px;
font-weight:700;
}

/* =========================================
SERVICE LISTS
========================================= */

.service-list-grid,
.tech-used-grid,
.why-choose-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
margin-top:30px;
}

.service-list-item,
.why-item{
padding:20px;
border-radius:18px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
font-weight:500;
transition:.4s ease;
color:#ffffff;
}

.service-list-item:hover,
.why-item:hover{
transform:translateY(-5px);
border-color:#7f5af0;
box-shadow:0 15px 40px rgba(127,90,240,.18);
}

/* =========================================
TECH STACK
========================================= */

.tech-used-grid span{
padding:16px 20px;
border-radius:16px;
background:rgba(127,90,240,.12);
text-align:center;
font-weight:600;
color:#ffffff;
border:1px solid rgba(255,255,255,.05);
transition:.4s ease;
}

.tech-used-grid span:hover{
transform:translateY(-5px);
background:rgba(127,90,240,.18);
}

/* =========================================
PROCESS STEPS
========================================= */

.process-steps{
display:flex;
flex-direction:column;
gap:25px;
margin-top:30px;
}

.process-step{
padding:30px;
border-radius:24px;
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
transition:.4s ease;
}

.process-step:hover{
transform:translateY(-5px);
border-color:#7f5af0;
}

.process-step h4{
font-size:22px;
margin-bottom:12px;
font-weight:700;
color:#ffffff;
}

.process-step p{
margin-bottom:0;
}

/* =========================================
CTA SECTION
========================================= */

.cta-section{
padding:120px 8%;
text-align:center;
position:relative;
z-index:2;
}

.cta-section h2{
font-size:54px;
margin-bottom:25px;
font-weight:800;
}

.cta-section p{
font-size:18px;
line-height:1.8;
color:#cfcfcf;
max-width:900px;
margin:auto auto 35px;
}

/* =========================================
BUTTONS
========================================= */

.primary-btn,
.nav-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 34px;
border:none;
outline:none;
border-radius:18px;
background:linear-gradient(135deg,#7f5af0,#b794ff);
color:#fff;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.4s ease;
text-decoration:none;
box-shadow:0 15px 40px rgba(127,90,240,.25);
}

.primary-btn:hover,
.nav-btn:hover{
transform:translateY(-5px);
box-shadow:0 20px 50px rgba(127,90,240,.4);
}


/* =========================================
RESPONSIVE
========================================= */

@media(max-width:992px){

.service-hero h1{
font-size:48px;
}

.cta-section h2{
font-size:42px;
}

}

@media(max-width:768px){

.service-hero{
padding:150px 6% 80px;
}

.service-hero h1{
font-size:36px;
}

.service-hero p{
font-size:16px;
}

.service-details-section{
padding:80px 6%;
}

.service-details-container{
padding:30px 20px;
border-radius:24px;
}

.service-details-header h2{
font-size:34px;
}

.service-details-content h3{
font-size:24px;
}

.cta-section{
padding:80px 6%;
}

.cta-section h2{
font-size:32px;
}

.primary-btn{
width:100%;
}

}

.service-readmore{
display:inline-block;
margin-top:18px;
padding:12px 22px;
border-radius:14px;
background:linear-gradient(135deg,#7f5af0,#2cb67d);
color:#fff;
text-decoration:none;
font-weight:600;
transition:.4s ease;
position:relative;
z-index:10;
cursor:pointer;
}

.service-readmore:hover{
transform:translateY(-3px);
}

/* =========================================
HIDE START PROJECT BUTTON IN MOBILE
========================================= */

@media(max-width:768px){

.nav-btn{
display:none !important;
}

}

/* =========================
MOBILE VIEW FIXES
========================= */

@media (max-width:768px){

/* Reduce gap between navbar and hero */

.service-hero{
padding-top:110px !important;
}

/* Reduce overall hero spacing */

.service-hero-content{
padding-top:10px;
}

/* Technologies grid in 2 columns */

.tech-used-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
}

/* Better spacing for technology boxes */

.tech-used-grid span{
text-align:center;
width:100%;
}

}

