:root{
  --pinkMain:#c73e8d;
  --pinkLight:#f7a1c4;
  --purpleDark:#4b2e5c;
  --purpleMid:#8e5c8a;
  --purpleLight:#d8a7c7;
   --bg:#e3dae2;
  --bgSoft:#fcfbfe;

  --text:#1f1f1f;
  --muted:#6b6b6b;
  --card:#ffffff;
  --border:rgba(75,46,92,.12);
  --shadow:0 14px 40px rgba(75,46,92,.10);
  --shadowHover:0 18px 45px rgba(75,46,92,.16);
  --r:22px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(circle at top left, rgba(247,161,196,.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(142,92,138,.14), transparent 25%),
    var(--bg);
  color:var(--text);
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1250px, calc(100% - 32px));
  margin:0 auto;
}

.page{
  padding:30px 0 70px;
}

/* topbar */
.topbar{
  position:sticky;
  top:0;
  left:0;
  right:0;
  z-index:100;
  padding:10px;
  background:rgba(247,245,249,.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:100px;
  padding:14px 0;
  position: relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--purpleDark);
  font-weight:800;
  font-size:1.05rem;
}

.brand__dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--pinkMain),var(--purpleMid));
  box-shadow:0 0 0 6px rgba(199,62,141,.14);
}

.nav{
  display:flex;
  gap:10px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:var(--purpleDark);
  font-weight:700;
  font-size:18px;
  padding:14px 18px;
  border-radius:12px;
  transition:.25s ease;
}

.nav a:hover{
  background:rgba(199,62,141,.10);
}

.nav a.active{
  background:rgba(199,62,141,.16);
  color:var(--pinkMain);
}

.navToggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.7);
  cursor:pointer;
}

.navToggle span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  background:var(--purpleDark);
  border-radius:2px;
  transition:.3s ease;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo-img{
  height:80px;
  width:auto;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.brand-main{
  font-weight:900;
  font-size:1.6rem;
  color:var(--purpleDark);
  letter-spacing:1px;
  transition: transform .35s ease, color .35s ease, letter-spacing .35s ease;
}

.brand-sub{
  margin-top:4px;
  font-size:.72rem;
  font-weight:800;
  color:var(--pinkMain);
  letter-spacing:1.5px;
  transition: transform .35s ease, color .35s ease, letter-spacing .35s ease;
}

.brand:hover .logo-img{
  animation: jump 0.6s ease;
}
@keyframes jump{
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-15px); }
  50%  { transform: translateY(0); }
  70%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.brand:hover .brand-main{
  transform: translateX(3px) translateY(-2px);
  color:var(--pinkMain);
  letter-spacing:2px;
}

.brand:hover .brand-sub{
  transform: translateX(6px) translateY(2px);
  color:var(--purpleMid);
  letter-spacing:2.5px;
}



.gradient-text{
  background:linear-gradient(135deg,var(--pinkMain),var(--purpleMid));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}


.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:15px;
  font-weight:800;
  font-size:15px;
  letter-spacing:.2px;
  text-decoration:none;
  border:0;
  cursor:pointer;
  transition:.25s ease;
}

.btn.primary{
  background:linear-gradient(135deg,var(--pinkMain),var(--purpleMid));
  color:#fff;
  box-shadow:0 12px 24px rgba(199,62,141,.20);
}

.btn.primary:hover{
  transform:translateY(-2px);
}

.btn.ghost{
  background:rgba(75,46,92,.07);
  color:var(--purpleDark);
}

.btn.ghost:hover{
  background:rgba(75,46,92,.11);
  transform:translateY(-2px);
}

.stat{
  min-width:140px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  border-radius:18px;
  padding:16px;
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.stat:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:var(--pinkMain);
  box-shadow:0 18px 42px rgba(199,62,141,.18);
  background:rgba(255,255,255,.96);
}

.stat h3{
  margin:0 0 4px;
  color:var(--purpleDark);
  font-size:1.5rem;
}

.stat p{
  margin:0;
  color:var(--muted);
  font-size:.95rem;
}

.mockup-card{
  width:min(100%, 420px);
  background:rgba(255,255,255,.82);
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:0 20px 60px rgba(75,46,92,.16);
  overflow:hidden;
  position:relative;
}

.mockup-card::before{
  content:"";
  position:absolute;
  inset:-20px;
  background:radial-gradient(circle, rgba(199,62,141,.25), transparent 70%);
  z-index:-1;
  filter:blur(20px);
}

.mockup-top{
  display:flex;
  gap:8px;
  padding:16px 18px;
  border-bottom:1px solid var(--border);
  background:rgba(247,245,249,.75);
}

.mockup-top span{
  width:11px;
  height:11px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--pinkLight),var(--purpleLight));
}

.mockup-body{
  padding:24px;
}

.mockup-pill{
  display:inline-block;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  border-radius:999px;
  background:rgba(199,62,141,.10);
  color:var(--pinkMain);
  margin-bottom:14px;
}

.mockup-body h3{
  margin:0 0 16px;
  color:var(--purpleDark);
  font-size:1.4rem;
}

.mockup-list{
  margin:0 0 20px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}

.mockup-btn{
  display:inline-block;
  text-decoration:none;
  padding:11px 15px;
  border-radius:14px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg,var(--purpleDark),var(--pinkMain));
}

.floating{
  animation:floatY 4s ease-in-out infinite;
}

@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
}

/* sections */
.section{
  padding:40px 0;
}

.section-heading{
  margin-bottom:30px;
}

.section-kicker{
  display:inline-block;
  margin-bottom:8px;
  color:var(--pinkMain);
  font-size:.85rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.sectionTitle{
  margin:0 0 10px;
  color:var(--purpleDark);
  font-size:clamp(1.6rem, 3vw, 2.4rem);
}

.section-desc{
  margin:0;
  color:var(--muted);
  max-width:70ch;
  line-height:1.8;
}

.grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:18px;
  margin-top: 10px;
}

.card{
  grid-column:span 6;
  background:rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:22px;
  transition: all .28s ease;
}

.card:hover{
  transform: translateY(-6px) scale(1.02);
  border-color:var(--pinkMain);
  box-shadow:0 18px 42px rgba(199,62,141,.18);
  background:rgba(255,255,255,.96);
}

.card__icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:14px;
  margin-bottom:16px;
  background:linear-gradient(135deg, rgba(199,62,141,.14), rgba(142,92,138,.14));
  color:var(--pinkMain);
  font-weight:800;
  transition:.28s ease;
}

.card:hover .card__icon{
  background:linear-gradient(135deg, rgba(199,62,141,.22), rgba(142,92,138,.20));
  color:var(--pinkMain);
}

.card h3{
  margin:0 0 10px;
  color:var(--purpleDark);
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

/* feature boxes */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.feature-box{
  background:rgba(255,255,255,.84);
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.feature-box:hover{
  transform:translateY(-6px) scale(1.02);
  border-color:var(--pinkMain);
  box-shadow:0 18px 42px rgba(199,62,141,.18);
  background:rgba(255,255,255,.96);
}

.feature-box h3{
  margin:0 0 10px;
  color:var(--purpleDark);
}

.feature-box p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

/* cta */
.cta-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:28px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(199,62,141,.14), rgba(142,92,138,.12));
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.cta-box h2{
  margin:0 0 10px;
  color:var(--purpleDark);
}

.cta-box p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  max-width:60ch;
}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* footer */
.footer{
  border-top:1px solid var(--border);
  background:rgba(255,255,255,.66);
}

.footer__inner{
  padding:18px 0;
  color:var(--muted);
  font-size:14px;
}

/* reveal animation */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:all .8s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* responsive */
@media (max-width: 980px){
  .hero{
    grid-template-columns:1fr !important;
    padding:30px;
    min-height:auto;
  }

  .feature-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .cta-box{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 860px){
  .navToggle{
    display:block;
  }

  .nav{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:72px;
    flex-direction:column;
    gap:6px;
    padding:12px;
    background:rgba(247,245,249,.98);
    border:1px solid var(--border);
    border-radius:16px;
    box-shadow:var(--shadow);
  }

  .nav.open{
    display:flex;
  }

  .card{
    grid-column:span 12;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 20px, 1150px);
  }

  .page{
    padding:20px 0 50px;
  }

  .hero{
    gap:20px;
  }

  .hero__stats{
    flex-direction:column;
  }

  .stat{
    width:100%;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .actions,
  .cta-actions{
    flex-direction:column;
    width:100%;
  }

  .btn{
    width:100%;
  }

  .mockup-card{
    width:100%;
  }
}
.stat,
.card,
.feature-box{
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.stat:hover,
.card:hover,
.feature-box:hover{
  transform: translateY(-6px) scale(1.03);
  border-color: var(--pinkMain);
  box-shadow: 0 18px 45px rgba(199,62,141,.18);
}


.hero{
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(75,46,92,.92), rgba(142,92,138,.82), rgba(199,62,141,.78));
}

.hero::before,
.hero::after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.hero::before{
  width:900px;
  height:900px;
  top:-340px;
  right:-220px;
  background:rgba(255,255,255,.08);
}

.hero::after{
  width:760px;
  height:420px;
  left:-180px;
  bottom:-170px;
  background:rgba(255,255,255,.06);
  border-radius:56% 44% 0 0;
  transform:rotate(-10deg);
}

.hero-uob-top{
  grid-column:1 / -1;
  text-align:center;
  margin-bottom:10px;
  position:relative;
  z-index:2;
}

.hero-uob-top__logoWrap{
  width:160px;
  height:160px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  box-shadow:0 18px 40px rgba(0,0,0,.16);
}

.hero-uob-top__logo{
  width:88px;
  height:auto;
  object-fit:contain;
}

.hero-uob-top__title{
  margin:0 0 10px;
  font-size:clamp(2.2rem, 4vw, 4rem);
  font-weight:900;
  color:#fff;
  line-height:1.1;
}

.hero-uob-top__subtitle{
  margin:0 0 10px;
  font-size:clamp(1.15rem, 2vw, 1.8rem);
  font-weight:700;
  color:rgba(255,255,255,.95);
}

.hero-uob-top__text{
  margin:0 0 26px;
  font-size:clamp(1rem, 1.3vw, 1.15rem);
  font-weight:600;
  color:rgba(255,255,255,.88);
}


.hero .hero__badge{
  background:rgba(255,255,255,.14);
  color:#fff;
  border:1px solid rgba(255,255,255,.16);
}

.hero .hero__content h1{
  color:#fff;
}

.hero .hero__text{
  color:rgba(255,255,255,.86);
}

.hero .stat{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}

.hero .stat h3{
  color:#fff;
}

.hero .stat p{
  color:rgba(255,255,255,.84);
}

/* visual card still visible nicely */
.hero .mockup-card{
  background:rgba(255,255,255,.9);
}

/* responsive */
@media (max-width: 980px){
  .hero-uob-top{
    margin-bottom:20px;
  }
}

@media (max-width: 640px){
  .hero-uob-top__logoWrap{
    width:130px;
    height:130px;
  }

  .hero-uob-top__logo{
    width:70px;
  }

  .hero-uob-top__text{
    margin-bottom:18px;
  }
}

.nav-abstract{
  text-decoration: none !important;
  border-bottom: none !important;
  background: none !important;
}


.nav-abstract:hover{
  text-decoration: none !important;
  background: none !important;
}


.nav-abstract{
  color: var(--purpleDark);
  font-weight: 700;
}
.nav-abstract:active{
  transform: scale(0.96);
}

.abstract-section{
  padding:60px 0;
}

.abstract-box{
  background:
    radial-gradient(circle at center,
      rgba(255,255,255,.96) 0%,
      rgba(247,161,196,.10) 100%
    );
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 100000px;
  margin: 0 auto;
  line-height: 1.9;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.abstract-box:hover{
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 50px rgba(75,46,92,.18);
  border-color: var(--purpleMid);
}

/* soft glowing background effect */
.abstract-box::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background: radial-gradient(circle, rgba(199,62,141,.15), transparent 70%);
  top:-200px;
  right:-200px;
  z-index:0;
}

.abstract-box p{
  position:relative;
  z-index:1;
  margin-bottom:16px;
}




/* ===== small top university banner ===== */
.uob-banner{
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto 50px;
  min-height: 350px;
  padding: 50px 20px 50px;
  margin-bottom: 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--purpleDark), var(--purpleMid), var(--pinkMain));
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}

.uob-banner__shape{
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.uob-banner__shape--1{
  width: 520px;
  height: 520px;
  top: -220px;
  right: -120px;
  background: rgba(255,255,255,.08);
}

.uob-banner__shape--2{
  width: 420px;
  height: 220px;
  left: -100px;
  bottom: -80px;
  background: rgba(255,255,255,.05);
  border-radius: 56% 44% 0 0;
  transform: rotate(-10deg);
}

.uob-banner__content{
  position: relative;
  z-index: 2;
  color: #fff;
}

.uob-banner__logoWrap{
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.uob-banner__logo{
  width: 100px;
  height: auto;
  object-fit: contain;
}

.uob-banner__title{
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: #fff;
  font-weight: 900;
}

.uob-banner__subtitle{
  margin: 0 0 8px;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  color: rgba(255,255,255,.96);
  font-weight: 700;
}

.uob-banner__text{
  margin: 0;
  font-size: clamp(.95rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,.9);
  font-weight: 600;
}

/* ===== keep Fakrbot hero separate below ===== */
.hero{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  align-items:center;
  gap:40px;
  padding:40px;
  min-height:auto;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(199,62,141,.12), rgba(142,92,138,.10));
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  margin-bottom:40px;
}

@media (max-width: 980px){
  .uob-banner{
    min-height: 250px;
    padding: 28px 16px 24px;
  }

  .uob-banner__logoWrap{
    width: 96px;
    height: 96px;
  }

  .uob-banner__logo{
    width: 56px;
  }

  .hero{
    grid-template-columns:1fr !important;
    padding:30px;
  }
}

@media (max-width: 640px){
  .uob-banner{
    border-radius: 22px;
  }

  .uob-banner__title{
    font-size: 1.8rem;
  }

  .uob-banner__subtitle{
    font-size: 1.05rem;
  }

  .uob-banner__text{
    font-size: .95rem;
  }
}

.team-grid {
  display: flex;
  justify-content: flex-start;   /* centers the whole row */
  align-items: flex-start;
  flex-wrap: wrap;           /* allows wrapping on small screens */
  gap: 40px;                 /* spacing between cards */
  padding: 40px 20px;
}


.team-card {
    width: 200px;
    height: 320px;
    border-radius: 22px;

    background:
         radial-gradient(circle at 20% 20%, rgba(247,161,196,0.9), transparent 55%),
        radial-gradient(circle at 80% 25%, rgba(88, 33, 112, 0.8), transparent 80%),
        radial-gradient(circle at 50% 80%, rgba(216,167,199,0.8), transparent 65%),
        linear-gradient(135deg, #f7f5f9, #f7a1c4);

    box-shadow: 0 10px 28px rgba(199,62,141,0.12);
    

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
     transition: transform .3s ease;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.05);
   box-shadow: 0 0 0 2px var(--purpleDark), 0 18px 45px rgba(75,46,92,.25);
}


/* The Glowing Border for the Photo */
.team-photo-wrap img {
    width: 80px; /* Increased size to match the reference better */
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
     margin-top: 10px;
}

.team-name {
  color:white;
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.team-id {
  color:white;
    font-size: 0.9rem;
    opacity: 0.7;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 5px;
}

/* The Horizontal Line Divider */
.team-name::after {
  color:white;
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 15px auto;
}

.team-major {
   color: #ffffff !important;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


/* 1. The Container: Keep them small and aligned to the left */
.tech-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between the cubes */
  margin-top: 30px;
  justify-content: flex-start;
}

/* 2. The Cubic Box: Overriding .abstract-box for this section */
.tech-wrapper .tech-box {
  width: 600px;       /* Fixed width for cube shape */
  height: 150px;      /* Fixed height for cube shape */
  padding: 0;         /* Reset padding to center content manually */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  
  /* Background: A soft glass look */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  
  /* THE CUBIC DEPTH: Multiple shadows to create "thickness" */
  /* This creates a light highlight on top-left and a shadow on bottom-right */
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.08), 
    -8px -8px 16px rgba(255, 255, 255, 0.8),
    inset 2px 2px 5px rgba(255, 255, 255, 0.5);
    
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover: Lift the cube slightly */
.tech-wrapper .tech-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 
    12px 12px 20px rgba(0, 0, 0, 0.12), 
    -8px -8px 16px rgba(255, 255, 255, 0.9);
}

/* 3. Elements inside the cube */
.tech-img {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.tech-img img {
  width: 70px; /* Keeps the icon size consistent */
  height: 70px;
  object-fit: contain;
}

.tech-box h3 {
  font-size: 1rem;
  margin: 0;
  color: #2d1b4d; /* Your theme's dark purple */
  font-weight: 700;
}

.system-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.system-box {
  width: 1100px;
  padding: 20px;
  text-align: center;

  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.08),
    -8px -8px 16px rgba(255, 255, 255, 0.8);

  transition: transform 0.2s ease;
}

.system-box:hover {
  transform: translateY(-5px);
}

.system-img img {
  width: 100%;
  max-height: 1000px;
  object-fit: contain;
  border-radius: 10px;
}

.demo-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.demo-box {
  width: 90%;
  max-width: 900px;
  padding: 20px;
  text-align: center;

  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);

  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.08),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.demo-video {
  width: 100%;
  max-height: 500px;
  border-radius: 12px;
}

/* ===== TEAM WRAPPER (NEW) ===== */
.team-wrapper{
  display: flex;
  align-items: center;       /* center vertically */
  justify-content: space-between;
  gap: 60px;
}

/* keep cards on left */
.team-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
}

/* RIGHT IMAGE */
.team-image{
  flex-shrink: 0;
}

.team-image img{
  width: 450px;
  max-width: 100%;
  animation: floatY 4s ease-in-out infinite; /* uses your existing animation */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .team-wrapper{
    flex-direction: column;
    text-align: center;
  }

  .team-grid{
    justify-content: center;
  }

  .team-image img{
    width: 260px;
  }
}

.team-image{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-image{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* better floating shadow */
.team-image::after{
  content: "";
  position: absolute;
  bottom: 5px;
  width: 200px;
  height: 45px;

  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.15) 40%,
    transparent 80%
  );

  border-radius: 50%;
  filter: blur(10px);
  transform: scale(0.9, 0.5);
  z-index: 0;
}

/* lift the image slightly */
.team-image img{
  position: relative;
  z-index: 1;
  transform: translateY(-10px);
}