body {
       margin: 0;
       padding: 0;
       position: relative;
       font-family: 'Segoe UI', sans-serif;
       overflow-x: hidden;
       width: 100%;
       background-color: #020815;
}
html {
       scroll-behavior: smooth;
}
:root {
       --primary: #00ffff;
       --primary-20: rgba(0, 255, 255, 0.2);
       --primary-50: rgba(0, 255, 255, 0.5);
       --muted-foreground: #a1a1aa;
       --foreground: #ffffff;
       --background: #0a0a0a;
       --ring: #00ffff;
       --ring-offset: #0a0a0a;
}

a {
       text-decoration: none;
}

.hero {
       background: url('assets/hero-bg.jpg');
       background-color: #18181b;
       height: 100vh;
       background-size: cover;
       background-position: center;
       background-repeat: no-repeat;
       position: relative;
}

.hero-overlay {
       position: absolute;
       inset: 0;
       background: rgba(3, 3, 3, 0.7);
       -webkit-backdrop-filter: blur(4px);
       backdrop-filter: blur(4px);
       z-index: 1;
}

.glass {
       -webkit-backdrop-filter: blur(8px);
       backdrop-filter: blur(8px);
       /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2); */
       box-shadow: 0 0 30px hsl(283, 100%, 65%, .4);
       border-radius: 40px;
}

.nav-desktop {
       position: fixed;
       top: 24px;
       left: 50%;
       transform: translateX(-50%);
       z-index: 60;
       border-color: 222 84% 12%;
       background: rgba(30, 41, 59, 0.7);
}

.nav-desktop ul {
       display: flex;
       gap: 20px;
       list-style: none;
}

.nav-desktop ul li:last-child {
       margin-right: 25px;
}

.nav-desktop button {
       padding: 8px 16px;
       border-radius: 999px;
       border: none;
       background: none;
       color: #a1a1aa;
       cursor: pointer;
       transition: 0.2s;
       font-size: 1rem;
}


.nav-desktop button:hover {
       color: #e5e7eb;
       transform: scale(1.05);
}

.name {
       position: relative;
       z-index: 10;
       text-align: center;
       padding-top: 30vh;
}

.name h1 {
       font-size: 6rem;
       font-weight: 900;
       margin: 0;
       opacity: 0;
       filter: blur(20px);
       transform: translateY(20px);
       animation: fadeInText 2s ease-out forwards;
       animation-delay: 1s;
       z-index: 10;
}

.span1,
.span2 {
       display: inline-block;
       background-size: 300%;
       background-clip: text;
       -webkit-background-clip: text;
       color: transparent;
       animation: gradientShift 6s infinite ease-in-out;
}

.span1 {
       background-image: linear-gradient(270deg, #ffffff, #00f0ff, #ff00f7);
}

.span2 {
       background-image: linear-gradient(270deg, #00ffe7, #8a2be2, #ff00c8);
}

@keyframes fadeInText {
       to {
              opacity: 1;
              filter: blur(0);
              transform: translateY(0);
       }
}

@keyframes gradientShift {
       0% {
              background-position: 0% 50%;
       }

       50% {
              background-position: 100% 50%;
       }

       100% {
              background-position: 0% 50%;
       }
}

.badges-container {
       display: flex;
       gap: 1rem;
       margin-top: 1rem;
       align-items: center;
       justify-content: center;
       z-index: 10;
       position: relative;
}

.badge {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.5rem 1.2rem;
       border-radius: 9999px;
       background: rgba(30, 41, 59, 0.7);
       backdrop-filter: blur(12px);
       -webkit-backdrop-filter: blur(12px);
       box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge svg {
       width: 20px;
       height: 20px;
}

.badge .text {
       font-size: 1.1rem;
       font-weight: 600;
}

.text-primary {
       color: #6ee7b7;
}

.text-secondary {
       color: #93c5fd;
}

.social-buttons {
       position: absolute;
       bottom: 200px;
       left: 50%;
       transform: translateX(-50%);
       display: flex;
       gap: 20px;
       flex-wrap: wrap;
       z-index: 10;
}

.btn {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 10px;
       padding: 12px 24px;
       border-radius: 12px;
       border: 1px solid rgba(255, 255, 255, 0.2);
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       color: white;
       text-decoration: none;
       font-size: 14px;
       font-weight: 500;
       transition: all 0.3s ease;
       position: relative;
       overflow: hidden;
}

.btn:hover {
       transform: scale(1.05);
       color: #000;
}

/* Gradients for hover */
.github:hover {
       background-image: linear-gradient(270deg, #00ffe7, #ff00c8);
}

.twitter:hover {
       background-image: linear-gradient(270deg, #00ffe7, #0d8ddb);
}

.linkedin:hover {
       background-image: linear-gradient(70deg, #00ffe7, #1DA1F2, #dad8d8);
}

.contact:hover {
       background: linear-gradient(135deg, #ff416c, #ff4b2b);
       background-image: linear-gradient(270deg, #00ffe7, #ff00c8);
}

/* Icon style */
.btn svg {
       width: 20px;
       height: 20px;
       stroke: white;
       transition: stroke 0.3s ease;
}

.btn:hover svg {
       stroke: #000;
}

.back-to-top {
       position: fixed;
       bottom: 20px;
       right: 20px;
       width: 50px;
       height: 50px;
       background-image: linear-gradient(270deg, #00f0ff, #8a2be2);
       color: #fff;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
       cursor: pointer;
       opacity: 0;
       visibility: hidden;
       transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.back-to-top:hover {
       transform: scale(1.1);
}

.back-to-top.show {
       opacity: 1;
       visibility: visible;
}

.scroll-down {
       position: absolute;
       z-index: 1;
       bottom: 60px;
       left: 50%;
       transform: translateX(-50%);
       color: white;
       font-size: 50px;
       cursor: pointer;
       animation: bounce 1.5s infinite;
       display: flex;
       flex-direction: column;
}

@keyframes bounce {

       0%,
       100% {
              transform: translateX(-50%) translateY(0);
       }

       50% {
              transform: translateX(-50%) translateY(10px);
       }
}

.my-section {
       background-color: #060a1a;
       width: 100%;
       height: 100vh;
       /* padding-top: 10%; */
}

.circle {
       position: absolute;
       border-radius: 50%;
       pointer-events: none;
       filter: blur(120px);
       opacity: 0.7;
       mix-blend-mode: screen;
       z-index: 0;
       transition: all 1s ease-in-out;
}

.circle-purple {
       width: 600px;
       height: 600px;
       background: radial-gradient(circle at right, #22d3ee, transparent 60%);
       top: 2%;
       left: 50%;
       transform: translate(50%, 50%);
}

.circle-cyan {
       width: 600px;
       height: 600px;
       background: radial-gradient(circle at left, #22d3ee, transparent 60%);
       bottom: 15%;
       right: 90%;
       transform: translate(50%, 50%);
}

.circle-cyan2 {
       width: 600px;
       height: 600px;
       background: radial-gradient(circle at right, #22d3ee, transparent 60%);
       bottom: 15%;
       left: 50%;
       transform: translate(50%, 50%);
}

.words {
       top: 24px;
       left: 50%;
       transform: translateX(-50%);
       z-index: 50;
       border-color: 222 84% 12%;
       background: rgba(30, 41, 59, 0.7);
       box-shadow: 0 0 30px hsl(283, 100%, 65%, .4);
       position: relative;
       color: #a1a1aa;
       width: 600px;
       font-size: 20px;
       text-align: center;
       padding: 20px;
       margin-top: 300px;
       margin-bottom: 300px;
       border-radius: 0.75rem;
}
.about-section {
       display: flex;
       flex-direction: row;
       align-items: center;
       justify-content: center;
       padding: 80px 20px;
       gap: 100px;
       flex-wrap: wrap;
}

.about-image-container {
       position: relative;
       width: 250px;
       height: 250px;
       border-radius: 50%;
       overflow: hidden;
       border: 4px solid #9333ea;
       box-shadow: 0 0 20px #9333ea66;
}

.about-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
}

.about-badge {
       position: absolute;
       bottom: -12px;
       left: 50%;
       transform: translateX(-50%);
       background-color: #181828;
       border: 1px solid #ec4899;
       border-radius: 50%;
       width: 40px;
       height: 40px;
       display: flex;
       align-items: center;
       justify-content: center;
}

.about-content {
       max-width: 600px;
}

.about-title {
       font-size: 50px;
       font-weight: bold;
       color: #fff;
       margin-bottom: 20px;
}

.about-title span {
       background-image: linear-gradient(270deg, #00ffe7, #8a2be2, #ff00c8);
       display: inline-block;
       background-size: 300%;
       background-clip: text;
       -webkit-background-clip: text;
       color: transparent;
       animation: gradientShift 6s infinite ease-in-out;
}

.about-description {
       font-size: 18px;
       line-height: 1.6;
       color: #d1d5db;
       margin-bottom: 30px;
}

.about-description span {
       background-image: linear-gradient(270deg, #00ffe7, #8a2be2, #ff00c8);
       display: inline-block;
       background-size: 300%;
       background-clip: text;
       -webkit-background-clip: text;
       color: transparent;
}

.skill-bar {
       margin-bottom: 30px;
}

.skill-title {
       font-size: 18px;
       font-weight: 700;
       margin-bottom: 8px;
       color: #fff;
       text-shadow: 0 0 5px #facc15aa;
}

.skill-progress {
       background-color: #1f1f2e;
       height: 24px;
       border-radius: 12px;
       overflow: hidden;
       box-shadow: inset 0 0 10px #00000088;
       position: relative;
}

.skill-fill {
       height: 100%;
       background: linear-gradient(90deg, #9333ea, #ec4899, #f43f5e);
       color: #fff;
       font-size: 14px;
       font-weight: bold;
       text-align: right;
       padding-right: 12px;
       display: flex;
       align-items: center;
       justify-content: flex-end;
       border-radius: 12px;
       box-shadow: 0 0 10px #ec489966, inset 0 0 5px #00000088;
       animation: fill-bar 2s ease forwards;
       width: 0;
}

.skill-fill::after {
       content: attr(style);
       display: none;
}

@keyframes fill-bar {
       to {
              width: var(--value);
       }
}

.skill-container {
       display: flex;
       align-items: center;
       gap: 12px;
       color: #fff;
}

.icon-box {
       padding: 8px;
       border-radius: 12px;
       background: linear-gradient(135deg, #f43f5e, #f97316, #eab308);
       display: flex;
       align-items: center;
       justify-content: center;
}

.icon-box svg {
       width: 20px;
       height: 20px;
       stroke: #000;
}

.skill-title {
       font-weight: 600;
       font-size: 16px;
}

.main-con {
       width: 100%;
       /* height: 100vh; */
}

.titles {
       margin-top: 100px;
}

.titles h1 {
       color: #fff;
       font-size: 50px;
       font-weight: 900;
       text-align: center;
}

.titles h1 span {
       background-image: linear-gradient(270deg, #00ffe7, #8a2be2, #ff00c8);
       display: inline-block;
       background-size: 300%;
       background-clip: text;
       -webkit-background-clip: text;
       color: transparent;
       animation: gradientShift 6s infinite ease-in-out;
       -webkit-animation: gradientShift 6s infinite ease-in-out;
}

.titles p {
       color: #fff;
       font-size: x-large;
       text-align: center;
       width: 600px;
       margin: auto;
}

.container {
       max-width: 1200px;
       margin: 0 auto;
}

.dashboard-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
       gap: 2rem;
       padding: 2rem 0;
}

.project-card {
       background: rgba(30, 30, 50, 0.8);
       border-radius: 16px;
       padding: 2rem;
       position: relative;
       backdrop-filter: blur(10px);
       border: 1px solid rgba(255, 255, 255, 0.1);
       transition: all 0.3s ease;
       overflow: hidden;
}

.project-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       border-radius: 16px;
       padding: 2px;
       background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
       mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
       mask-composite: exclude;
       pointer-events: none;
}

.project-card:hover {
       transform: translateY(-5px);
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.card-header {
       display: flex;
       align-items: center;
       gap: 1rem;
       margin-bottom: 1.5rem;
}

.icon-wrapper {
       width: 50px;
       height: 50px;
       border-radius: 12px;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.5rem;
       color: white;
}

.icon-wrapper.red {
       background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.icon-wrapper.blue {
       background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.icon-wrapper.pink {
       background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.icon-wrapper.green {
       background: linear-gradient(135deg, #51cf66, #40c057);
}

.card-header h2 {
       font-size: 1.5rem;
       font-weight: 600;
       color: #ffffff;
}

.description {
       color: #b8b8b8;
       line-height: 1.6;
       margin-bottom: 1.5rem;
       font-size: 0.95rem;
}

.tech-stack {
       display: flex;
       flex-wrap: wrap;
       gap: 0.5rem;
       margin-bottom: 2rem;
}

.tech-tag {
       background: rgba(255, 255, 255, 0.1);
       color: #ffffff;
       padding: 0.4rem 0.8rem;
       border-radius: 20px;
       font-size: 0.8rem;
       font-weight: 500;
       border: 1px solid rgba(255, 255, 255, 0.2);
       transition: all 0.3s ease;
}

.tech-tag:hover {
       background: rgba(255, 255, 255, 0.2);
       transform: translateY(-1px);
}

.action-buttons {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 1rem;
}
.action-buttons a{
       color: #fff;
}
.btn-code,
.btn-demo {
       padding: 0.8rem 1.2rem;
       border: none;
       border-radius: 8px;
       font-weight: 500;
       cursor: pointer;
       transition: all 0.3s ease;
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
       font-size: 0.9rem;
}

.btn-code {
       background: rgba(255, 255, 255, 0.1);
       color: #ffffff;
       border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-code:hover {
       background: rgba(255, 255, 255, 0.2);
       transform: translateY(-2px);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-demo {
       background: rgba(255, 255, 255, 0.1);
       color: #ffffff;
       border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-demo:hover {
       background: rgba(255, 255, 255, 0.2);
       transform: translateY(-2px);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
       body {
              padding: 1rem;
       }

       .dashboard-grid {
              grid-template-columns: 1fr;
              gap: 1.5rem;
       }

       .project-card {
              padding: 1.5rem;
       }

       .action-buttons {
              grid-template-columns: 1fr;
       }
}

@media (max-width: 480px) {
       .card-header {
              flex-direction: column;
              align-items: flex-start;
              gap: 0.8rem;
       }

       .card-header h2 {
              font-size: 1.3rem;
       }

       .tech-stack {
              gap: 0.3rem;
       }

       .tech-tag {
              font-size: 0.75rem;
              padding: 0.3rem 0.6rem;
       }
}

/* Animation for card entrance */
@keyframes fadeInUp {
       from {
              opacity: 0;
              transform: translateY(30px);
       }

       to {
              opacity: 1;
              transform: translateY(0);
       }
}

.project-card {
       animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(1) {
       animation-delay: 0.1s;
}

.project-card:nth-child(2) {
       animation-delay: 0.2s;
}

.project-card:nth-child(3) {
       animation-delay: 0.3s;
}

.project-card:nth-child(4) {
       animation-delay: 0.4s;
}

/* Gradient classes */
.gradient-cyber {
       background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
}

.gradient-neon {
       background: linear-gradient(135deg, #ff00ff 0%, #8000ff 100%);
}

.gradient-fire {
       background: linear-gradient(135deg, #ff4500 0%, #ff8c00 100%);
}

.gradient-matrix {
       background: linear-gradient(135deg, #00ff00 0%, #008000 100%);
}

/* Text gradients */
.text-gradient-cyber {
       background-image: linear-gradient(270deg, #00ffe7, #8a2be2, #ff00c8);
       display: inline-block;
       background-size: 300%;
       background-clip: text;
       -webkit-background-clip: text;
       color: transparent;
       animation: gradientShift 6s infinite ease-in-out;
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
}

.text-gradient-neon {
       background: linear-gradient(135deg, #ff00ff 0%, #8000ff 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
}

/* Glass effect */
.glass {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes pulse {

       0%,
       100% {
              opacity: 1;
       }

       50% {
              opacity: 0.5;
       }
}

@keyframes slideUp {
       from {
              opacity: 0;
              transform: translateY(30px);
       }

       to {
              opacity: 1;
              transform: translateY(0);
       }
}

@keyframes pulseGlow {

       0%,
       100% {
              box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
       }

       50% {
              box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
       }
}

.animate-pulse {
       animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-slide-up {
       animation: slideUp 0.6s ease-out forwards;
}

.pulse-glow {
       animation: pulseGlow 2s ease-in-out infinite;
}

/* Transition classes */
.transition-cyber {
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects */
.hover-scale:hover {
       transform: scale(1.05);
}

.glow-primary:hover {
       box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

/* Layout and utility classes */
.contact-section {
       padding: 5rem 1.5rem;
       position: relative;
       overflow: hidden;

}

.background-container {
       position: absolute;
       top: 0;
       right: 0;
       bottom: 0;
       left: 0;
}

.bg-element-1 {
       position: absolute;
       top: 5rem;
       left: 2.5rem;
       width: 8rem;
       height: 8rem;
       border-radius: 9999px;
       filter: blur(64px);
       opacity: 0.1;
       animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.bg-element-2 {
       position: absolute;
       bottom: 5rem;
       right: 2.5rem;
       width: 10rem;
       height: 10rem;
       border-radius: 9999px;
       filter: blur(64px);
       opacity: 0.1;
       animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
       animation-delay: 1s;
}

.bg-element-3 {
       position: absolute;
       top: 50%;
       left: 50%;
       transform: translateX(-50%) translateY(-50%);
       width: 15rem;
       height: 15rem;
       border-radius: 9999px;
       filter: blur(64px);
       opacity: 0.05;
       animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
       animation-delay: 2s;
}

.main-container {
       max-width: 56rem;
       margin-left: auto;
       margin-right: auto;
       position: relative;
       z-index: 10;
}

.header-section {
       text-align: center;
       margin-bottom: 4rem;
       animation: slideUp 0.6s ease-out forwards;
}

.main-title {
       font-size: 2.25rem;
       line-height: 2.5rem;
       font-weight: 900;
       margin-bottom: 1.5rem;
       color: #fff;
       /* margin-top: 20px; */
}

.main-description {
       font-size: 1.25rem;
       line-height: 1.75rem;
       color: var(--muted-foreground);
       max-width: 42rem;
       margin-left: auto;
       margin-right: auto;
       margin-bottom: 2rem;
}

.cta-card {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       border: 1px solid var(--primary-20);
       border-radius: 1rem;
       padding: 2rem;
       margin-bottom: 3rem;
}

.cta-header {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 0.75rem;
       margin-bottom: 1rem;
}

.cta-icon {
       width: 2rem;
       height: 2rem;
       color: var(--primary);
}

.cta-title {
       font-size: 1.5rem;
       line-height: 2rem;
       font-weight: 700;
}

.cta-description {
       color: var(--muted-foreground);
       margin-bottom: 1.5rem;
}

.cta-button {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
       white-space: nowrap;
       font-size: 0.875rem;
       line-height: 1.25rem;
       background-color: var(--primary);
       color: #000000;
       font-weight: 700;
       padding: 1rem 2rem;
       height: 2.75rem;
       border-radius: 0.375rem;
       border: none;
       cursor: pointer;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       text-decoration: none;
}

.cta-button:hover {
       transform: scale(1.05);
       background: linear-gradient(135deg, #ff00ff 0%, #8000ff 100%);
       box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.cta-button:focus-visible {
       outline: 2px solid transparent;
       outline-offset: 2px;
       box-shadow: 0 0 0 2px var(--ring);
}

.send-icon {
       width: 1.25rem;
       height: 1.25rem;
       margin-right: 0.5rem;
}

.social-grid {
       display: grid;
       gap: 1.5rem;
       animation: slideUp 0.6s ease-out forwards;
}

.social-link {
       position: relative;
       display: block;
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       border: 1px solid var(--primary-20);
       border-radius: 0.75rem;
       padding: 1.5rem;
       text-decoration: none;
       color: inherit;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
       border-color: var(--primary-50);
       transform: scale(1.05);
       box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.social-content {
       text-align: center;
}

.social-icon-container {
       width: 4rem;
       height: 4rem;
       margin: 0 auto 1rem auto;
       border-radius: 9999px;
       display: flex;
       align-items: center;
       justify-content: center;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover .social-icon-container {
       animation: pulseGlow 2s ease-in-out infinite;
}

.social-icon {
       width: 2rem;
       height: 2rem;
       color: #000000;
}

.social-title {
       font-size: 1.125rem;
       line-height: 1.75rem;
       font-weight: 700;
       margin-bottom: 0.5rem;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       color: #ffffff;
}

.social-link:hover .social-title {
       background: linear-gradient(135deg, #00ffff 0%, #0080ff 100%);
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       background-clip: text;
}

.social-description {
       font-size: 0.875rem;
       line-height: 1.25rem;
       color: var(--muted-foreground);
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover .social-description {
       color: var(--foreground);
}

.social-underline {
       margin-top: 1rem;
       opacity: 0;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover .social-underline {
       opacity: 1;
}

.underline-bar {
       width: 2rem;
       height: 0.125rem;
       background-color: var(--primary);
       margin: 0 auto;
       border-radius: 9999px;
}

.background-glow {
       position: absolute;
       top: 0;
       right: 0;
       bottom: 0;
       left: 0;
       opacity: 0;
       transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
       border-radius: 0.75rem;
}

.social-link:hover .background-glow {
       opacity: 0.1;
}

.glow-content {
       width: 100%;
       height: 100%;
       filter: blur(40px);
}

.quote-section {
       text-align: center;
       margin-top: 4rem;
       animation: slideUp 0.6s ease-out forwards;
}

.quote-card {
       background: rgba(255, 255, 255, 0.05);
       backdrop-filter: blur(10px);
       -webkit-backdrop-filter: blur(10px);
       border: 1px solid var(--primary-20);
       border-radius: 0.75rem;
       padding: 1.5rem;
}

.quote-text {
       color: var(--muted-foreground);
}

.quote-author {
       font-size: 0.875rem;
       line-height: 1.25rem;
       font-weight: 600;
       margin-top: 0.5rem;
}

/* Animation delays */
.social-link:nth-child(1) {
       animation-delay: 0s;
}

.social-link:nth-child(2) {
       animation-delay: 0.1s;
}

.social-link:nth-child(3) {
       animation-delay: 0.2s;
}

.social-link:nth-child(4) {
       animation-delay: 0.3s;
}

/* Responsive design */
@media (min-width: 768px) {
       .main-title {
              font-size: 3rem;
              line-height: 1;
       }

       .social-grid {
              grid-template-columns: repeat(2, minmax(0, 1fr));
       }
}

@media (min-width: 1024px) {
       .social-grid {
              grid-template-columns: repeat(4, minmax(0, 1fr));
       }
}
.nav-desktop button.active {
       background: linear-gradient(90deg, #f472b6, #818cf8);
              color: #18181b;
              font-weight: bold;
}