* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    background: #EDF2F7;
    color: #2D3748;
    font-size: 1rem;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

body.light-mode {
    background: #2D3748;
    color: #EDF2F7;
}

.navbar {
    background: #EDF2F7;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: background 0.5s ease, transform 0.3s ease;
}

.navbar.scrolled {
    background: #EDF2F7;
    transform: translateY(0);
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.navbar li {
    position: relative;
}

.navbar a {
    color: #2D3748;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
}

.navbar a:hover::before {
    left: 0;
}

.navbar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #FFB300;
}

body.light-mode .navbar {
    background: #2D3748;
}

body.light-mode .navbar a {
    color: #EDF2F7;
}

body.light-mode .navbar a::before {
    background: rgba(255, 255, 255, 0.2);
}

body.light-mode .navbar a:hover {
    color: #FFB300;
}

.dropdown {
    display: none;
    position: absolute;
    background: #EDF2F7;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top;
}

body.light-mode .dropdown {
    background: #2D3748;
}

.navbar li:hover .dropdown {
    display: block;
    animation: dropdownFade 0.4s ease forwards;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateX(-50%) scaleY(0.8); }
    to { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

.dropdown a {
    display: block;
    padding: 12px 16px;
    border-radius: 0;
    font-size: 1rem;
    transition: background 0.3s ease;
    color: #2D3748;
}

body.light-mode .dropdown a {
    color: #EDF2F7;
}

.dropdown a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #FFB300;
}

body.light-mode .dropdown a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.section {
    padding: 140px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05), transparent);
    opacity: 0.3;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #EDF2F7;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

body.light-mode .container {
    background: #2D3748;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.content-text {
    flex: 1;
    min-width: 300px;
    animation: fadeIn 1s ease forwards;
    color: #2D3748;
}

.content-text p, .content-text strong, .content-text li, .content-text a {
    color: #2D3748;
}

body.light-mode .content-text {
    color: #EDF2F7;
}

body.light-mode .content-text p, body.light-mode .content-text strong, body.light-mode .content-text li, body.light-mode .content-text a {
    color: #EDF2F7;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-img {
    width: 500px;
    height: 347px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-img1 {
    width: 247px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.content-img:hover, .content-img1:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

h2 {
    color: #111827;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

body.light-mode h2 {
    color: #EDF2F7;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70%;
    height: 6px;
    background: linear-gradient(to right, #EDF2F7, #4A90E2);
    border-radius: 4px;
    animation: underlineGrow 0.8s ease forwards;
}

body.light-mode h2::after {
    background: linear-gradient(to right, #2D3748, #4A90E2);
}

@keyframes underlineGrow {
    from { width: 0; }
    to { width: 70%; }
}

h3 {
    color: #111827;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

body.light-mode h3 {
    color: #EDF2F7;
}

.skills-category {
    margin-bottom: 2.5rem;
}

.skills-category h4 {
    color: #111827;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

body.light-mode .skills-category h4 {
    color: #EDF2F7;
}

.skills-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 2.5rem;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: #4A90E2 #EDF2F7;
}

.skills-grid::-webkit-scrollbar {
    height: 10px;
}

.skills-grid::-webkit-scrollbar-track {
    background: #EDF2F7;
    border-radius: 5px;
}

.skills-grid::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 5px;
}

.skills-grid::-webkit-scrollbar-thumb:hover {
    background: #FFB300;
}

body.light-mode .skills-grid {
    scrollbar-color: #4A90E2 #2D3748;
}

body.light-mode .skills-grid::-webkit-scrollbar-track {
    background: #2D3748;
}

.skill-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #EDF2F7;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.1), -6px -6px 20px rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    min-width: 160px;
    flex: 0 0 auto;
    animation: fadeIn 0.5s ease forwards;
}

body.light-mode .skill-card {
    background: #2D3748;
    box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.3), -6px -6px 20px rgba(255, 255, 255, 0.1);
}

.skill-card h4 {
    color: #111827;
}

body.light-mode .skill-card h4 {
    color: #EDF2F7;
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: #FFB300;
}

body.light-mode .skill-card:hover {
    background: #FFB300;
}

.contact-form {
    max-width: 700px;
    margin: 2.5rem auto;
}

.contact-form inputvoid {
    display: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin: 0.8rem 0;
    border: none;
    border-radius: 10px;
    background: #EDF2F7;
    transition: all 0.4s ease;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #2D3748;
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea {
    background: #2D3748;
    color: #EDF2F7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #EDF2F7;
    box-shadow: 0 0 15px #4A90E2;
    transform: scale(1.02);
    animation: input-glow 1.5s infinite;
}

body.light-mode .contact-form input:focus,
body.light-mode .contact-form textarea:focus {
    background: #2D3748;
    box-shadow: 0 0 15px #4A90E2;
}

@keyframes input-glow {
    0% { box-shadow: 0 0 5px #4A90E2; }
    50% { box-shadow: 0 0 15px #4A90E2; }
    100% { box-shadow: 0 0 5px #4A90E2; }
}

.contact-form button {
    background: #4A90E2;
    color: #EDF2F7;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: perspective(500px) translateZ(0); /* 3D perspective */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), /* Base shadow */
                0 0 10px rgba(74, 144, 226, 0.5), /* Initial glow */
                0 8px 0 #3A7BC0; /* 3D effect bottom shadow */
    animation: glowPulse 2s infinite alternate; /* Glowing animation */
}

body.light-mode .contact-form button {
    background: #FFB300;
    color: #2D3748;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2),
                0 0 10px rgba(255, 179, 0, 0.5),
                0 8px 0 #CC9400;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.4s ease;
}

body.light-mode .contact-form button::before {
    background: rgba(0, 0, 0, 0.2);
}

.contact-form button:hover::before {
    left: 0;
}

.contact-form button:hover {
    transform: perspective(500px) translateZ(0) translateY(-4px); /* 3D lift on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(74, 144, 226, 0.8),
                0 6px 0 #3A7BC0; /* Enhanced shadow and glow */
    background: #FFB300;
}

body.light-mode .contact-form button:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 179, 0, 0.8),
                0 6px 0 #CC9400;
    background: #4A90E2;
}

@keyframes glowPulse {
    0% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(74, 144, 226, 0.5), 0 8px 0 #3A7BC0; }
    100% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(74, 144, 226, 0.8), 0 8px 0 #3A7BC0; }
}

body.light-mode .contact-form button {
    animation: glowPulseLight 2s infinite alternate;
}

@keyframes glowPulseLight {
    0% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(255, 179, 0, 0.5), 0 8px 0 #CC9400; }
    100% { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 179, 0, 0.8), 0 8px 0 #CC9400; }
}

.download-btn {
    display: inline-block;
    background: #4A90E2;
    color: #EDF2F7;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    text-align: center;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    transform: perspective(500px) translateZ(0); /* 3D perspective */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), /* Base shadow */
                0 0 10px rgba(74, 144, 226, 0.5), /* Initial glow */
                0 8px 0 #3A7BC0; /* 3D effect bottom shadow */
    animation: glowPulse 2s infinite alternate; /* Glowing animation */
}

body.light-mode .download-btn {
    background: #FFB300;
    color: #2D3748;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2),
                0 0 10px rgba(255, 179, 0, 0.5),
                0 8px 0 #CC9400;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.4s ease;
}

body.light-mode .download-btn::before {
    background: rgba(0, 0, 0, 0.2);
}

.download-btn:hover::before {
    left: 0;
}

.download-btn:hover {
    transform: perspective(500px) translateZ(0) translateY(-4px); /* 3D lift on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(74, 144, 226, 0.8),
                0 6px 0 #3A7BC0; /* Enhanced shadow and glow */
    background: #FFB300;
}

body.light-mode .download-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(255, 179, 0, 0.8),
                0 6px 0 #CC9400;
    background: #4A90E2;
}

.social-links a {
    color: #2D3748;
    margin-right: 1.8rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

body.light-mode .social-links a {
    color: #EDF2F7;
}

.social-links a:hover {
    color: #FFB300;
    transform: translateY(-5px);
}

.hackathons-list {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #EDF2F7;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1s ease forwards;
}

body.light-mode .hackathons-list {
    background: #2D3748;
}

.hackathons-list p, .hackathons-list h3 {
    color: #2D3748;
}

body.light-mode .hackathons-list p, body.light-mode .hackathons-list h3 {
    color: #EDF2F7;
}

#about {
    background: #EDF2F7;
    color: #2D3748;
}

body.light-mode #about {
    background: #2D3748;
}

#about .content-wrapper {
    display: flex;
    justify-content: center;
}

.profile-card {
    background: rgba(237, 242, 247, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

body.light-mode .profile-card {
    background: rgba(45, 55, 72, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #2D3748;
}

body.light-mode .profile-img-wrapper {
    border: 4px solid #EDF2F7;
}

.content-img1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

body.light-mode .img-overlay {
    background: rgba(255, 255, 255, 0.2);
}

.profile-card:hover .content-img1 {
    transform: scale(1.1);
}

.profile-card:hover .img-overlay {
    opacity: 0;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2D3748;
}

body.light-mode .content-text p {
    color: #EDF2F7;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #2D3748;
}

body.light-mode .contact-info i {
    color: #EDF2F7;
}

.contact-info a {
    color: #2D3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.light-mode .contact-info a {
    color: #EDF2F7;
}

.contact-info a:hover {
    color: #FFB300;
}

.social-icon {
    font-size: 1.8rem;
    color: #2D3748;
    transition: transform 0.3s ease, color 0.3s ease;
}

body.light-mode .social-icon {
    color: #EDF2F7;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #FFB300;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #EDF2F7;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    color: #2D3748;
}

.popup.popup-animate {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

body.light-mode .popup {
    background: #2D3748;
    color: #EDF2F7;
}

#about h2 {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Achievements Section Styles */
.achievement-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(237, 242, 247, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards 0.2s;
}

body.light-mode .achievement-card {
    background: rgba(45, 55, 72, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.achievement-img-wrapper {
    flex: 0 0 200px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.achievement-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.achievement-img:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem;
    }

    .navbar li {
        margin: 0.5rem;
    }

    .navbar a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .dropdown {
        left: 0;
        transform: none;
        min-width: 180px;
    }

    .container {
        padding: 2rem;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .achievement-card {
        flex-direction: column;
        text-align: center;
    }

    .achievement-img-wrapper {
        margin-top: 1.5rem;
        width: 150px;
    }

    .content-img {
        width: 100%;
        height: 300px;
    }

    .content-img1 {
        width: 200px;
        height: 250px;
    }

    .profile-card {
        flex-direction: column;
        text-align: center;
    }

    .profile-img-wrapper {
        width: 150px;
        height: 150px;
    }

    .content-text p {
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .skills-grid {
        gap: 1.5rem;
    }

    .skill-card {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 100px 15px;
    }

    .container {
        padding: 1.5rem;
    }

    .navbar a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
    }

    .contact-form button,
    .download-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    padding: 2rem 20px;
    background: #EDF2F7;
    color: #2D3748;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

body.light-mode .footer {
    background: #2D3748;
    color: #EDF2F7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #111827;
}

body.light-mode .footer h2 {
    color: #EDF2F7;
}

.footer p {
    font-size: 1rem;
    color: #4A5568;
}

body.light-mode .footer p {
    color: #A0AEC0;
}

@media (max-width: 768px) {
    .footer h2 {
        font-size: 1.8rem;
    }

    .footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 15px;
    }

    .footer h2 {
        font-size: 1.5rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
  
}
.glow-button {
    background: linear-gradient(135deg, #00f7ff, #007cf0, #5eead4);
    border: none;
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.7rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff, 0 0 30px #00f7ff;
    position: relative;
    overflow: hidden;
    animation: softPulse 2s infinite ease-in-out;
}

/* Glowing pulse animation */
@keyframes softPulse {
    0% {
        box-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px #00f7ff, 0 0 50px #00f7ff;
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff;
        transform: scale(1);
    }
}

/* Shiny ripple effect on hover */
.glow-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.4) 10%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    border-radius: 50%;
    pointer-events: none;
}

.glow-button:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.glow-button:hover {
    background: linear-gradient(135deg, #5eead4, #00f7ff, #007cf0);
    color: #ffffff;
    letter-spacing: 3px;
}

.footer h2 {
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 3px;
    font-weight: bold;
    background: linear-gradient(270deg, #ff4ecd, #00f7ff, #ffe400, #00ff99, #ff4ecd);
    background-size: 800% 800%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowShimmer 10s ease infinite;
    margin-top: 2rem;
}

/* Keyframes for glowing rainbow shimmer */
@keyframes rainbowShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
