:root {
  --bg1: #050816;
  --bg2: #0d1630;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #bcc7d6;
  --primary: #7c3aed;
  --secondary: #06b6d4;
  --accent: #22c55e;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.25), transparent 30%),
    radial-gradient(circle at top right, rgba(6, 182, 212, 0.18), transparent 28%),
    radial-gradient(circle at bottom center, rgba(34, 197, 94, 0.10), transparent 25%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  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: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  position: relative;
  z-index: 2;
}

.page-section {
  padding: 90px 0;
}

.bg-blur {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.blur-1 {
  width: 260px;
  height: 260px;
  background: #7c3aed;
  top: 80px;
  left: -60px;
}

.blur-2 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  top: 180px;
  right: -80px;
}

.blur-3 {
  width: 260px;
  height: 260px;
  background: #22c55e;
  bottom: 50px;
  left: 40%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: rgba(5, 8, 22, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.hamburger {
  display: none;
  width: 34px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  margin: 6px 0;
  border-radius: 20px;
  background: #fff;
  transition: 0.3s;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  color: #d9e4f0;
  font-size: 14px;
  letter-spacing: 2px;
}

.hero h1,
.sub-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.hero h1 span,
.sub-hero h1 span {
  background: linear-gradient(90deg, #ffffff, #8be9fd, #b388ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 650px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin: 30px 0 36px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 15px 30px rgba(124, 58, 237, 0.35);
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
}

.hero-info,
.card-grid,
.about-grid,
.skills-grid-page,
.project-grid,
.contact-grid {
  display: grid;
  gap: 24px;
}

.hero-info {
  grid-template-columns: repeat(3, 1fr);
}

.info-box,
.glass-card,
.project-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-box h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.info-box p,
.glass-card p,
.project-card p {
  color: var(--muted);
  line-height: 1.8;
}

.profile-card {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.profile-ring {
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(124,58,237,0.65), rgba(6,182,212,0.45), rgba(34,197,94,0.25));
  z-index: -1;
  filter: blur(10px);
}

.profile-content {
  text-align: center;
}

.profile-image {
  width: 250px;
  height: 250px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.16);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.profile-content p {
  color: var(--muted);
}

.mini-details {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.mini-details span,
.skill-tags span,
.project-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: #e7edf7;
  font-size: 14px;
}

.sub-hero {
  padding: 120px 0 40px;
}

.section-title {
  margin-bottom: 40px;
}

.section-title p {
  color: #8be9fd;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 12px;
}

.section-title h2,
.glass-card h3,
.project-card h3 {
  margin-bottom: 14px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-grid {
  grid-template-columns: repeat(2, 1fr);
}

.skills-grid-page {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
}

.skill-tags,
.project-tags,
.contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.progress-wrapper {
  display: grid;
  gap: 22px;
}

.progress-box {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.progress-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.progress-bar {
  width: 100%;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 1.5s ease;
}

.project-grid {
  grid-template-columns: repeat(2, 1fr);
}

.project-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(124,58,237,0.16);
  border: 1px solid rgba(124,58,237,0.25);
}

.contact-links a,
.text-link {
  color: #8be9fd;
  font-weight: 600;
}

.footer {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-grid,
  .card-grid,
  .about-grid,
  .skills-grid-page,
  .project-grid,
  .contact-grid,
  .hero-info {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-left {
    text-align: center;
  }

  .hero-text {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .profile-image {
    width: 220px;
    height: 220px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    right: 20px;
    width: 220px;
    background: rgba(8, 12, 28, 0.95);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 20px;
    flex-direction: column;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 55px;
  right: 35px;
  width: 5px;
  height: 5px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 52px;
  height: 52px;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}
.logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}


/* NAV SOCIAL */

.nav-social{
display:flex;
align-items:center;
gap:18px;
}

.nav-social img{
width:20px;
height:20px;
filter:invert(1);
opacity:0.8;
transition:0.3s;
}

.nav-social img:hover{
opacity:1;
transform:scale(1.2);
}
.website-grid{
display:grid;
gap:28px;
}

.website-card{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:24px;
padding:24px;
border-radius:24px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.12);
box-shadow:0 20px 50px rgba(0,0,0,0.35);
backdrop-filter:blur(18px);
align-items:center;
}

.website-card img{
width:100%;
height:260px;
object-fit:cover;
border-radius:16px;
}

.website-content h3{
margin-bottom:10px;
font-size:26px;
}

.website-content p{
color:var(--muted);
line-height:1.7;
margin-bottom:16px;
}

@media(max-width:992px){
.website-card{
grid-template-columns:1fr;
}
.website-card img{
height:220px;
}
}
.website-content a{
  margin-top: 30px;

  text-decoration: none;
}
.nav-links a{
position:relative;
text-decoration:none;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:#ffffff;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}
.btn{
text-decoration:none !important;
}
.contact-card{
transition:transform 0.3s ease, box-shadow 0.3s ease;
cursor:pointer;
}

.contact-card:hover{
box-shadow:0 25px 60px rgba(0,0,0,0.45);
}
.contact-card{
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.contact-card::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  background: radial-gradient(circle, rgba(124,58,237,0.28), transparent 70%);
  top:-60px;
  right:-60px;
  border-radius:50%;
  pointer-events:none;
}
.contact-card:hover .contact-icon{
  transform:none !important;
}

.contact-card::after{
  content:"";
  position:absolute;
  width:160px;
  height:160px;
  background: radial-gradient(circle, rgba(6,182,212,0.22), transparent 70%);
  bottom:-70px;
  left:-50px;
  border-radius:50%;
  pointer-events:none;
}

.contact-card:hover{
  box-shadow: 0 28px 65px rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.2);
}

.contact-card-top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:24px;
}

.contact-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;

  background:linear-gradient(135deg, rgba(124,58,237,0.22), rgba(6,182,212,0.22));

  border:1px solid rgba(255,255,255,0.12);

  box-shadow:0 12px 24px rgba(0,0,0,0.2);

  animation:none;
}
.contact-list{
  display:grid;
  gap:16px;
}

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px 16px;
  border-radius:18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.contact-item:hover{
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

.contact-mini-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-item span{
  display:block;
  font-size:13px;
  color: #8be9fd;
  letter-spacing: 0.5px;
  margin-bottom:4px;
}

.contact-item p{
  margin:0;
  color: var(--text);
  line-height:1.6;
}

.contact-item a{
  color: var(--text);
  text-decoration:none;
}

.contact-item a:hover{
  color:#8be9fd;
}

.contact-links-box{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}

.contact-action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:14px 18px;
  border-radius:16px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition: 0.3s ease;
}

.contact-action-btn:hover{
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(124,58,237,0.28), rgba(6,182,212,0.22));
  box-shadow: 0 18px 35px rgba(0,0,0,0.28);
}

@media (max-width: 768px){
  .contact-links-box{
    grid-template-columns: 1fr;
  }

  .contact-icon{
    width:50px;
    height:50px;
    font-size:22px;
  }

  .contact-item{
    padding:12px 14px;
  }
}.logo{
letter-spacing:1px;
white-space:nowrap;
}

/* =========================
   RESPONSIVE FIXES
========================= */

/* Tablet */
@media (max-width: 992px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .nav {
    min-height: 74px;
    gap: 16px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-social {
    gap: 12px;
  }

  .nav-social img {
    width: 18px;
    height: 18px;
  }

  .nav-links {
    top: 74px;
    right: 0;
    width: 240px;
    padding: 18px;
    gap: 18px;
    z-index: 1000;
  }

  .hero {
    min-height: auto;
    padding: 50px 0 70px;
  }

  .hero-grid {
    grid-template-columns:1fr;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-right{
order:-1;
}

  .hero-left {
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-info {
    grid-template-columns: 1fr;
  }

  .profile-card {
    max-width: 460px;
    margin: 0 auto;
  }

  .profile-image {
    width: 210px;
    height: 210px;
  }

  .card-grid,
  .about-grid,
  .skills-grid-page,
  .project-grid,
  .contact-grid,
  .website-grid {
    grid-template-columns: 1fr;
  }

  .website-card {
    grid-template-columns: 1fr;
  }

  .website-card img {
    height: 230px;
  }

  .sub-hero {
    padding: 90px 0 30px;
  }

  .page-section {
    padding: 70px 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    width: calc(100% - 24px);
  }

  .header {
    backdrop-filter: blur(12px);
  }

  .nav {
    min-height: 68px;
  }

  .logo {
    font-size: 21px;
  }

  .nav-social {
    gap: 10px;
  }

  .nav-social img {
    width: 16px;
    height: 16px;
  }

  .hamburger {
    width: 30px;
  }

  .hamburger span {
    height: 2.5px;
    margin: 5px 0;
  }

  .nav-links {
    top: 68px;
    right: 0;
    width: 100%;
    max-width: 220px;
    border-radius: 16px;
    padding: 16px;
    gap: 14px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 8px 14px;
    letter-spacing: 1px;
  }

  .hero h1,
  .sub-hero h1 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.15;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 28px;
  }

  .info-box,
  .glass-card,
  .project-card,
  .website-card,
  .progress-box {
    padding: 18px;
    border-radius: 20px;
  }

  .info-box h3 {
    font-size: 24px;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title p {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .section-title h2,
  .glass-card h3,
  .project-card h3,
  .website-content h3 {
    font-size: 22px;
    line-height: 1.3;
  }

  .profile-card {
    padding: 20px;
    border-radius: 24px;
  }

  .profile-image {
    width: 170px;
    height: 170px;
  }

  .profile-content h2 {
    font-size: 22px;
  }

  .mini-details {
    gap: 8px;
  }

  .mini-details span,
  .skill-tags span,
  .project-tags span {
    font-size: 12px;
    padding: 8px 12px;
  }

  .website-card img {
    height: 200px;
  }

  .website-content p,
  .glass-card p,
  .project-card p,
  .info-box p {
    font-size: 14px;
    line-height: 1.7;
  }

  .progress-title {
    gap: 10px;
    font-size: 14px;
  }

  .contact-card-top {
    margin-bottom: 18px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 14px;
  }

  .contact-item {
    padding: 12px;
    gap: 12px;
  }

  .contact-mini-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    font-size: 16px;
  }

  .contact-links-box {
    grid-template-columns: 1fr;
  }

  .contact-action-btn {
    min-height: 50px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }

  .logo {
    font-size: 19px;
  }

  .nav-social {
    gap: 8px;
  }

  .nav-social img {
    width: 15px;
    height: 15px;
  }

  .hero h1,
  .sub-hero h1 {
    font-size: 30px;
  }

  .hero-text {
    font-size: 14px;
  }

  .page-section {
    padding: 56px 0;
  }

  .sub-hero {
    padding: 78px 0 24px;
  }

  .info-box,
  .glass-card,
  .project-card,
  .website-card,
  .progress-box {
    padding: 16px;
  }

  .website-card img {
    height: 180px;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}
/* ================= FOOTER ================= */

.footer{
padding:40px 0 20px;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-container{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer-left h3{
font-size:22px;
margin-bottom:5px;
}

.footer-left span{
color:var(--secondary);
}

.footer-left p{
color:var(--muted);
font-size:14px;
}

.footer-social{
display:flex;
gap:20px;
}

.footer-social a{
width:42px;
height:42px;
border-radius:12px;
display:flex;
align-items:center;
justify-content:center;

background:rgba(255,255,255,0.05);
border:1px solid rgba(255,255,255,0.08);

transition:0.3s;
}

.footer-social img{
width:18px;
height:18px;
filter:invert(1);
opacity:0.8;
}

.footer-social a:hover{
background:linear-gradient(135deg,#7c3aed,#06b6d4);
transform:translateY(-4px);
box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

.footer-social a:hover img{
opacity:1;
}

.footer-divider{
height:1px;
background:rgba(255,255,255,0.08);
margin:30px 0 15px;
}

.footer-copy{
text-align:center;
font-size:13px;
color:var(--muted);
}

@media (max-width:768px){

.footer-container{
flex-direction:column;
text-align:center;
}

.footer-social{
justify-content:center;
}

}
.tech-icons-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:20px;
  margin-top:30px;
}

.tech-icon-card{
  padding:22px 16px;
  border-radius:20px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow:0 18px 40px rgba(0,0,0,0.22);
  backdrop-filter:blur(18px);
  text-align:center;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-icon-card img{
  width:52px;
  height:52px;
  margin-bottom:12px;
  animation:techFloat 3s ease-in-out infinite;
}

.tech-icon-card p{
  color:var(--text);
  font-weight:600;
  font-size:15px;
}

.tech-icon-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 45px rgba(0,0,0,0.32);
}

@keyframes techFloat{
  0%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-6px);
  }
  100%{
    transform:translateY(0px);
  }
}

@media (max-width: 992px){
  .tech-icons-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 576px){
  .tech-icons-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .tech-icon-card{
    padding:18px 12px;
  }

  .tech-icon-card img{
    width:42px;
    height:42px;
  }

  .tech-icon-card p{
    font-size:14px;
  }
}
.availability-badge::before{
content:"";
width:8px;
height:8px;
border-radius:50%;
background:#22c55e;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{opacity:1;}
50%{opacity:0.3;}
100%{opacity:1;}
}