/*
  styles.css
  Premium dark theme + modern layout for the portfolio.
  - CSS-only 3D layered hero effects (perspective + translateZ)
  - Glassmorphism accents
  - Floating background shapes
  - Subtle hover tilt + depth shadows
  - Responsive, no JS, optimized animations
*/

:root{
  /* Premium black/violet palette (accent violet only) */
  --bg0:#0A0A0A;     /* deep black */
  --bg1:#161616;     /* secondary dark */
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --stroke:rgba(255,255,255,.12);
  --text:#FFFFFF;   /* pure white */
  --muted:rgba(209,213,219,.88);   /* soft gray secondary text */
  --muted2:rgba(209,213,219,.62);

  --v:#7C3AED;       /* violet */
  --v2:#A855F7;      /* light violet */

  /* Kept for subtle gradients/glow, but violet remains the dominant accent */
  --a:var(--v2);
  --b:var(--v);
  --c:var(--v2);


  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 35px rgba(0,0,0,.45);

  --radius: 18px;
  --radius2: 26px;

  --container: 1080px;

  --ease: cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 18% 10%, rgba(124,77,255,.18), transparent 55%),
    radial-gradient(900px 500px at 85% 15%, rgba(59,225,255,.15), transparent 50%),
    radial-gradient(700px 420px at 35% 90%, rgba(47,107,255,.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

/* Layout */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Top nav */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(6,8,16,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: .2px;
}

.brand-badge{
  width: 34px; height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(59,225,255,.35), transparent 55%),
    linear-gradient(135deg, rgba(124,77,255,.9), rgba(47,107,255,.9));
  box-shadow: 0 14px 40px rgba(124,77,255,.25);
  border: 1px solid rgba(255,255,255,.18);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.nav-link{
  padding: 10px 12px;
  border-radius: 14px;
  color: rgba(234,240,255,.82);
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  font-weight: 600;
  font-size: 14px;
}

.nav-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
}

/* Hero */
.page{
  position: relative;
}

/* profile-like subtle entrance for sections */
.tilt,
.card,
.profile-section,
.profile-quote,
.hero-card{
  will-change: transform;
}

@keyframes fadeUp{
  from{ opacity: 0; transform: translateY(14px) scale(.98); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: no-preference){
  .hero-card{ animation: fadeUp .55s var(--ease) both; }
  .section .card{ animation: fadeUp .55s var(--ease) both; }
}


.bg-shapes{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.shape{
  position:absolute;
  width: 280px; height: 280px;
  border-radius: 999px;
  filter: blur(25px);
  opacity: .22;
  animation: floaty 10s var(--ease) infinite;
}

.shape.s1{ left:-120px; top: 110px; background: radial-gradient(circle at 30% 30%, rgba(168,85,247,.65), transparent 60%); }
.shape.s2{ right:-140px; top: 40px; width: 330px; height: 330px; background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.70), transparent 60%); animation-duration: 13s; }
.shape.s3{ left: 20%; bottom:-180px; width: 360px; height: 360px; background: radial-gradient(circle at 30% 30%, rgba(168,85,247,.55), transparent 60%); animation-duration: 15s; }


@keyframes floaty{
  0%,100%{ transform: translateY(0) translateX(0) scale(1); }
  50%{ transform: translateY(-18px) translateX(10px) scale(1.03); }
}

.hero{
  padding: 36px 0 26px;
}

.hero-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
}

@media (max-width: 920px){
  .hero-wrap{ grid-template-columns: 1fr; }
}

/* Multi-layer hero card depth effect */
.hero-scene{
  perspective: 1000px;
}

.hero-card{
  position: relative;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  transform-style: preserve-3d;
  min-height: 330px;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 400px at 20% 10%, rgba(59,225,255,.25), transparent 55%),
    radial-gradient(700px 340px at 85% 20%, rgba(124,77,255,.23), transparent 55%),
    linear-gradient(135deg, rgba(59,225,255,.08), rgba(124,77,255,.08));
  opacity:.9;
  transform: translateZ(20px);
}

.hero-card .layer{
  position:absolute;
  inset: 14px;
  border-radius: calc(var(--radius2) - 10px);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  transform-style: preserve-3d;
}

.hero-card .layer.l1{ transform: translateZ(14px); opacity:.7; }
.hero-card .layer.l2{ inset: 26px; transform: translateZ(26px); opacity:.55; }
.hero-card .layer.l3{ inset: 38px; transform: translateZ(42px); opacity:.4; }

.hero-card-content{
  position:relative;
  padding: 28px;
  transform: translateZ(60px);
}

.hero-title{
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.6px;
}

.hero-subtitle{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.kbd{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 16px;
}

.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(234,240,255,.86);
  font-weight: 650;
  font-size: 13px;
}

/* Buttons */
.btn-row{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 18px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.20);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}

.btn.primary{
  background:
    linear-gradient(135deg, rgba(59,225,255,.28), rgba(124,77,255,.26)),
    rgba(255,255,255,.05);
  border-color: rgba(124,77,255,.35);
}

/* Sections */
.section{
  padding: 22px 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.lead{
  margin: 0;
  color: var(--muted);
  line-height:1.6;
}

.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow:hidden;
}

.card-pad{ padding: 18px; }

/* Hover tilt + depth */
.tilt{
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
  transform-style: preserve-3d;
}

.tilt:hover{
  transform: translateY(-3px) rotateX(7deg) rotateY(-7deg);
  border-color: rgba(59,225,255,.28);
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
}

/* Gallery grid */
.grid{
  display:grid;
  gap: 14px;
}

.grid.gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 740px){
  .grid.gallery{ grid-template-columns: 1fr; }
}

.project-card{
  position:relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
}

.project-card a{ display:block; height:100%; }

.project-media{
  padding: 14px;
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(59,225,255,.16), transparent 55%),
    radial-gradient(600px 240px at 90% 10%, rgba(124,77,255,.14), transparent 55%),
    rgba(255,255,255,.03);
}

.project-media img{
  width:100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
}

.project-body{
  padding: 14px 16px 16px;
}

.project-title{
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.2px;
}

.project-caption{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height:1.5;
}

.project-card::after{
  content:"";
  position:absolute;
  inset: -40px;
  background: linear-gradient(135deg, rgba(59,225,255,.0), rgba(59,225,255,.18), rgba(124,77,255,.0));
  transform: translateX(-35%) translateY(-10%) rotate(10deg);
  opacity: .0;
  transition: opacity .25s var(--ease), transform .45s var(--ease);
}

.project-card:hover::after{
  opacity: .9;
  transform: translateX(0) translateY(0) rotate(10deg);
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.hr-soft{
  border:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  margin: 18px 0;
}

/* Footer */
.footer{
  padding: 28px 0 40px;
  color: var(--muted2);
}

.footer .small{
  margin:0;
  font-size: 13px;
  line-height:1.6;
}

/* ==========================
   Profile page (premium futuristic 3D)
   ========================== */

:root{
  --bg0:#050816;
  --bg1:#0F172A;
  --neon:#00BFFF;
  --cyan:#00E5FF;
  --accent:#4CC9F0;
  --text:#FFFFFF;
  --secondaryText:#A8B2D1;
}

body.profile-page-ready{
  background:
    radial-gradient(1200px 650px at 18% 8%, rgba(76,201,240,.18), transparent 55%),
    radial-gradient(900px 520px at 85% 10%, rgba(0,229,255,.16), transparent 50%),
    radial-gradient(700px 420px at 35% 90%, rgba(0,191,255,.10), transparent 58%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

/* floating 3D-ish background objects */
.profile-page{
  width: 100%;
  min-height: 100vh;
  padding: 26px 0 40px;
  position: relative;
  overflow: hidden;
}

.profile-page::before,
.profile-page::after{
  content:"";
  position:absolute;
  inset:-20%;
  pointer-events:none;
  background-repeat:no-repeat;
  opacity:.85;
  transform: translate3d(0,0,0);
}

.profile-page::before{
  background-image:
    radial-gradient(circle at 15% 10%, rgba(0,229,255,.22) 0 16%, transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(0,191,255,.18) 0 14%, transparent 16%),
    radial-gradient(circle at 35% 85%, rgba(76,201,240,.16) 0 12%, transparent 14%);
  filter: blur(2px);
  animation: drift 10s var(--ease) infinite;
}

.profile-page::after{
  background-image:
    conic-gradient(from 90deg at 60% 30%, rgba(0,229,255,.20), rgba(0,191,255,.05), rgba(76,201,240,.12), rgba(0,229,255,.20));
  mask-image: radial-gradient(circle at 60% 30%, rgba(0,0,0,1) 0 35%, transparent 60%);
  opacity:.35;
  animation: spinGlow 18s linear infinite;
}

@keyframes drift{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(20px,-10px,0) scale(1.02); }
}

@keyframes spinGlow{
  0%{ transform: rotate(0deg) scale(1); }
  100%{ transform: rotate(360deg) scale(1.02); }
}

.profile-page .card,
.profile-page .profile-section,
.profile-page .profile-quote{
  transform-style: preserve-3d;
}

.profile-top{
  width: min(820px, calc(100% - 28px));
  margin: 0 auto 18px;
  text-align: center;
  position: relative;
  z-index: 2;
}


.profile-menu-title{
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.4px;
  font-weight: 900;
  text-shadow: 0 0 26px rgba(0,229,255,.18);
}

.profile-menu{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,229,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.menu-link{
  color: rgba(255,255,255,.90);
  font-weight: 750;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.menu-link:hover{
  transform: translateY(-2px);
  background: rgba(0,229,255,.08);
  border-color: rgba(0,229,255,.28);
}

.menu-sep{ color: rgba(176,176,176,.55); }

/* Cards/containers */
.card.profile-card{
  width: min(860px, calc(100% - 28px));
  margin: 0 auto;
  padding: 26px 18px;
  border-radius: 26px;
  position: relative;
  background: rgba(255,255,255,.045);
  border-color: rgba(0,229,255,.18);
}

.card.profile-card::before{
  content:"";
  position:absolute;
  inset: -2px;
  border-radius: 28px;
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(0,229,255,.22), transparent 60%),
    linear-gradient(135deg, rgba(0,229,255,.10), rgba(0,191,255,.06));
  opacity: .9;
  pointer-events:none;
}

.card.profile-card > *{ position: relative; z-index: 1; }

.profile-h1{
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.8px;
  font-weight: 950;
  text-shadow:
    0 0 22px rgba(0,229,255,.22),
    0 0 46px rgba(0,191,255,.12);
}

.profile-h2{
  margin: 14px 0 0;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  color: rgba(255,255,255,.95);
  text-shadow: 0 0 18px rgba(0,191,255,.18);
}

.profile-h3{
  margin: 10px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 850;
  color: rgba(255,255,255,.92);
  text-shadow: 0 0 18px rgba(0,229,255,.18);
}

.profile-intro{
  margin: 18px auto 0;
  color: var(--secondary);
  font-size: 17px;
  line-height: 1.9;
  max-width: 74ch;
}

/* Keep mark/small/strong/emphasis visually consistent */
.profile-intro mark{
  background: rgba(0,229,255,.18);
  color: #fff;
  border: 1px solid rgba(0,229,255,.30);
  padding: 2px 8px;
  border-radius: 12px;
}

.profile-image-wrap{
  display:flex;
  justify-content:center;
  padding: 8px 0 4px;
}

.profile-image-wrap img{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(0,229,255,.10);
  background: rgba(255,255,255,.03);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.profile-image-wrap img:hover{
  transform: translateY(-3px);
  border-color: rgba(0,229,255,.30);
  box-shadow: 0 24px 95px rgba(0,0,0,.65), 0 0 55px rgba(0,229,255,.12);
}

.profile-section{
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 16px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.section-title{
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.2px;
  font-weight: 950;
  color: rgba(255,255,255,.96);
  text-shadow: 0 0 26px rgba(0,229,255,.16);
}

.profile-list,
.profile-olist{
  margin: 0;
  padding-left: 22px;
  color: rgba(255,255,255,.90);
  font-size: 16px;
  line-height: 2;
}

.profile-olist li{ margin: 2px 0; }

.profile-quote{
  margin: 0 auto;
  padding: 18px 18px;
  width: min(680px, 100%);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,229,255,.10), rgba(255,255,255,.03));
  border: 1px solid rgba(0,229,255,.18);
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
  color: rgba(255,255,255,.92);
  font-size: 18px;
}

.profile-footer-entities{
  margin: 18px auto 0;
  width: min(760px, 100%);
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.8;
}

/* Enhanced hr-soft for profile page */
.hr-soft{
  border:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.25), transparent);
  margin: 18px auto;
  max-width: 860px;
}

/* Side nav removed for profile (no left buttons) */
.side-nav{ display:none !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .side-nav-item, .menu-link, .profile-image-wrap img{ transition: none !important; }
}

/* ==========================
   Autobiography (glass + 3D)
   ========================== */

.autob-hero-left{
  padding: 12px 0;
}

.autob-hero-orb{
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  left: 50%;
  top: 52%;
  transform: translate(-50%,-50%);
  background:
    radial-gradient(circle at 30% 30%, rgba(0,229,255,.35), rgba(0,229,255,.08) 40%, transparent 62%),
    radial-gradient(circle at 70% 65%, rgba(76,201,240,.20), transparent 55%);
  filter: blur(2px);
  opacity: .9;
  pointer-events:none;
  animation: orbDrift 7.5s var(--ease) infinite;
}

.hero-scene{
  position: relative;
}

@keyframes orbDrift{
  0%,100%{ transform: translate(-50%,-50%) scale(1); }
  50%{ transform: translate(-50%,-52%) scale(1.03); }
}

/* Improve autoplay cards look a bit */
.section .card.card-pad{
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(0,229,255,.16) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  border-radius: 20px;
}

/* Balance grid */
.grid.gallery{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 740px){
  .grid.gallery{ grid-template-columns: 1fr; }
}

/* Hero title hierarchy */
.hero-title{
  font-weight: 950;
}

/* Signature Moment image container */
.hero-card-content{
  display:flex;
  flex-direction: column;
  align-items: center;
}

/* Animated GIF (or animated image) showcase inside hero */
.gif-showcase{
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

.hero-card:hover .gif-showcase{
  transform: translateY(-2px);
  border-color: rgba(59,225,255,.28);
  box-shadow: 0 24px 90px rgba(0,0,0,.55);
}

.gif-showcase-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display:block;
}

@media (max-width: 740px){
  .gif-showcase-img{ height: 210px; }
}

.gif-caption{
  color: rgba(255,255,255,.95);
  font-weight: 900;
  text-align:center;
  text-shadow: 0 0 18px rgba(0,191,255,.12);
}


/* ==========================
   Favorites page
   ========================== */

.favorites-table{
  width:100%;
  border-collapse: collapse;
  border-spacing: 0;
  color: rgba(255,255,255,.92);
}

.favorites-table th,
.favorites-table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.favorites-table th{
  text-align:left;
  color: rgba(255,255,255,.90);
  font-weight: 850;
}

.favorites-content{
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,229,255,.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}

.fav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.fav-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,229,255,.08);
  border-color: rgba(0,229,255,.28);
  box-shadow: 0 20px 70px rgba(0,0,0,.45), 0 0 60px rgba(0,229,255,.10);
}

.fav-media{
  width: 100%;
  max-width: 760px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 70px rgba(0,0,0,.55);
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce){
  .shape{ animation: none !important; }
  .btn, .nav-link, .tilt, .project-card::after{ transition: none !important; }
  .autob-hero-orb{ animation: none !important; }
  .fav-btn{ transition: none !important; }
}




