*{
margin:0;
padding:0;
box-sizing:border-box;
}





/* HIDE SCROLLBAR - KEEP SCROLL WORKING */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE / old Edge */
body {
  -ms-overflow-style: none;
}






/* SPINNER */
.spinner{
  position:relative;
  width:60px;
  height:60px;

  /* smoother rotation */
  animation: spin 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DOT BASE */
.spinner span{
  position:absolute;
  width:6px;
  height:6px;
  border-radius:50%;

  top:50%;
  left:50%;

  background:#e53935;

  /* smoother fade */
  animation: fade 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

/* DEPTH (IMPORTANT 🔥) */
.spinner span:nth-child(1){ transform: translate(-50%, -50%) rotate(0deg) translateY(-20px) scale(1); }
.spinner span:nth-child(2){ transform: translate(-50%, -50%) rotate(45deg) translateY(-20px) scale(0.9); }
.spinner span:nth-child(3){ transform: translate(-50%, -50%) rotate(90deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(4){ transform: translate(-50%, -50%) rotate(135deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(5){ transform: translate(-50%, -50%) rotate(180deg) translateY(-20px) scale(0.6); }
.spinner span:nth-child(6){ transform: translate(-50%, -50%) rotate(225deg) translateY(-20px) scale(0.7); }
.spinner span:nth-child(7){ transform: translate(-50%, -50%) rotate(270deg) translateY(-20px) scale(0.8); }
.spinner span:nth-child(8){ transform: translate(-50%, -50%) rotate(315deg) translateY(-20px) scale(0.9); }

/* DELAYS */
.spinner span:nth-child(1){ animation-delay:-1.6s; }
.spinner span:nth-child(2){ animation-delay:-1.4s; }
.spinner span:nth-child(3){ animation-delay:-1.2s; }
.spinner span:nth-child(4){ animation-delay:-1.0s; }
.spinner span:nth-child(5){ animation-delay:-0.8s; }
.spinner span:nth-child(6){ animation-delay:-0.6s; }
.spinner span:nth-child(7){ animation-delay:-0.4s; }
.spinner span:nth-child(8){ animation-delay:-0.2s; }

/* ROTATION */
@keyframes spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* FADE */
@keyframes fade{
  0%{ opacity:1; }
  50%{ opacity:0.3; }
  100%{ opacity:1; }
}



#loader{
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;

  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}







body{
background:#000;
color:white;
font-family:'Poppins',sans-serif;
line-height:1.5;
padding-top: 5rem;
}


/* GLOBAL CONTAINER */

.container{
width:min(1200px,92%);
margin:auto;
}





/* ===============================
   PREMIUM HEADER REPLACE
=============================== */
.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;

  display: flex;
  justify-content: center;

  padding: 14px 0;

  transition: transform .35s ease, opacity .35s ease;
  will-change: transform;
}

.nav.hide{
  transform: translateY(-110%);
  opacity: .2;
}

.nav.show{
  transform: translateY(0);
  opacity: 1;
}

.nav-inner{
  width:min(1200px,92%);
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:14px 24px;
  border-radius:26px;

  /* LIGHT PREMIUM GLASS */
  background: linear-gradient(
    145deg,
    rgba(245,245,245,.95),
    rgba(220,220,220,.88)
  );

  border: 1px solid rgba(255,255,255,.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  position:relative;
  overflow:hidden;

  /* 3D DEPTH */
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.9),
    inset 0 -6px 12px rgba(0,0,0,.08),
    0 10px 25px rgba(0,0,0,.18),
    0 18px 40px rgba(0,0,0,.12);
}





/* SHINY EFFECT */
.nav-inner::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:50%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.25),
    transparent
  );
  transform:skewX(-25deg);
  animation:navShine 6s linear infinite;
}

@keyframes navShine{
  100%{ left:140%; }
}

.logo img{
  height:42px;
  position:relative;
  z-index:2;
}

.menu{
  display:flex;
  gap:28px;
  position:relative;
  z-index:2;
}

.menu a{
  color:#000000;
  text-decoration:none;
  font-weight:500;
  position:relative;
  transition:.3s;
}

.menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#e53935;
  transition:.3s;
}

.menu a:hover{
  color:#e53935;
}

.menu a:hover::after{
  width:100%;
}

.menu-toggle{
  width:42px;
  height:42px;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  cursor:pointer;
  position:relative;
  z-index:2;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  margin:auto;
  transition:.35s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}


/* ===============================
   FINAL CREATIVE MOBILE PILLS
=============================== */
.mobile-menu{
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 99998;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;

  pointer-events: none;
}

.mobile-menu a{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 88vw;

  /* TIGHTER FIT */
  padding: 12px 20px;

  /* LESS ROUNDED */
  border-radius: 18px;

  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;

  /* SOLID PREMIUM RED */
  background: #9f1111;

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 22px rgba(0,0,0,.22),
    0 0 14px rgba(229,57,53,.12);

  opacity: 0;
  visibility: hidden;
  transform: translateX(40px) scale(.94);

  transition:
    opacity .4s ease,
    transform .4s cubic-bezier(.22,1,.36,1),
    visibility .4s ease;
}

/* ONLY SHOW WHEN ACTIVE */
.mobile-menu.active{
  pointer-events: auto;
}

.mobile-menu a.show{
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.menu a.active{
  color:#e53935;
}

.menu a.active::after{
  width:100%;
}

.mobile-menu a.active{
  background:#e53935;
}







@media(max-width:900px){
  .menu{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

  .nav{
    padding:10px 0;
  }

  .nav-inner{
    width:94%;
    border-radius:18px;
    padding:12px 16px;
  }

  .logo img{
    height:36px;
  }
}




/* HERO */

.hero{
position:relative;
overflow:hidden;
padding-top:4rem;
padding-bottom:6rem;
}

.hero{
min-height:100svh;   /* better than 100vh on mobile */
display:flex;
align-items:center;
position:relative;
}





/* WAVE */

.wave-bg{
position:absolute;
left:0;
bottom:20%;
width:200%;
pointer-events:none;
z-index:0;

/* IMPORTANT */
overflow:hidden;
}

.wave-bg{
position:absolute;
left:0;
bottom:20%;
width:200%;
z-index:0;   /* behind content */
pointer-events:none;
}

.wave-bg svg{
width:200%;
height:120px;
fill:none;
stroke:#ff2a2a;
stroke-width:4;
animation:waveMove 12s linear infinite;
}

@keyframes waveMove{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}


/* HERO CONTENT */

.hero-inner{
position:relative;
z-index:2;
display:flex;
flex-direction:column;
gap:2rem;
}


/* DESIGN OUTLINE */

.design{
font-size:clamp(6rem,20vw,20rem);
font-weight:800;
color:transparent;
-webkit-text-stroke:2px #555;
letter-spacing:.05em;
line-height:.9;
}


/* HEADLINE */

.headline{
max-width:60ch;
}

.main{
font-size:clamp(2.5rem,5vw,4.5rem);
font-weight:700;
line-height:1;
white-space:nowrap;
margin-bottom:0;
}

.white{
color:white;
}

.red{
color:#e53935;
}


/* REFLECTION */

.reflection{
font-size:clamp(2.5rem,5vw,4.5rem);
line-height:1;
opacity:.25;
transform:scaleY(-1);
mask-image:linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
white-space:nowrap;
margin-top:-0.15em;
}


/* CTA ROW */

.cta-row{
display:flex;
justify-content:flex-end;   /* push to right */
align-items:center;
gap:1.5rem;
margin-top:2rem;

animation:moveSide 8s ease-in-out infinite alternate;
}

@keyframes moveSide{

0%{
transform:translateX(0);
}

100%{
transform:translateX(80px);
}

}


.cta-text{
display:flex;
flex-direction:column;   /* forces 2 lines */
text-align:right;
font-size:clamp(1rem,1.2vw,1.3rem);
line-height:1.4;
}

.cta{
white-space:nowrap;
}



/* RESPONSIVE */

@media (max-width:900px){

.menu{
display:none;
}


.main{
white-space:normal;
text-align: center;
}

.reflection{
text-align: center;
}



.hero{
padding-top:3rem;
}

.cta-row{
flex-direction:column;
align-items:flex-start;
}


.cta{
width:100%;
max-width:280px;
}



}



@media (max-width:768px){


html, body{
overflow-x:hidden;
}

.hero{
min-height:100svh;
position:relative;
}

/* Fix wave overflow */
.wave-bg{
position:absolute;
left:0;
bottom:clamp(30%, 35%, 45%);
width:200%;
overflow:hidden;
pointer-events:none;
}

/* Prevent SVG from stretching layout */
.wave-bg svg{
display:block;
width:200%;
max-width:none;
}


.cta-row{
flex-direction:column;      /* stack */
align-items:center;         /* center horizontally */
justify-content:center;
text-align:center;
gap:1rem;
animation:none;             /* stop movement on mobile (important UX) */
}

.cta-text{
text-align:center;
}

.design{
font-family:'Oswald', sans-serif;   /* condensed font */
font-size:clamp(5rem,28vw,15rem);   /* taller look */
letter-spacing:0.05em;
line-height:0.9;
}


.design{
transform:scaleY(1.1);
transform-origin:center;
}

}






.who-3d-section{
  background:#f5f5f5;
  padding:140px 0;
  text-align:center;
}

/* HEADING */
.who-heading{
  font-size:4.5rem;
  margin-bottom:100px;
}

.red{
  color:#e53935;
}

/* CONTAINER */
.who-3d-container{
  display:flex;
  justify-content:center;
  gap:50px;
  perspective:1200px;
  flex-wrap:wrap; /* 🔥 important */
}

/* CARD */
.who-card{
  width:320px;
  padding:40px;
  background:#111;
  color:#fff;
  border-radius:18px;
  position:relative;
  overflow:hidden;

  transform-style:preserve-3d;
  transition:transform 0.25s ease;

  box-shadow:0 30px 60px rgba(0,0,0,0.35);
  will-change:transform;
}

/* TEXT BIGGER */
.who-card h3{
  font-size:1.6rem;
  margin-bottom:12px;
}

.who-card p{
  font-size:1.05rem;
  color:#aaa;
}

/* LIGHT */
.card-light{
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  opacity:0;
  transition:0.3s;
}


.who-3d-section{
  background:#e53935;
  padding:140px 0;
  text-align:center;
}

/* HEADING */
.who-heading{
  font-size:4.5rem;
  margin-bottom:100px;
}

.red{
  color:#e53935;
}

/* CONTAINER */
.who-3d-container{
  display:flex;
  justify-content:center;
  gap:50px;
  perspective:1200px;
  flex-wrap:wrap; /* 🔥 important */
}

/* CARD */
.who-card{
  width:320px; /* 🔥 BIGGER */
  padding:40px;
  background:#111;
  color:#fff;
  border-radius:18px;

  transform-style:preserve-3d;
  transition:0.3s ease;
  position:relative;

  box-shadow:0 30px 60px rgba(0,0,0,0.35);

  z-index:1;
}

/* TEXT BIGGER */
.who-card h3{
  font-size:1.6rem;
  margin-bottom:12px;
}

.who-card p{
  font-size:1.05rem;
  color:#aaa;
}

/* LIGHT */
.card-light{
  position:absolute;
  inset:0;
  border-radius:18px;
  pointer-events:none;
  opacity:0;
  transition:0.3s;
}


@media(max-width:768px){

  .who-card{
    transform:none !important;
    width:90%;
  }

}


.about-cta{
  text-align:center;
  margin-top:60px;
}

/* BUTTON BASE */
.pro-btn{
  display:inline-block;
  position:relative;

  padding:16px 42px;

  background:#000;
  color:#fff;

  font-size:1rem;
  font-weight:600;
  letter-spacing:0.5px;

  border-radius:50px;
  text-decoration:none;

  overflow:hidden;
  transition:all 0.35s ease;

  border:2px solid #000;
}

/* REMOVE DEFAULT LINK STYLE (FORCE) */
.pro-btn,
.pro-btn:link,
.pro-btn:visited{
  color:#fff;
  text-decoration:none;
}

/* HOVER EFFECT */
.pro-btn:hover{
  background:#fff;
  color:#000;
  transform:translateY(-4px);
  box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

/* TEXT LAYER FIX */
.pro-btn span{
  position:relative;
  z-index:2;
}

/* OPTIONAL GLOW SWEEP (PREMIUM) */
.pro-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transition:0.5s;
}

.pro-btn:hover::before{
  left:100%;
}








.home-services{
  background:#0d0d0d;
  color:#fff;
  padding:120px 20px;
  position:relative;
  overflow:hidden;
}

.home-services::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(229,57,53,.08), transparent 40%);
  pointer-events:none;
}

.container{
  width:min(1180px, 92%);
  margin:auto;
}

.service-eyebrow{
  color:#e53935;
  font-weight:700;
  letter-spacing:2px;
  font-size:.85rem;
  margin-bottom:12px;
  text-align:center;
}

.home-services h2{
  font-size:clamp(2rem, 5vw, 3.8rem);
  line-height:1.1;
  max-width:950px;
  margin:0 auto 20px;
  text-align:center;
}

.service-sub{
  max-width:760px;
  color:#bbb;
  line-height:1.8;
  margin:0 auto 60px;
  text-align:center;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  perspective:1000px;
}

.service-card{
  position:relative;
  background:linear-gradient(145deg,#111,#1b1b1b);
  border:1px solid rgba(255,255,255,.05);
  border-radius:20px;
  padding:35px;
  min-height:240px;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
  transform-style:preserve-3d;
  transition:transform .35s ease, box-shadow .35s ease;
}

.service-card:hover{
  box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.accent-line{
  display:block;
  width:60px;
  height:3px;
  background:#e53935;
  border-radius:20px;
  margin-bottom:25px;
}

.service-card h3{
  font-size:1.4rem;
  margin-bottom:15px;
}

.service-card p{
  color:#aaa;
  line-height:1.7;
}

/* reveal */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:.8s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* mobile */
@media(max-width:900px){
  .service-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:600px){
  .service-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:auto;
  }
}



.service-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.service-link:hover .service-card{
  border-color:rgba(229,57,53,.35);
}





.portfolio-bento{
  padding:120px 0;
  background:#f7f7f7;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

.portfolio-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 70px;
}

.eyebrow{
  color:#e53935;
  font-weight:700;
  letter-spacing:2px;
  font-size:.85rem;
  margin-bottom:14px;
}

.portfolio-head h2{
  font-size:clamp(2rem,5vw,4rem);
  line-height:1.1;
  margin-bottom:18px;
  color:#111;
}

.sub{
  color:#666;
  line-height:1.8;
  font-size:1.05rem;
}

/* GRID */
.bento-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:220px;
  gap:24px;
}

.bento-item{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
  transform:translateY(60px);
  opacity:0;
  transition:.8s ease;
}

.bento-item.show{
  transform:translateY(0);
  opacity:1;
}

.bento-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}

/* custom sizes */
.large{
  grid-column:span 2;
  grid-row:span 2;
}

.tall{
  grid-row:span 2;
}

.wide{
  grid-column:span 2;
}

/* CTA */
.portfolio-cta{
  text-align:center;
  margin-top:50px;
}

.portfolio-cta a{
  display:inline-block;
  padding:15px 34px;
  background:#111;
  color:#fff;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  transition:.3s ease;
}

.portfolio-cta a:hover{
  background:#e53935;
}

/* MOBILE */
@media(max-width:900px){
  .bento-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .bento-grid{
    grid-template-columns:1fr;
    grid-auto-rows:260px;
  }

  .large,
  .tall,
  .wide{
    grid-column:span 1;
    grid-row:span 1;
  }
}








.workflow-section{
  padding:120px 0;
  background:#111;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

.workflow-head{
  text-align:center;
  max-width:850px;
  margin:0 auto 70px;
}

.eyebrow{
  color:#e53935;
  font-weight:700;
  letter-spacing:2px;
  font-size:.85rem;
  margin-bottom:14px;
}

.workflow-head h2{
  font-size:clamp(2rem,5vw,4rem);
  line-height:1.1;
  margin-bottom:18px;
}

.sub{
  color:#bbb;
  line-height:1.8;
  font-size:1.05rem;
}

/* red line */
.workflow-line{
  height:2px;
  background:linear-gradient(to right, transparent, #e53935, transparent);
  margin-bottom:60px;
}

/* cards */
.workflow-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
}

.workflow-card{
  background:linear-gradient(145deg,#171717,#0e0e0e);
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px;
  padding:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.25);
  transform:translateY(50px);
  opacity:0;
  transition:.8s ease;
}

.workflow-card.show{
  transform:translateY(0);
  opacity:1;
}

.workflow-card span{
  display:inline-flex;
  width:52px;
  height:52px;
  border-radius:50%;
  background:#e53935;
  color:#fff;
  align-items:center;
  justify-content:center;
  font-weight:700;
  margin-bottom:18px;
}

.workflow-card h3{
  font-size:1.25rem;
  margin-bottom:12px;
}

.workflow-card p{
  color:#bbb;
  line-height:1.7;
  font-size:.96rem;
}

/* responsive */
@media(max-width:1100px){
  .workflow-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:700px){
  .workflow-grid{
    grid-template-columns:1fr;
  }
}








.pricing-premium{
  padding:120px 0;
  background:#e53935;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

.pricing-head{
  text-align:center;
  color:#fff;
  max-width:900px;
  margin:0 auto 70px;
}

.pricing-head h2{
  font-size:clamp(2rem,5vw,4rem);
  margin-bottom:16px;
}

.sub{
  line-height:1.8;
  opacity:.92;
}

/* GRID */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.pricing-card{
  background:#111;
  color:#fff;
  border-radius:24px;
  padding:34px;
  box-shadow:0 20px 45px rgba(0,0,0,.18);
  transition:transform .3s ease, box-shadow .3s ease;
}

.pricing-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 55px rgba(0,0,0,.25);
}

.plan{
  display:inline-block;
  padding:8px 16px;
  background:#e53935;
  border-radius:30px;
  font-size:.82rem;
  font-weight:700;
  margin-bottom:18px;
}

.pricing-card h3{
  font-size:1.4rem;
  margin-bottom:16px;
  min-height:60px;
}

.price{
  font-size:2rem;
  font-weight:800;
  margin-bottom:18px;
}

.price span{
  font-size:1rem;
  font-weight:500;
  opacity:.8;
}

.desc{
  color:#bbb;
  line-height:1.8;
  margin-bottom:20px;
  min-height:110px;
}

.pricing-card ul{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}

.pricing-card li{
  padding:8px 0;
  color:#ddd;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.pricing-card a{
  display:block;
  text-align:center;
  padding:14px;
  border-radius:40px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-weight:700;
  transition:.3s ease;
}

.pricing-card a:hover{
  background:#e53935;
  color:#fff;
}

.featured{
  border:1px solid rgba(255,255,255,.18);
  transform:translateY(-10px);
}

@media(max-width:1100px){
  .pricing-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:700px){
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .featured{
    transform:none;
  }
}







.plan-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.35s ease;
  z-index:9999;
  backdrop-filter:blur(10px);
  padding:20px;
}

.plan-overlay.active{
  opacity:1;
  visibility:visible;
}

.plan-modal{
  width:min(680px,100%);
  background:linear-gradient(145deg,#111,#1b1b1b);
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  padding:40px;
  color:#fff;
  transform:translateY(40px) scale(.96);
  transition:.35s ease;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  max-height:90vh;
  overflow:auto;
}

.plan-overlay.active .plan-modal{
  transform:translateY(0) scale(1);
}

.close-plan{
  position:absolute;
  top:20px;
  right:25px;
  font-size:2rem;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
}

.popup-eyebrow{
  color:#e53935;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:2px;
  margin-bottom:10px;
}

#popupPlanTitle{
  font-size:2rem;
  margin-bottom:10px;
}

.popup-price{
  font-size:1.4rem;
  color:#e53935;
  font-weight:700;
  margin-bottom:18px;
}

.popup-desc{
  color:#bbb;
  line-height:1.8;
  margin-bottom:25px;
}

.popup-includes{
  background:#161616;
  border-radius:18px;
  padding:22px;
  margin-bottom:28px;
}

.popup-includes h4{
  margin-bottom:14px;
}

.popup-includes ul{
  list-style:none;
  padding:0;
}

.popup-includes li{
  padding:8px 0;
  color:#ddd;
}

.popup-form{
  display:flex;
  flex-direction:column;
  gap:16px;
  margin-bottom:25px;
}

.popup-form input,
.popup-form textarea{
  background:#0f0f0f;
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  padding:16px;
  border-radius:14px;
  outline:none;
}

.popup-form textarea{
  min-height:120px;
}

.popup-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-wa,.btn-mail{
  flex:1;
  padding:16px;
  border:none;
  border-radius:40px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.btn-wa{
  background:#25D366;
  color:#fff;
}

.btn-mail{
  background:#e53935;
  color:#fff;
}

.btn-wa:hover,.btn-mail:hover{
  transform:translateY(-2px);
}

@media(max-width:600px){
  .plan-modal{
    padding:28px;
  }

  .popup-actions{
    flex-direction:column;
  }
}













.final-cta{
  position:relative;
  padding:120px 0;
  background:#111;
  color:#fff;
  overflow:hidden;
}

.container{
  width:min(1100px,92%);
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

.final-cta h2{
  font-size:clamp(2rem,5vw,4.5rem);
  line-height:1.1;
  margin-bottom:20px;
  max-width:900px;
  margin-inline:auto;
}

.sub{
  max-width:760px;
  margin:0 auto 36px;
  color:#bbb;
  line-height:1.9;
  font-size:1.05rem;
}

.cta-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.cta-primary,
.cta-secondary{
  display:inline-block;
  padding:16px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  transition:.35s ease;
}

.cta-primary{
  background:#e53935;
  color:#fff;
}

.cta-primary:hover{
  background:#fff;
  color:#111;
}

.cta-secondary{
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}

.cta-secondary:hover{
  background:#fff;
  color:#111;
}

/* premium glow */
.cta-glow{
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(229,57,53,.22), transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  filter:blur(10px);
  animation:floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow{
  0%,100%{ transform:translate(-50%,-50%) scale(1); }
  50%{ transform:translate(-50%,-52%) scale(1.04); }
}

@media(max-width:768px){
  .cta-primary,
  .cta-secondary{
    width:100%;
    max-width:320px;
  }
}



























/* INITIAL STATE */
.liquid-bg-section{
  position:relative;
  overflow:hidden;
  padding-top: 10rem;
  padding-bottom: 10rem;

  background:#f5f5f5; /* starts black */
}


/* KEEP CONTENT ABOVE */
.global-inner{
  position:relative;
  z-index:2;
}

/* LAYOUT */
.global-inner{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:3rem;
}

/* TEXT */
.global-left h2{
  font-size:clamp(2.5rem,5vw,4.5rem);
  font-weight:900;
  line-height:1.1;
  color:#000;
}

.global-left p{
  margin-top:1.5rem;
  max-width:420px;
  color:#111;
}

/* VISUAL */
.global-visual{
  position:relative;
  width:300px;
  height:300px;
  margin:auto;
}

/* CENTER (INDIA) */
.center{
  width:14px;
  height:14px;
  background:#f61111;
  border-radius:50%;

  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  box-shadow:0 0 20px rgba(0,0,0,0.5);
}

/* ORBITS */
.orbit{
  position:absolute;
  border:1px solid rgba(0,0,0,0.3);
  border-radius:50%;

  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

/* DIFFERENT SIZES */
.orbit1{
  width:140px;
  height:140px;
  animation:rotate 12s linear infinite;
}

.orbit2{
  width:200px;
  height:200px;
  animation:rotate 18s linear infinite reverse;
}

.orbit3{
  width:260px;
  height:260px;
  animation:rotate 25s linear infinite;
}

/* MOVING DOTS */
.dot{
  width:8px;
  height:8px;
  background:#ff0000;
  border-radius:50%;
  position:absolute;
}

/* DOT PATHS */
.dot1{
  top:0;
  left:50%;
  transform:translateX(-50%);
  animation:orbitMove1 12s linear infinite;
}

.dot2{
  top:50%;
  left:0;
  transform:translateY(-50%);
  animation:orbitMove2 18s linear infinite;
}

/* ANIMATIONS */
@keyframes rotate{
  0%{ transform:translate(-50%,-50%) rotate(0deg);}
  100%{ transform:translate(-50%,-50%) rotate(360deg);}
}

@keyframes orbitMove1{
  0%{ transform:rotate(0deg) translateX(70px) rotate(0deg);}
  100%{ transform:rotate(360deg) translateX(70px) rotate(-360deg);}
}

@keyframes orbitMove2{
  0%{ transform:rotate(0deg) translateX(100px) rotate(0deg);}
  100%{ transform:rotate(-360deg) translateX(100px) rotate(360deg);}
}

@media (max-width:768px){

  .global-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .global-left p{
    margin:auto;
  }

}







.site-footer{
  background:#000;
  color:#fff;
  padding:clamp(4rem,8vw,6rem) 0 2rem;
}

/* CONTAINER */
.footer-container{
  width:min(1100px,92%);
  margin:auto;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2rem;
}

/* LOGO */
.footer-logo{
  font-size:1.8rem;
  font-weight:800;
  margin-bottom:1rem;
}

/* TEXT */
.footer-brand p{
  color:#aaa;
  max-width:300px;
  line-height:1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4{
  margin-bottom:1rem;
}

.footer-links a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:0.5rem;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
}

/* CONTACT */
.footer-contact p{
  color:#aaa;
  margin-bottom:0.5rem;
}

/* SOCIAL */
.footer-social{
  margin-top:1rem;
  display:flex;
  gap:12px;
}

.footer-social a{
  width:35px;
  height:35px;
  border:1px solid #333;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  text-decoration:none;
  color:#fff;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c62828;
  border-color:#c62828;
}

/* CTA */
.footer-cta{
  text-align:center;
  margin-top:4rem;
}

.footer-cta h3{
  font-size:2rem;
  margin-bottom:1rem;
}

.footer-btn{
  display:inline-block;
  padding:12px 28px;
  background:#c62828;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.footer-btn:hover{
  background:#e53935;
  transform:translateY(-2px);
}

/* BOTTOM */
.footer-bottom{
  text-align:center;
  margin-top:3rem;
  color:#666;
  font-size:0.9rem;
}


@media (max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-cta h3{
    font-size:1.5rem;
  }

}










/* ===============================
   PORTFOLIO SECTION
=============================== */

.portfolio-section {
  padding: 100px 5%;
  background: #0a0a0a;
  color: #fff;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-header h2 {
  font-size: 42px;
}

.portfolio-header p {
  opacity: 0.6;
}

/* GRID */
/* MASONRY GRID */
.portfolio-grid{
  column-count: 4;
  column-gap: 20px;
}

/* ITEMS */
.portfolio-item{
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
}


.portfolio-group{
  column-span: all;
  width: 100%;
  margin: 50px 0 30px;
  position: relative;
}

/* THIN DIVIDER LINE */
.portfolio-group::before{
  content:"";
  display:block;
  width:100%;
  height:1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
}





@media (max-width:1024px){
  .portfolio-grid{ column-count: 3; }
}

@media (max-width:768px){
  .portfolio-grid{
    column-count: 2;
    column-gap: 12px;
  }
}




/* ITEM */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;

  transform: translateY(60px);
  opacity: 0;

  transition: 0.5s ease;
}

/* SHOW ANIMATION */
.portfolio-item.show {
  transform: translateY(0);
  opacity: 1;
}

/* IMAGE */
.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.6s ease;
}

/* SHINE */
.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
}

.portfolio-item:hover::before {
  animation: shine 0.8s;
}

@keyframes shine {
  100% { left: 125%; }
}

/* ZOOM */
.portfolio-item:hover img {
  transform: scale(1.1);
}



/* ===============================
   MOBILE MODE
=============================== */

@media (max-width:768px){

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .overlay {
    bottom: 0;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
  }

   .portfolio-item.active .overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* BLUR BACKGROUND */
  .portfolio-grid.active-mode .portfolio-item {
    filter: blur(6px) brightness(0.4);
    transform: scale(0.95);
  }

  /* ACTIVE CARD */
 .portfolio-item.active {
    position: fixed;
    
    top: 50%;
    left: 50%;

    width: 92%;
    max-width: 380px;

    transform: translate(-50%, -50%) !important;

    z-index: 9999;
    filter: none !important;

    margin: 0; /* 🔥 important */
  }

  .portfolio-item.active img {
    transform: scale(1.05);
  }

  .portfolio-item.active .overlay {
    bottom: 0;
  }

  /* BACKDROP */
  .portfolio-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;
  }
}




/* ===============================
   MOBILE QUICK MENU (REFINED)
=============================== */

.mobile-quick-menu{
  display: none;
}

@media (max-width:768px){

  .mobile-quick-menu{
    display: flex;
    justify-content: flex-end;   /* RIGHT ALIGN */
    align-items: center;

    width: min(1200px,92%);
    margin: 10px auto 0;         /* align with navbar width */

    gap: 10px;
  }

  .mobile-quick-menu a{
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1.8px solid #e53935;
    border-radius: 50%;

    color: #e53935;
    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.25s ease;
  }

  /* ACTIVE STATE 🔥 */
  .mobile-quick-menu a.active{
    background: #e53935;
    color: #fff;
    border-color: #e53935;
  }

  /* TAP EFFECT */
  .mobile-quick-menu a:active{
    transform: scale(0.9);
  }

}







/* BUTTONS */
.btn{
  display:inline-block;
  padding:12px 24px;
  margin:10px;
  border-radius:4px;
  text-decoration:none;
  font-weight:600;
  color:#fff;
  transition:0.3s;
}

.btn-free-trial{
  background:#e53935;
}

.btn-start-project{
  background:#000;
}

.btn:hover{
  transform:translateY(-2px);
}

/* POPUP BASE */
.popup{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) scale(0.9);
  width:90%;
  max-width:400px;
  background:#e1e1e1;
  padding:25px;
  border-radius:10px;
  z-index:1001;

  opacity:0;
  visibility:hidden;
  transition:0.3s;
}

.popup.active{
  opacity:1;
  visibility:visible;
  transform:translate(-50%, -50%) scale(1);
}

/* OVERLAY */
.popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(226, 226, 226, 0.6);
  z-index:1000;

  opacity:0;
  visibility:hidden;
  transition:0.3s;
}

.popup-overlay.active{
  opacity:1;
  visibility:visible;
}

/* CLOSE BUTTON */
.popup-close{
  position:absolute;
  top:10px;
  right:15px;
  font-size:22px;
  cursor:pointer;
}

/* FORM */
.popup-form input,
.popup-form select,
.popup-form textarea{
  width:100%;
  margin:8px 0;
  padding:10px;
  border:1px solid #ccc;
  border-radius:4px;
}

.popup-form button{
  width:100%;
  padding:12px;
  background:#000;
  color:#fff;
  border:none;
  cursor:pointer;
}

/* FILE */
.file-upload{
  margin:10px 0;
}

.upload-btn{
  background:#000;
  color:#fff;
  padding:8px 12px;
  cursor:pointer;
  display:inline-block;
}

.file-name{
  margin-left:10px;
  font-size:12px;
}


