@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');


:root{
    --primary:#0E1617;     /* background */
    --accent-grey:#454641; /* borders/contrast */
    --highlight:#861A45;   /* glow/action */
    --accent: #9cff3a;
    --text:#EAF2F3;
    --muted:rgba(234,242,243,.58);
    --glass-1:rgba(255,255,255,.02);
    --glass-2:rgba(255,255,255,.04);
    --bg-dark: #0f050c;
    --accent-pink: #d63384;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-main: #ffffff;
    --text-dim: #b1b1b1;
    --card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}
::selection{
  background: rgb(0,123,255,0.3);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Add this */
  max-width: 100%;    /* Add this */
}
section {
  scroll-margin-top: 50px; /* adjust to navbar height */
}
@media (max-width:768px){section{scroll-margin-top: 10px;}}
/* Text */
.eyebrow-title{
  display:flex;
  gap:8px;
  align-items:center; 
  justify-content: center; 
  padding: 105px 0 15px 0;
}
@media (max-width:768px){.eyebrow-title{padding: 45px 0 15px 0;}}
.eyebrow-pill{
  display:inline-flex;gap:8px;align-items:center;
  padding:8px 14px;border-radius:999px;
  color:var(--muted);font-size:16px;letter-spacing:.6px;
  border:1px solid rgba(69,70,65,.35);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.15), 0 8px 26px rgba(0,0,0,.35);
  backdrop-filter: blur(6px) saturate(110%);
}
.eyebrow-pill .eyebrow-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#9cff3a;
  box-shadow:0 0 8px #9cff3a
}
/*.eyebrow{margin-top:12px;background:rgba(255,255,255,.04);padding:8px 22px;border-radius:999px;border:1px solid rgba(255,255,255,.04);display:inline-block;font-size:13px}*/
.feature-project-bg{
  background:
      radial-gradient(2400px 1400px at 10% 10%, rgba(134,26,69,.14), transparent 90%),
      radial-gradient(1200px 700px at 90% 70%, rgba(134,26,69,.14), transparent 90%),
      linear-gradient(180deg, rgb(0, 0, 0), rgb(255,255,255,.02) 35%),
      var(--primary);
}

.service-testimonial-bg{
  background:
      radial-gradient(1500px 900px at 10% 40%, rgba(134,26,69,.14), transparent 90%),
      radial-gradient(1200px 700px at 90% 60%, rgba(134,26,69,.14), transparent 90%),
      linear-gradient(0deg, rgb(0, 0, 0), rgb(255,255,255,.02) 35%),
      var(--primary);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.5s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.fade-up { transform: translateY(40px); }
.fade-left { transform: translateX(-40px);}
.fade-right { transform: translateX(40px);}
.zoom-in { transform: scale(0.9);}




















/* Navbar wrapper */
.navbar-wrap {
  position: fixed;
  width: 100%;
  top: 20px;
  z-index: 999;
  display: flex;
  justify-content: center;
}

/* Main navbar */
.navbar {
  width: 92%;
  max-width: 1200px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  overflow: visible;
}

/* Logo */
.logo-box {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #9cff3a, #6aff00);
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(154, 255, 58, 0.6);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
   pointer-events: auto;
   margin-left: 70px;
}

.nav-links a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: #9cff3a;
}


/* Ensure your active link stands out */
.nav-links a.active {
    color: #9cff3a !important; /* Your brand color */
}

/* Optional: Add a small underline to the active link */
.nav-links a.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #9cff3a;
    margin-top: 1px;
    transition: width 0.3s;
}

/* Right action */
.nav-action {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1001;
}

/* Login button */
.login-btn {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #9cff3a;
  border-radius: 999px;
  border: 1px solid rgba(154, 255, 58, 0.5);
  background: rgba(154, 255, 58, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: rgba(154, 255, 58, 0.2);
  box-shadow: 0 0 16px rgba(154, 255, 58, 0.6);
}

/* Mobile menu icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
   pointer-events: auto;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #9cff3a;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-wrap {
    position: relative;
  }
  .nav-links {
    display: none;
  }

  .nav-links.show {
    display: none;
  }

  .menu-toggle {
    display: none;
  }
}



























/* ===== Header Area ===== */
.header-area {
    background: radial-gradient(circle at top, #861A45, #000 40%);
    background-size: cover;
    width: 100%;
    min-height: 100vh; /* Changed from height to min-height */
    height: auto;      /* Allows container to expand with content */
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    padding-top: 50px;
    padding-bottom: 50px; /* Gives breathing room at the bottom before the next section starts */
}
.headerLogo{
  padding-right: 50px;
}
.headerLogo img{
  width: 300px;
}

  body{
    font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
    background:#050405;color:#fff;overflow-x:hidden;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  }

    /* Hero Section */
    .hero{min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;position:relative;text-align:center;overflow:hidden;}


    .header-h1{font-size:clamp(32px,6vw,72px);line-height:1.1;margin-top:18px;font-weight:600;letter-spacing:-1px;text-align:center;max-width:1100px}
    p.leadp{opacity:.65;margin-top:12px;text-align:center;max-width:820px;font-size:clamp(14px,2vw,18px)}
    .cta,.cta-wp-top{margin-top:20px}
    .cta-wp-top-btn{text-decoration: none;display:inline-block;background: none;color:#fff;padding:12px 28px;border-radius:999px;font-family: "Montserrat", sans-serif;font-weight:700;border:2px solid #25D366;cursor:pointer;font-size:clamp(14px,2vw,16px); transition: .5s all;}
    .cta-wp-top-btn:hover{background: #25d36521;  border:2px solid var(--accent);}
    .btn{text-decoration:none;display:inline-block;background:#861A45;color:#fff;padding:15px 28px;border-radius:999px;font-family: "Montserrat", sans-serif;font-weight:700;border:none;cursor:pointer;font-size:clamp(14px,2vw,16px); transition: .5s all;}
    .btn a, .cta-wp-top-btn a{text-decoration: none; color:#fff;}
    .btn:hover{background: #0E1617;}

    /* Cards */
    .cards{position:relative;z-index:20;padding:0px 0 120px;display:flex;gap:40px;align-items:flex-end;justify-content:center;flex-wrap:wrap;max-width:1200px;width:90%;margin-top:120px}
    .card{width:340px;min-height:120px;background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));border-radius:18px;padding:18px;backdrop-filter:blur(8px);box-shadow:0 12px 40px rgba(0,0,0,.6);border:1px solid rgba(255,255,255,.2);transition:transform .45s cubic-bezier(.2,.9,.2,1),box-shadow .25s}
    .card:hover{transform:translateY(0);box-shadow:0 14px 50px #861A45}
    .title{display:flex;align-items:center;gap:12px;font-weight:700}
    .badge{width:36px;height:36px;border-radius:10px;background:linear-gradient(to right top, #861a45, #a50e4a, #ff0066);display:inline-flex;align-items:center;justify-content:center;font-weight:700}
    .amount{font-size:26px;margin-top:8px;font-weight:700}
    .small{opacity:.6;font-size:13px;margin-top:6px}

    /* Floating layout */
    .card.left{transform:translate(-80px,120px) scale(.9)}
    .card.mid{width:420px;transform:translateY(0) scale(1.02)}
    .card.right{transform:translate(80px,60px) scale(.95)}

    /* Fade bottom */
    .bottom-fade{position:absolute;left:0;right:0;bottom:0;height:80px;background:linear-gradient(180deg,transparent, rgba(0,0,0,.8));pointer-events:none}

    /* Responsive adjustments */
    @media (max-width:1024px){
  .cards{margin-top: 0px;padding: 60px 0 0 0;}
  .card.left{transform:translate(-50px,100px) scale(.9)}
  .card.right{transform:translate(50px,60px) scale(.95)}
  .arcs{width:900px;height:520px}
  .leadp{width: 50%;}
}

@media (max-width:960px){
  .header-h1{font-size:40px}
  .cards{flex-direction:column;align-items:center;gap:20px; padding-bottom: 50px;}
  .card{width:90%;max-width:380px;} /* Removed transform:none!important to allow JS mobile animation */
  .arcs{display:none}
}

@media (max-width:768px){
  .header-h1{font-size:40px}
  .cards{flex-direction:column;align-items:center;gap:20px;}
  .card{width:90%;max-width:380px;} /* Removed transform:none!important to allow JS mobile animation */
  .arcs{display:none}
  .header-area{padding-top: 10px;} 
  .leadp{width: 90%; max-width: 300px;} /* Fixed width to prevent horizontal overflow */
  .headerLogo{padding-right: 30px;} /* Removed padding so it centers properly */
  .headerLogo img{width: 180px;}
  .hero{margin-top: 40px;}
}

@media (max-width:480px){
  .header-h1{font-size:40px}
  p.leadp{font-size:14px}
  .btn{padding:12px 22px}
}
@media (max-width:400px){
  .card{width:70%;max-width:320px;} 
}






























/* ===== Client Carousel Area - 1 ===== */
.eyebrow-clientArea{padding-bottom: 50px;}
@media (max-width:768px){.eyebrow-clientArea{padding-top: 75px;}}
.client-carousel{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}
/*.client-carousel-container{}*/

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  overflow: hidden;

}
.carousel-track {
display: flex;
width: max-content;
animation: scrollLeft 20s linear infinite;
}
.carousel-item {
flex: 0 0 auto;
width: 250px;
height: 150px;
margin: 0 20px;
background: linear-gradient(145deg, #111, #222);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 14px;
box-shadow: 0 4px 20px rgba(255, 0, 255, 0.2);
text-align: center;
}
.fade {
position: absolute;
top: 0;
bottom: 0;
width: 150px;
pointer-events: none;
z-index: 2;
}
.fade.lefta {
left: 0;
background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
}
.fade.righta {
right: 0;
background: linear-gradient(to left, rgba(0, 0, 0, 0.9), transparent);
}
@keyframes scrollLeft {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item {
  width: 180px;
  height: 110px;
  margin: 0 12px;
  font-size: 12px;
  }
  .fade {
  width: 80px;
  }
}
@media (max-width: 480px) {
  .carousel-item {
  width: 140px;
  height: 90px;
  margin: 0 8px;
  font-size: 11px;
}
  .fade {
  width: 50px;
  }
}




/* ===== Client Carousel Area - 2 ===== */

.carousel-container1 {
  position: relative;
  width: 90%;
  max-width: 1200px;
  overflow: hidden;
  margin-top: 25px;
}
.carousel-track1 {
display: flex;
width: max-content;
animation: scrollRight 20s linear infinite;
}
.carousel-item1 {
flex: 0 0 auto;
width: 250px;
height: 150px;
margin: 0 20px;
background: linear-gradient(145deg, #111, #222);
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 14px;
box-shadow: 0 4px 20px rgba(255, 0, 255, 0.2);
text-align: center;
}
.fadee {
position: absolute;
top: 0;
bottom: 0;
width: 150px;
pointer-events: none;
z-index: 2;
}
.fadee.lefte {
left: 0;
background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
}
.fadee.righte {
right: 0;
background: linear-gradient(to left, rgba(0, 0, 0, 0.9), transparent);
}
@keyframes scrollRight {
from { transform: translateX(-50%); }
to { transform: translateX(0%); }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-item1 {
  width: 180px;
  height: 110px;
  margin: 0 12px;
  font-size: 12px;
  }
  .fadee {
  width: 80px;
  }
}
@media (max-width: 480px) {
  .carousel-item1 {
  width: 140px;
  height: 90px;
  margin: 0 8px;
  font-size: 11px;
}
  .fadee {
  width: 50px;
  }
}



























/* ===== Features Area ===== */
.feature-area{
  box-sizing:border-box;
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;
  color:var(--text);
  overflow-x:hidden;
}
/*.feature-area:before{
  content:"";
    position:fixed;inset:-80px;
    pointer-events:none;
    background:
      radial-gradient(1200px 800px at -10% 110%, rgba(0,0,0,.35), transparent 55%),
      radial-gradient(1000px 800px at 120% -10%, rgba(0,0,0,.35), transparent 60%),
      radial-gradient(900px 700px at 50% -10%, rgba(255,255,255,.04), transparent 60%);
    z-index:0;
}*/


/* subtle grain */
  /*.grain{
    position:fixed;inset:0;z-index:1;pointer-events:none;mix-blend-mode:overlay;opacity:.08;
    background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.5"/></svg>');
    background-size:160px 160px;
    animation:grainMove 18s steps(2) infinite;
  }
  @keyframes grainMove{
    0%{transform:translate(0,0)}25%{transform:translate(-10px,8px)}
    50%{transform:translate(6px,-12px)}75%{transform:translate(-4px,6px)}100%{transform:translate(0,0)}
  }*/

  .wrap{position:relative;z-index:2;max-width:1160px;margin:0 auto;padding:50px 28px}
  .f-text{text-align: center; margin-bottom: 40px;}
  .f-h1{
    margin:14px 0 8px;
    letter-spacing:4px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
  }
  .f-h1 span{
    font-weight: 600;
  }
  .lead{margin:0 0 26px;color:var(--muted);text-align: center; font-size: 14px;}

  .grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
  }

  .carda{
    position:relative;
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
    border:1px solid rgba(69,70,65,.4);
    border-radius:16px;
    padding:20px;
    overflow:hidden;
    box-shadow:
      0 12px 40px rgba(0,0,0,.55),
      inset 0 1px 0 rgba(255,255,255,.08),
      inset 0 -20px 60px rgba(0,0,0,.35);
    transform-style:preserve-3d;
    transition:transform .45s cubic-bezier(.2,.85,.2,1), box-shadow .45s, border-color .45s;
    will-change:transform;
  }
  .carda:hover{
    transform:translateY(-6px) rotateX(.8deg) rotateY(-.8deg);
    box-shadow:0 20px 70px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08);
    border-color:rgba(134,26,69,.55);
  }
  /* accent corner glow */
  .carda:after{
    content:"";
    position:absolute;right:-40px;top:-40px;width:180px;height:180px;border-radius:50%;
    background:radial-gradient(closest-side, rgba(134,26,69,.28), transparent 70%);
    filter:blur(18px);opacity:.5;pointer-events:none;transform:translateZ(-1px);
  }

  .title{display:flex;gap:12px;align-items:center;margin-bottom:12px}
  .icona{
    width:46px;height:46px;border-radius:12px;flex:0 0 46px;
    display:grid;place-items:center;color:var(--muted);font-size:20px;font-weight:700;
    border:1px solid rgba(69,70,65,.45);
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    box-shadow:inset 0 1px 0 rgba(255,255,255,.15);
  }
  .carda h3{margin:0;font-size:16px}
  .sub{color:var(--muted);font-size:13px;line-height:1.5}

  /* analytics mini-panels */
  .analytics{display:flex;gap:14px;margin-top:8px}
  .mini{
    flex:1;border-radius:12px;padding:12px;
    border:1px solid rgba(69,70,65,.38);
    background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
  }
  .mini .row{display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:13px;margin-bottom:6px}
  canvas.spark{width:100%;height:76px;display:block;}

  /* security visuals */
  .security-vis{height:150px;display:grid;place-items:center;position:relative;margin-top:6px}
  .radar{
    position:absolute;inset:10px;border-radius:12px;overflow:hidden;opacity:.7;
  }
  .sweep{
    position:absolute;left:50%;top:50%;width:600px;height:600px;border-radius:50%;
    transform:translate(-50%,-50%);background:
      conic-gradient(from 0deg, rgba(134,26,69,.6), rgba(134,26,69,0) 60%);
    filter:blur(26px);animation:sweep 6s linear infinite;
  }
  @keyframes sweep{to{transform:translate(-50%,-50%) rotate(360deg)}}
  .shield{
    width:90px;height:90px;border-radius:20px;display:grid;place-items:center;position:relative;
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border:1px solid rgba(69,70,65,.45);
    box-shadow:0 10px 30px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.15);
    animation:pulse 2.8s ease-in-out infinite;
  }
  @keyframes pulse{
    0%,100%{box-shadow:0 10px 30px rgba(0,0,0,.5), 0 0 0 0 rgba(134,26,69,.25)}
    50%{box-shadow:0 16px 40px rgba(0,0,0,.6), 0 0 0 18px rgba(134,26,69,.0)}
  }
  .shield svg{width:46px;height:46px;opacity:.95}

  /* ecosystem rings */
  .ecosys{height:190px;display:grid;place-items:center;margin-top:8px;position:relative}
  .rings{position:relative;width:200px;height:200px;border-radius:50%;display:grid;place-items:center;filter:drop-shadow(0 12px 26px rgba(0,0,0,.55))}
  .ring{
    position:absolute;border-radius:50%;
    border:1px solid rgba(69,70,65,.45);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    animation:spin 24s linear infinite;
  }
  .ring.r1{width:170px;height:170px;animation-duration:38s}
  .ring.r2{width:126px;height:126px;animation-duration:26s;animation-direction:reverse}
  .ring.r3{width:82px;height:82px;animation-duration:18s}
  @keyframes spin{to{transform:rotate(360deg)}}

  .node{
    position:absolute;width:12px;height:12px;border-radius:50%;
    background:radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.2) 30%, rgba(255,255,255,.05) 60%, rgba(255,255,255,.0) 70%);
    border:1px solid rgba(255,255,255,.25);
    box-shadow:0 10px 22px rgba(0,0,0,.55), 0 0 10px rgba(134,26,69,.65);
  }
  /* orbiting using transform-origin centers */
  .orbit{position:absolute;inset:0;animation:spin 8s linear infinite}
  .orbit.rev{animation-direction:reverse;animation-duration:22s}
  .orbit .node:nth-child(1){transform:translate(84px,10px)}
  .orbit .node:nth-child(2){transform:translate(10px,84px)}
  .orbit .node:nth-child(3){transform:translate(120px,120px)}

  .core{
    width:28px;height:28px;border-radius:50%;display:grid;place-items:center;font-weight:700;color:var(--muted);
    background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border:1px solid rgba(69,70,65,.45);
    box-shadow:0 12px 30px rgba(0,0,0,.55), 0 0 22px rgba(134,26,69,.45);
  }

  /* multi-currency stack */
  .stack{height:170px;display:flex;align-items:center;justify-content:center;gap:14px;margin-top:8px;perspective:800px}
  .card-stub{
    position:relative;border-radius:14px;
    width:150px;height:96px;
    border:1px solid rgba(69,70,65,.42);
    background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    box-shadow:0 14px 40px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.1);
    transform:rotate(-5deg) translateZ(0);
    transition:transform .5s cubic-bezier(.2,.85,.2,1), box-shadow .5s, border-color .5s;
  }
  .card-stub .chip{
    position:absolute;left:14px;top:16px;width:30px;height:20px;border-radius:4px;
    background:linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.08));
    border:1px solid rgba(255,255,255,.38);
  }
  .card-stub .sym{position:absolute;right:12px;bottom:10px;color:var(--muted);font-weight:700;font-size:12px}
  .card-stub:nth-child(2){transform:translateY(10px) rotate(-2deg)}
  .card-stub:nth-child(3){transform:translateY(20px) rotate(3deg)}
  .stack:hover .card-stub{transform:rotate(0) translateY(0) translateZ(40px)}
  .stack:hover .card-stub:nth-child(2){transform:translateX(5px) rotate(0) translateZ(20px)}
  .stack:hover .card-stub:nth-child(3){transform:translateX(16px) rotate(0) translateZ(0)}


  /* responsive */
  @media (max-width:980px){ .f-h1{font-size:28px} .grid{grid-template-columns:1fr} }






























/* ===== Live Projects Area ===== */
    .projects-section {
  font-family: 'Poppins', sans-serif;
  color: var(--text);     
  position: relative;
  padding: 0px 8%;
  min-height: 100vh;     
}

.projects-header {
  text-align: center;
  position: relative;
  z-index: 2;
}

.projects-header h2 {
  margin: 14px 0 8px;
  letter-spacing: 4px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
}

.projects-header h2 span {
  font-weight: 600;
}

.projects-header p {
  margin: 0 0 40px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(69, 70, 65, 0.1);
  border: 1px solid rgba(134,26,69,0.3);
  box-shadow: 0 0 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(25px);
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(255,255,255,0.12),
    transparent 95%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: scale(1.03) translateY(-6px) rotateY(6deg);
  box-shadow: 0 0 40px rgba(134,26,69,0.4);
}

.project-video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.project-card:hover .project-video {
  filter: brightness(1);
}

.project-content {
  padding: 20px;
  background: rgba(14, 22, 23, 0.75);
  backdrop-filter: blur(10px);
}

.project-title {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-desc {
  font-size: 0.95rem;
  color: #aaa;
  margin-bottom: 18px;
  line-height: 1.5;
}

.project-links {
  display: flex;
  gap: 12px;
}

.btnpc {
  padding: 8px 18px;
  border-radius: 25px;
  border: 1px solid #861A45;
  color: #fff;
  background: transparent;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btnpc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #861A45;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: -1;
}

.btnpc:hover::before {
  transform: translateX(0);
}

.btnpc:hover {
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 5px 6%;
  }

  .projects-header h2 {
    font-size: 2rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }
}



/*.projects-section { overflow: hidden; }
.icon { position: relative; z-index: 999; }*/
.navbar { overflow: hidden;}

/* particle styles (used by script.js generator) */
.particle {
  position: absolute;
  top: -10vh;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
  transform: translateY(0);
  animation-name: particleFloat;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes particleFloat {
  to {
    transform: translateY(120vh);
    opacity: 0;
  }
}



























/* ===== Services Area ===== */
/* Main Layout */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}
@media (max-width: 600px) {.header{padding: 0 20px;}}

.header h2 {
    font-size: 1.8rem;
    letter-spacing: 4px;
    font-weight: 300;
}

.header h2 span {
    font-weight: 600;
}

.header p {
    color: var(--text-dim);
    font-size: 0.9rem;
    max-width: 1160px;
    margin: 15px auto;
    line-height: 1.6;
}

/* Timeline Logic */
.timeline {
    position: relative;
    padding-left: 20px;
}

.line {
    position: absolute;
    left: 37px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), transparent);
}

/* Card Styling */
.cord {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.cord.visible {
    opacity: 1;
    transform: translateY(0);
}

.dot-container {
    position: absolute;
    left: 10px;
}

.dot {
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-pink);
    position: relative;
    z-index: 2;
}

.glass-box {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 4px; /* Straight-edged look like original */
    padding: 25px;
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.3s ease, border 0.3s ease;
}

.glass-box:hover {
    border-color: rgba(214, 51, 132, 0.4);
    transform: translateX(10px);
}

.icon-box {
    min-width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.top-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.content h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.content p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .timeline { padding-left: 20px; }
    .line { left: 37px; }
    .dot-container { left: -10px; }
    .glass-box { padding: 15px; flex-direction: column; }
    .icon-box { width: 50px; height: 50px; }
}





























/* ===== Testimonial Area ===== */
  .t-text{text-align: center; padding: 0 20px;}
  .t-h1{
    margin:14px 0 8px;
    letter-spacing:4px;
    text-align: center;

    font-size: 1.8rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
  }
  .t-h1 span{
    font-weight: 600;
  }
  .t-lead{margin:0 0 26px;color:var(--muted);text-align: center; font-size: 14px;}
  
/* ---  Slider Container --- */
        .slider-viewport {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: auto;
            overflow: hidden;
            position: relative;
            padding: 40px 0; /* Space for shadows */
        }

        /* The moving track */
        .slider-track {
            display: flex;
            width: max-content; /* Allows content to dictate width */
            gap: 30px;
            animation: scroll 40s linear infinite;
        }

        /* Pause animation on hover */
        .slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Moves half way (the length of original set) */
        }

        /* --- 3. The Glass Card (High Fidelity) --- */
        .glass-card {
            width: 400px;
            min-width: 400px; /* Prevent shrinking */
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            position: relative;
            color: white;
            
            /* The Glass Effect */
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            
            /* Borders & Shadows for depth */
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-top: 1px solid rgba(255, 255, 255, 0.2); /* Top light highlight */
            border-left: 1px solid rgba(255, 255, 255, 0.2); /* Left light highlight */
            box-shadow: 
                0 4px 30px rgba(0, 0, 0, 0.1), /* Soft shadow */
                inset 0 0 20px rgba(255, 255, 255, 0.02); /* Inner glow */
            
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        /* Hover effect for individual cards */
        .glass-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* --- 4. Card Content Styling --- */
        
        /* Quote */
        .quote {
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 25px;
            opacity: 0.95;
            min-height: 85px; /* Alignment consistency */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Author Info */
        .author-role {
            font-weight: 600;
            font-size: 1rem;
            display: block;
        }
        .author-company {
            font-size: 0.85rem;
            opacity: 0.6;
            margin-top: 4px;
            display: block;
        }

        /* Big Rating Number */
        .rating-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-top: 20px;
            line-height: 1;
        }

        /* Stars */
        .stars {
            color: #9cff3a; /* Cyan color from image */
            font-size: 1.2rem;
            margin: 10px 0 30px 0;
            letter-spacing: 2px;
        }

        /* Metrics Grid (Quality, Schedule, etc) */
        .metrics-grid {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-bottom: 30px;
        }

        .metric-item {
            flex: 1;
            position: relative;
        }

        /* The vertical dividers between metrics */
        .metric-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 25px;
            width: 1px;
            background: rgba(255, 255, 255, 0.15);
        }

        .metric-label {
            font-size: 0.75rem;
            opacity: 0.8;
            display: block;
            margin-bottom: 5px;
        }
        .metric-score {
            font-size: 1rem;
            font-weight: 600;
        }

        /* Bottom Pill Tag */
        .tag-pill {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-size: 0.9rem;
            background: rgba(255, 255, 255, 0.05);
            font-weight: 500;
        }
        .tag-pill span{color: #9cff3a;}

        /* --- 5. Responsive --- */
        @media (max-width: 768px) {
            .glass-card {
                width: 320px;
                min-width: 320px;
                padding: 30px 20px;
            }
            .rating-number { font-size: 2.8rem; }
            .metric-label { font-size: 0.65rem; }
        }































/* === Hire us Area === */   
.hire-us-area{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--text);
}

/* === HERO WRAPPER === */
.hero-hire {
  position: relative;
  width: 100%;
  max-width: 1100px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #111, #0a0a0a);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* === HALFTONE PATTERN === */
.hero-hire::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255,255,255,0.12) 1px,
    transparent 1px
  );
  background-size: 6px 6px;
  opacity: 0.15;
  pointer-events: none;
}

/* === AMBIENT GLOW === */
.hero-hire::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at center,
    rgba(134, 26, 69, 0.479),
    transparent 60%);
  filter: blur(80px);
  z-index: 0;
}

/* === GLASS CARD === */
.card-hire {
  position: relative;
  z-index: 2;
  padding: 80px 40px;
  text-align: center;
  backdrop-filter: blur(16px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  margin: 32px;
}

/* === TEXT === */
.card-hire h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}

.card-hire p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

/* === CTA BUTTON === */
.cta-btn-hire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 12px;
  background: #9cff3a;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(156, 255, 58, 0.37)
}
.cta-btn-hire a{
  text-decoration: none;
  color: #000;
}

.cta-btn-hire:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(156, 255, 58, 0.507);
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  .card-hire {
    padding: 56px 24px;
    margin: 16px;
  }
}




































































/* ===== Footer Area ===== */
/* FOOTER BASE */
.footer {
        position: relative;
        width: 100%;
        padding: 70px 80px 30px;
        overflow: hidden;
        color: #fff;
        background-image: url('images/Gemini_Generated_Image_eu46kjeu46kjeu46 (1).png');
        background-position: center;
        background-size: cover;
        font-family: 'Poppins', sans-serif;
        z-index: 2;
    }

    .ambient-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        opacity: 0.3;
        pointer-events: none;
    }

    .footer-container {
        position: relative;
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(0, 1.6fr);
        gap: 40px;
        align-items: stretch;
    }

    .footer-card {
        position: relative;
        background: rgba(255,255,255,0.04);
        border-radius: 20px;
        padding: 40px;
        backdrop-filter: blur(25px);
        transition: transform 0.4s ease;
        min-width: 0;
        height: 100%;
    }

    .footer-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient(
            circle at var(--x, 50%) var(--y, 50%),
            rgba(255,255,255,0.12),
            transparent 55%
        );
        opacity: 0;
        transition: opacity 0.4s;
    }

    .footer-card:hover::before { opacity: 1; }
    .footer-card:hover { transform: translateY(-6px); }
    .footer-card > * { position: relative; z-index: 2; }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 22px;
        font-weight: 600;
    }

    .footer-card h3 { margin: 22px 0 10px; font-size: 22px; }
    .footer-card p { font-size: 14px; color: #bdbdbd; line-height: 1.7; }

    .subscribe-box {
        margin-top: 26px;
        display: flex;
        border-radius: 14px;
        overflow: hidden;
        background: rgba(255,255,255,0.08);
        position: relative;
        z-index: 3;
    }

    .subscribe-box input {
        flex: 1;
        padding: 14px 16px;
        background: transparent;
        border: none;
        color: #fff;
        outline: none;
        min-width: 0;
        position: relative;
        z-index: 3;
    }

    .subscribe-box button {
        background: #fff;
        color: #000;
        border: none;
        padding: 0 28px;
        font-weight: 600;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 3;
    }

    .subscribe-box button::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
        transform: translateX(-100%);
    }

    .subscribe-box button:hover::after { animation: shine 0.8s forwards; }
    @keyframes shine { to { transform: translateX(100%); } }

    .footer-card.links { display: flex; flex-direction: column; }

    .footer-contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
        gap: 1.5rem;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        flex: 1;
        align-content: center;
    }

    /* Renamed from glass-card to footer-link-card to prevent conflict with contact form */
    .footer-link-card {
        position: relative;
        display: flex;
        align-items: center;
        padding: 1.25rem;
        border-radius: 16px;
        text-decoration: none;
        color: inherit;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, border-color 0.3s ease;
        min-width: 0;
    }

    .footer-link-card:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.15);
    }

    .footer-link-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(
            800px circle at var(--mouse-x, 0) var(--mouse-y, 0),
            rgba(255, 255, 255, 0.06),
            transparent 40%
        );
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
        z-index: 0;
    }

    .footer-link-card:hover::before { opacity: 1; }

    .card-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-right: 1rem;
        flex-shrink: 0;
        z-index: 1;
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .card-text {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        z-index: 1;
        overflow: hidden;
        min-width: 0;
    }

    .card-label { font-size: 0.8rem; color: #888888; margin-bottom: 0.25rem; font-weight: 500; }
    .card-value { font-size: 0.95rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .card-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.04);
        margin-left: 0.75rem;
        flex-shrink: 0;
        transition: all 0.3s ease;
        z-index: 1;
    }

    .card-arrow svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.3s ease;
    }

    .footer-link-card:hover .card-arrow { background: rgba(255, 255, 255, 0.1); }
    .footer-link-card:hover .card-arrow svg { transform: translate(2px, -2px); }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: #999;
        gap: 16px;
        flex-wrap: wrap;
    }

    .socials i { margin: 0 8px; cursor: pointer; transition: 0.3s; }
    .socials i:hover { color: #fff; transform: scale(1.15); }
    
    .legal a { margin-left: 15px; color: #999; text-decoration: none; }
    .legal a:hover { color: #fff; }

    /* Footer Responsive */
    @media (max-width: 1100px) {
        .footer { padding: 60px 50px 30px; }
        .footer-container { grid-template-columns: 1fr; }
        .footer-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 768px) {
        .footer { padding: 50px 30px 25px; }
        .footer-card { padding: 32px; }
        .footer-card h3 { font-size: 20px; }
        .subscribe-box input { font-size: 14px; }
        .footer-contact-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
        .legal a { margin: 0 8px; }
    }

    @media (max-width: 520px) {
        .footer { padding: 40px 20px 20px; }
        .footer-card { padding: 26px; }
        .logo { font-size: 20px; }
        .footer-card h3 { font-size: 18px; }
        .footer-card p { font-size: 13px; }
        .subscribe-box { flex-direction: column; }
        .subscribe-box button { height: 48px; width: 100%; }
        .socials i { font-size: 16px; }
    }

    @media (max-width: 390px) {
        .footer-card { padding: 15px; }
    }