/* =============================
   GLOBAL STYLES
   ============================= */

:root {
  /* Core */
  --bg-main: #000000;
  --bg-secondary: #111827;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Text */
  --text-primary: #e5e7eb;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  /* Accent (Apple-like cyan/blue) */
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.25);

  /* Glow */
  --glow: 0 0 40px rgba(56, 189, 248, 0.35);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "Inter", sans-serif;
  background: radial-gradient(
      1200px circle at 20% 10%,
      #000000,
      var(--bg-main)
  );
  color: var(--text-primary);
  overflow-x: hidden;
}
.hero-sub {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.skills-intro {
  margin-top: 12px;
  color: var(--text-muted);
}



/* =============================
   ANIMATIONS
   ============================= */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* FLOATING GLOW ORBS */
.glow-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  animation: subtleFloat 10s ease-in-out infinite;
}



/* =============================
   HEADINGS
   ============================= */

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-primary);
}
.contact1{
  font-family: "Instrument Serif", serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--text-primary);
}
p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
a, button {
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a:hover, button:hover {
  transform: translateY(-1px);
}

* {
  animation-duration: 0.8s !important;
}

/* =============================
   NAVBAR
   ============================= */

/* =============================
   FLOATING CENTER NAVBAR
   ============================= */

.navbar-glass {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;

  padding: 14px 32px;

  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);

  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);

  transition: all 0.4s ease;
}

.nav-inner:hover {
  box-shadow: var(--glow);
}

/* Logo */
.logo {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

/* Links */
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  background: var(--accent-soft);
  color: var(--accent);
}


/* =============================
   SKILLS SECTION
   ============================= */
.row{
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 90px;
  justify-content: space-between;
}

.title-main {
  font-size: 4rem;
  font-family: "Instrument Serif", serif;
  /* background: radial-gradient(circle, rgb(255, 255, 255), rgb(25, 63, 255), rgb(0, 255, 221)); */
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background-image: linear-gradient(45deg, red, yellow, rgb(255, 0, 166));
  color: transparent;
}
.skills {
  text-align: center;
  padding-top: 100px;
}

.skills-intro {
  font-family: "Instrument Serif", serif;
  letter-spacing: -0.02em;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.5rem);
}

.skill-row {
  width: 60%;
  margin: 20px auto;
  padding: 40px;
  background: var(--glass-bg);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  text-align: left;
  transition: 0.4s ease;
}

.skill-row:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 30px rgba(0,255,255,0.3);
}
.Skill-text{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 2rem;
    background-image: linear-gradient(45deg, rgb(0, 191, 255), yellow, rgb(255, 0, 98));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.Skill-text-2{
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 2rem;
    background-image: linear-gradient(60deg, rgb(0, 191, 255), rgb(0, 255, 132), rgb(212, 255, 0));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.skill-img, .work-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px #008ac1);
}

.tech-stack {
  width: 50px;
  margin: 10px 5px;
  transition: 0.3s ease;
}

.tech-stack:hover {
  transform: scale(1.2);
}


/* =============================
   CONTACT SECTION
   ============================= */

.contact-me {
  /* background-color: #000; */
    background: linear-gradient(to top, #003d7a, #3f74be );
  padding: 130px 0;
  color: white;
  text-align: center;
}

.contact-message {
  width: 45%;
  margin: 30px auto;

}

.Contact-button {
  border-radius: 12px;
  transition: 0.4s ease;
  font-size: 1.3rem;
}

.Contact-button:hover {
  background: linear-gradient(to right, #00c6ff, #004a9f);
  box-shadow: 0 0 20px #009dff;
}

.Contact-button a {
  color: white;
  text-decoration: none;
}

/* =============================
   FOOTER
   ============================= */

.bottom-container {
  background: linear-gradient(to top, #001427, #003d7a);
  padding: 30px;
  text-align: center;
}

.footer-link img {
  width: 35px;
  margin: 10px 20px;
  transition: 0.3s;
}

.footer-link img:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.bottom-container p {
  color: #fff;
  opacity: 0.7;
  margin-top: 20px;
}


/* Projects Section */
.projects {
  padding: 100px 20px;
  background: radial-gradient(circle, #00000000, #00000000);
  color: var(--text-primary);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  background-image: linear-gradient(45deg, rgb(0, 191, 255), yellow, rgb(255, 0, 98));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Grid Container */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Project Card */
.project-card {
  width: 100%;
  max-width: 300px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
   box-shadow: rgba(255, 255, 255, 0.25) 0px 20px 30px -20px, rgba(254, 254, 254, 0.3) 0px 30px 20px -30px, rgba(255, 255, 255, 0.35) 0px -2px 6px 0px inset;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.project-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 10px;

}


.project-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 30px rgba(0,255,255,0.3);
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px #008ac1);
}

.project-links a {
  margin: 5px;
  font-size: 0.85rem;
  text-decoration: none;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.skill-row,
.project-card,
.contact-me {
  opacity: 0;
  transform: translateY(40px);
}



/* PROJECTS LIST */

.work-section {
  padding: 150px 6vw;
  max-width: 1400px;
  margin: auto;
}

.work-item {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 00px 0;
  margin-bottom: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
 box-shadow: rgba(255, 255, 255, 0.25) 0px 5px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(255, 255, 255, 0.35) 0px -2px 6px 0px inset;
  border-radius: 20px;  /* border-bottom: 1px solid rgba(0, 102, 255, 0.315); */
  align-items: center;
  text-align: center;
  transition: background 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(0,255,255,0.3);
}

.work-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  padding: 20px;
}

.work-index {
  font-size: 0.95rem;
  color: var(--accent);
  letter-spacing: 1px;
  background-color: #008ac100;
}

.work-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--text-primary);
}

.work-desc {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.work-tech {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.work-right1 {
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
background: #ff4f4f;
background: linear-gradient(180deg, rgba(255, 38, 100, 1) 0%, rgba(117, 0, 21, 1) 65%, rgba(0, 0, 0, 1) 100%);
  height: 720px;
 box-shadow: rgba(255, 255, 255, 0.25) 0px 5px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(0, 0, 0, 0.3) 0px -2px 10px 0px inset;

}
.work-right2 {
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
 background: #00D4FF;
background: linear-gradient(180deg, rgba(0, 212, 255, 1) 0%, rgba(9, 9, 121, 1) 65%, rgba(0, 0, 0, 1) 100%);
 height: 640px;
 box-shadow: rgba(255, 255, 255, 0.25) 0px 5px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(0, 0, 0, 0.3) 0px -2px 10px 0px inset;
}
.work-right3 {
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
  background: #ff4f4f;
background: #e678ff;
background: linear-gradient(180deg, rgba(230, 120, 255, 1) 0%, rgba(98, 0, 117, 1) 65%, rgba(0, 0, 0, 1) 100%);
   height: 680px;
 box-shadow: rgba(255, 255, 255, 0.25) 0px 5px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(0, 0, 0, 0.3) 0px -2px 10px 0px inset;
}
.work-right4 {
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
  background: #ff4f4f;
background: #ff4f4f;
background: linear-gradient(180deg, rgb(79, 255, 88) 0%, rgb(41, 118, 0) 50%, rgb(0, 0, 0) 100%);  height: 600px;
 box-shadow: rgba(255, 255, 255, 0.25) 0px 5px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(0, 0, 0, 0.3) 0px -2px 10px 0px inset;
}
.work-right5 {
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  margin: 20px;
  background: #ff4f4f;
background: #ff4f4f;
background: linear-gradient(180deg, rgba(255, 79, 79, 1) 0%, rgba(255, 0, 123, 1) 50%, rgba(204, 0, 0, 1) 100%);  height: 600px;
 box-shadow: rgba(255, 255, 255, 0.25) 0px 5px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(0, 0, 0, 0.3) 0px -2px 10px 0px inset;
}

.work-right img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.6s ease;
}
.work-right1 img,
 .work-right2 img,
  .work-right3 img,
   .work-right4 img,
    .work-right5 img{
  width: 100%;
  height: auto;
  padding: 4px;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.work-item:hover .work-right img {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 900px) {
  .work-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .work-right {
    order: -1;
  }
}

.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease;
}


.tech-stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 22px;         
  min-width: 90px;     
  padding: 2px 12px;      
  margin-left: 10px;
  border-radius: 800px;
  font-size: 0.7rem;
  line-height: 1;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: var(--text-secondary);
}



  .tech-pill img {
  width: 16px;
  height: 16px;
  margin-top: 14px;
  display: block;    
  align-items: center;   
  object-fit: contain;

}

.tech-pill:hover {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}
/* ==========================================
   PROJECT TECH PILLS 
   ========================================== */

.proj-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}

/* Pill container */
.proj-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  height: 22px;            
  min-width: 90px;         
  padding: 0 12px;

  border-radius: 999px;
  font-size: 0.7rem;
  line-height: 1;
  white-space: nowrap;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: var(--text-secondary);
}

/* Tech icon */
.proj-tech-icon {
  width: 14px;
  height: 14px;
  align-items: center;
  text-align: center;
  justify-content: center;
  object-fit: contain;
  transform: translateY(-0.5px); /* optical center fix */
}

/* ==================================
   SKILLS TECH BUTTONS
   ================================== */

.skills-tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* Pill button */
.skills-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 26px;            
  padding: 0 14px;

  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: var(--text-secondary);
  transition: all 0.25s ease;
}

/* Icon inside */
.skills-tech-pill img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transform: translateY(-0.5px);
}

/* Hover (premium feel) */
.skills-tech-pill:hover {
  color: var(--text-primary);
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

.profile-links {
  display: flow;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 30px;
  padding: 8px 18px;
  min-width: 120px;

  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;

  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;

  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}

.profile-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.profile-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}


.sparkle-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  max-width: 700px;
}

.sparkle-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 14px;
  line-height: 1.6;

  font-size: 1rem;
  color: #e5e7eb;
}

.sparkle {
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.6));
}

.sparkle-list,
.sparkle-list li,
.sparkle-list li * {
  text-decoration: none !important;
}

/* =====================================
   INSTRUMENT SERIF 
   ===================================== */

.section-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}
.title1{
  font-family: "Instrument Serif", serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  font-size: clamp(2.5rem, 3vw, 2.5rem);
  background: linear-gradient(45deg, rgb(0, 191, 255), yellow, rgb(255, 0, 98));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.work-title {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}


.work-index, .logo {
  font-family: "Instrument Serif", serif;
  font-style: italic;
}
 .logo {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
}


@property --＠color-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(98 100% 62%);
}

@property --＠color-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(204 100% 59%);
}

/* keyframes that change the color variable */
@keyframes gradient-change {
  to {
    --＠color-1: hsl(210 100% 59%);
    --＠color-2: hsl(310 100% 59%);
  }
}
@property --＠color-4 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(0, 100%, 62%);
}
@property --＠color-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(73, 100%, 59%);
}


/* keyframes that change the color variable */
@keyframes gradient-change2 {
  to {
    --＠color-4: hsl(314, 100%, 59%);
    --＠color-3: hsl(322, 100%, 59%);
  }
}

.edit-word {
  /* apply variable changes over time */
  animation: gradient-change 2s linear infinite alternate;
  font-style: italic;
  background: linear-gradient(
   
    to right in oklch, 
    /* use the variables in a gradient (or wherever!) */
    var(--＠color-1), 
    var(--＠color-2)
  );
  
  /* old browser support */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* modern browser version */
  background-clip: text;
  color: transparent;
}

.edit-word1 {
  /* apply variable changes over time */
  animation: gradient-change 2s linear infinite alternate;
  font-style: italic;
   background: linear-gradient(181deg, #ffffff, #a9a9a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* modern browser version */
  background-clip: text;
  color: transparent;
}
.edit-word2 {
  /* apply variable changes over time */
  animation: gradient-change 2s linear infinite alternate;
  font-style: italic;
  font: 300 3.5rem "Instrument Serif", serif;
    background-clip: text;
    background: linear-gradient(
   
    to right in oklch, 
    /* use the variables in a gradient (or wherever!) */
    var(--＠color-1), 
    var(--＠color-3)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* modern browser version */
  background-clip: text;
  color: transparent;
}

.section-title1 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  padding-top: 70px;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

@layer demo.support {
  h1 {
    font-size: 10vmin;
    line-height: 1.1;
  }

  body {
    background: hsl(204 100% 5%);

    min-block-size: 100%;
    box-sizing: border-box;
    display: grid;
    place-content: center;

    font-family: system-ui, sans-serif;
    font-size: min(200%, 4vmin);

    padding: 5vmin;
  }

  h1, p, body {
    margin: 0;
    text-wrap: balance;
  }

  h1 {
    line-height: 1.25cap;
  }

  p {
    font-family: "Dank Mono", ui-monospace, monospace;
  }

  html {
    block-size: 100%;
  }

  article {
    display: grid;
    gap: 1lh;
    text-align: center;
  }
}

/* =============================
   END OF FILE
   ============================= */
/* FLOATING BACKGROUND BLOBS */
.blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  filter: blur(60px);
}
.blob {
  position: absolute;
  width: 70vmax;
  height: 70vmax;

  background: radial-gradient(
    circle at 30% 30%,
    rgba(56,189,248,0.55),
    rgba(56,189,248,0.15) 45%,
    transparent 70%
  );

  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  opacity: 0.35;

  animation: drift 220s ease-in-out infinite alternate,
             morph 90s ease-in-out infinite;
}
.blob.one {
  top: -20%;
  left: -20%;
  background: radial-gradient(circle, #38bdf8, transparent 60%);
}

.blob.two {
  top: 40%;
  left: 60%;
  background: radial-gradient(circle, #8b5cf6, transparent 60%);
  animation-duration: 260s, 110s;
}

.blob.three {
  top: 80%;
  left: -10%;
  background: radial-gradient(circle, #22d3ee, transparent 60%);
  animation-duration: 300s, 130s;
}
@keyframes morph {
  0% {
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  }
  50% {
    border-radius: 55% 45% 40% 60% / 60% 40% 60% 40%;
  }
  100% {
    border-radius: 45% 55% 60% 40% / 45% 55% 45% 55%;
  }
}

/* ===============================
   VIEW DETAILS GLASS CURSOR
   =============================== */

.view-cursor {
  position: fixed;
  width: 100px;
  height: 100px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

/* Glass circle */
.view-cursor-inner {
  position: absolute;
  inset: 25px;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-cursor-inner i {
  color: white;
  font-size: 28px;
}

/* Rotating text */
.view-text {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  inset: 50px;
  border-radius: 50%;
  display: flex;
  animation: rotateText 100s ease-in infinite;
}

.view-text text {
  fill: white;
  font-size: 24px;
  letter-spacing: 6px;
  font-family: Montserrat, sans-serif;
}

@keyframes rotateText {
  from { transform: rotate(0deg); }
  to { transform: rotate(6deg); }
}

/* Show only on project cards */
.work-item:hover ~ .view-cursor {
  opacity: 1;
}

/* ===============================
   PROJECT SHOWCASE (NEW CLEAN)
   =============================== */

.project-showcase {
  padding: 120px 8%;
  position: relative;
  overflow: hidden;
}

.project-header {
  text-align: center;
  margin-bottom: 70px;
}

.project-header h2 {
  font-family: "Instrument Serif", serif;
  font-size: 3rem;
  font-weight: 400;
}

.project-header p {
  opacity: 0.7;
  margin-top: 10px;
}

/* Slider Wrapper */
.project-slider {
  
  overflow: hidden;
}

/* Sliding Track */
.project-track {
  display: flex;
  gap: 40px;
  transition: transform 0.7s ease;
}

/* Card */
.project-card-new {
  min-width: 420px;
  max-width: 420px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  transition: 0.4s ease;
}

.project-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(56,189,248,0.4);
}

.project-card-new img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Content */
.project-content {
  padding: 25px;
}

.project-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.project-content p {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* Buttons */
.project-buttons {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.project-buttons a {
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid white;
  transition: 0.3s ease;
}

.project-buttons a:hover {
  background: white;
  color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card-new {
    min-width: 300px;
    max-width: 300px;
  }
}


/* =============================
   END OF FILE
   ============================= */