:root {
  --radius-xl: 1.5rem;
  --transition-fast: 0.3s ease;
  --transition-spring: cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    background: linear-gradient(to right, #0f2e22, #1f3d2b);
}

.gradient-text {
    background: linear-gradient(90deg, #1dd1a1, #48dbfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 1px rgba(0, 255, 163, 0.1);
}




.footer-css {
    background: #0f172a;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.footer-container {
    max-width: 900px;
    margin: 0 auto;
}
.footer-quote {
    color: #ccc;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 4px rgba(0, 255, 180, 0.3);
}
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.icon {
    width: 1.8rem;
    height: 1.8rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.icon-link:hover .icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(0, 255, 180, 0.5));
}
.footer-copy {
    font-size: 0.875rem;
    color: #888;
}
