
/* ka Overlay styles */
.hedaoverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hedaoverlay.hedaactive {
    display: block;
    opacity: 1;
}

:root {
    --primary-gradient: linear-gradient(135deg, #fcf4ad 0%, #fff3bf 100%);
    --hover-color: #3498db;
    --text-primary: #2d3436;
    --animation-timing: 0.3s;
}

footer {
    background: var(--primary-gradient);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.footer-section {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--animation-timing) cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(31, 38, 135, 0.15);
    background: rgba(255, 255, 255, 0.25);
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--hover-color);
    transition: width var(--animation-timing) ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin: 1rem 0;
    transition: all var(--animation-timing) ease;
    position: relative;
}

.footer-section a {
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--animation-timing) ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    margin-right: 0.5rem;
    transform: translateX(-10px);
    transition: all var(--animation-timing) ease;
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
    color: var(--hover-color);
}

.footer-section a:hover {
    color: var(--hover-color);
    transform: translateX(10px);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --animation-timing: 0.3s;
    --fb-color: #3b5998;
    --twitter-color: #1da1f2;
    --linkedin-color: #0077b5;
    --discord-color: #7289da;
    --whatsapp-color: #25D366;
    --email-color: #864842;
    --youtube-color: #ea4335;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--text-primary);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--animation-timing) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    text-decoration: none !important;
    border-bottom: none !important;
}

.social-links a::after {
    content: attr(data-profile);
    position: absolute;
    bottom: -35px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--animation-timing) ease;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    pointer-events: none;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.social-links a:hover::after {
    opacity: 1;
    transform: translateY(0);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
    100% { filter: brightness(1); }
}

.social-links a:hover {
    transform: translateY(-10px) scale(1.2);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.social-links a i {
    transition: transform var(--animation-timing) ease;
    position: relative;
    z-index: 1;
}

.social-links a:hover i {
    transform: scale(1.2);
}

.social-links.has-hovered a:not(:hover) {
    opacity: 0.5;
    transform: scale(0.95);
    color: #837d4a;
}


/* Nolored icons and matching text */
.social-links a:hover .fa-facebook, 
.social-links a:hover[data-profile*="facebook"]::after { 
    color: var(--fb-color); 
}

.social-links a:hover .fa-twitter,
.social-links a:hover[data-profile*="twitter"]::after { 
    color: var(--twitter-color); 
}

.social-links a:hover .fa-instagram,
.social-links a:hover[data-profile*="instagram"]::after { 
    background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.social-links a:hover .fa-linkedin,
.social-links a:hover[data-profile*="linkedin"]::after { 
    color: var(--linkedin-color); 
}

.social-links a:hover .fa-discord,
.social-links a:hover[data-profile*="discord"]::after { 
    color: var(--discord-color); 
}

.social-links a:hover .fa-whatsapp,
.social-links a:hover[data-profile*="whatsapp"]::after { 
    color: var(--whatsapp-color); 
}

.social-links a:hover .fa-envelope,
.social-links a:hover[data-profile*="gmail"]::after { 
    color: var(--email-color); 
}

.social-links a:hover .fa-youtube,
.social-links a:hover[data-profile*="youtube"]::after { 
    color: var(--youtube-color); 
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    border-radius: 15px;
    animation: pulse 15s infinite;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 200vh;
}

.hedaheader {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px;
    position: fixed;
    width: calc(100% - 30px);
    top: 12px;
    left:15px;
    right: 20px;
    z-index: 1000;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0.2, 0.2, 0.2, 0.4);
    font-family: 'Ubuntu';
}

.hedaheader.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: rgba(254, 250, 223, 0.358);
}

.hedaheader.scrolled-down {
    border-radius: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width:100%;
}

.hedaheader.scrolled-up {
    top: 10px;
    left: 10px;
    right: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.378);
}

.hedanav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hedabrand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hedalogo-text {
    font-size: 1.5rem;
    font-weight: 650;
    background: linear-gradient(45deg, #303030, #7c7c7c);
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.hedadonate-button {
    background-color: #fff3bf;
    color: #1f2937;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.528);
}

.hedadonate-button:hover {
    transform: translateY(-2px);
    transform: scale(1.1);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.622);
}

.hedanav-list {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin: 0;
    padding: 0;
    z-index: 1000;
}

.hedanav-list li {
    position: relative;
}

.hedanav-list a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    display: block;
    white-space: nowrap;
}

.hedanav-list a:hover {
    color: #4f46e5;
}

.hedahas-submenu {
    position: relative;
}

.hedahas-submenu > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hedahas-submenu > a::after {
    content: '▾';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.hedahas-submenu:hover > a::after {
    transform: rotate(180deg);
}

.hedasubmenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    list-style-type: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    padding: 8px;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.hedahas-submenu:hover .hedasubmenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hedasubmenu li {
    margin: 0;
    padding: 0;
}

.hedasubmenu a {

    padding: 12px 16px;
    display: block;
    color: #374151;
    transition: all 0.3s ease;
    border-radius: 8px;
    white-space: nowrap;
}

.hedasubmenu a:hover {
    background-color: #f7efa8;
    color: #4f46e5;
    padding-left: 20px;
}

.hedahamburger {
    margin-left: 20px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    gap: 6px;
}

.hedahamburger span {
    width: 28px;
    height: 2px;
    background-color: #1f2937;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

@media (max-width: 1200px) {
    .hedanav-list {
        gap: 1rem;
    }
    .hedanav-list a {
        padding: 8px 12px;
        font-size: 0.95rem;
        white-space: nowrap;
    }
}

@media (max-width: 1024px) {
    .hedanav-list a {
        padding: 8px 8px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .hedanav {
        justify-content: space-between;
    }
    .hedabrand {
        margin-right: 0;
    }
    .hedahamburger {
        display: flex;
    }

    .hedahamburger.hedaactive span:nth-child(1) {
        transform: rotate(45deg) translate(1px, -3px);
    }

    .hedahamburger.hedaactive span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hedahamburger.hedaactive span:nth-child(3) {
        transform: rotate(-45deg) translate(1px, 3px);
    }

    .hedanav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 85%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.5rem;
        border-radius: 15px;
        overflow-y: scroll;
    }

    .hedanav-list.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1100;
    }

    .hedanav-list.hedaactive {
        right: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .hedanav-list li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }

    .hedanav-list.hedaactive li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .hedanav-list a {
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .hedanav-list a:hover {
        background-color: #f4eca6;
    }

    .hedasubmenu {
        position: static;
        background-color: #e6e6e6;
        box-shadow: none;
        padding-left: 20px;
        padding: 0.5rem;
        margin: 0.5rem 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .hedahas-submenu.hedaactive .hedasubmenu {
        display: block;
        animation: slideDown 0.5s ease forwards;
    }

    @keyframes slideDown {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hedahas-submenu > a::after {
        float: right;
        transform: rotate(-90deg);
    }

    .hedahas-submenu.hedaactive > a::after {
        transform: rotate(0);
    }

    .hedadonate-button {
        align-items: center;
        width: 100%;
        height: 50px;
        margin-top: 1rem;
        text-align: center;
    }

    .hedahamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hedahamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hedahamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-section {
        flex: 1 1 300px;
        margin: 0.5rem;
        animation: slideIn var(--animation-timing) ease-out forwards;
        opacity: 0;
    }

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

    .footer-section:nth-child(1) { animation-delay: 0.1s; }
    .footer-section:nth-child(2) { animation-delay: 0.2s; }
    .footer-section:nth-child(3) { animation-delay: 0.3s; }
    .footer-section:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.footer-content:hover .footer-section:not(:hover) {
    filter: brightness(0.95);
    transform: scale(0.98);
}

.footer-section {
    scrollbar-width: thin;
    scrollbar-color: var(--hover-color) transparent;
}

.footer-section::-webkit-scrollbar {
    width: 6px;
}

.footer-section::-webkit-scrollbar-track {
    background: transparent;
}

.footer-section::-webkit-scrollbar-thumb {
    background-color: var(--hover-color);
    border-radius: 3px;
}






/* ENHANCED VOLUNTEERING STYLES - GODMODE */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    /* Modern Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --secondary-light: #34d399;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --error-color: #ef4444;
    --success-color: #10b981;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --secondary-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --background-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 15px rgba(99, 102, 241, 0.5);
    
    /* Animations */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    --easing: cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: var(--shadow-lg);
    --transition-speed: 0.5s;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-gradient);
    min-height: 100vh;
    display: block;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1rem;
    color: var(--dark-color);
    margin-bottom: 100px;
    overflow-x: hidden;
}

.application-container {
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
    border-radius: 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--easing) forwards, float 6s ease-in-out infinite;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.application-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
    z-index: 1;
}

.application-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 400px);
    z-index: -1;
}

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

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

.progress-container {
    background-color: rgba(243, 244, 246, 0.5);
    padding: 2rem;
    position: relative;
    margin-top: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-inner);
}

.progress-bar {
    height: 8px;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.8s var(--easing);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding: 0 10px;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    height: 2px;
    background-color: var(--neutral-200);
    z-index: 0;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: var(--neutral-500);
    font-weight: 600;
    transition: all 0.5s var(--easing);
    position: relative;
    z-index: 1;
    border: 2px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    opacity: 0.5;
}

.progress-step.active {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.2);
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.3), var(--shadow-md);
}

.progress-step.completed {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
    opacity: 1;
}

.progress-step-label {
    position: absolute;
    top: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-600);
    width: 80px;
    text-align: center;
    transform: translateX(-50%);
    left: 50%;
    opacity: 0;
    transition: all 0.3s var(--easing);
}

.progress-step:hover .progress-step-label {
    opacity: 1;
}

.progress-step.active .progress-step-label {
    color: var(--primary-color);
    font-weight: 600;
    transform: translateX(-50%) scale(1.05);
    opacity: 1;
}

.progress-step:not(.active) .progress-step-icon {
    opacity: 0.5;
    filter: grayscale(100%);
}

.progress-step.active .progress-step-icon {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.progress-step-icon {
    transition: all 0.3s var(--easing);
    display: inline-block;
}

.progress-step-text {
    transition: opacity 0.3s var(--easing);
}

.progress-step:not(.active) .progress-step-text {
    opacity: 0.5;
}

/* Target the icon containers (divs with icons) */
.progress-step:not(.active) .fa {
    opacity: 0.5;
    filter: grayscale(100%);
}

.progress-step.active .fa {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Add transition to icons */
.progress-step .fa {
    transition: all 0.3s var(--easing);
    display: inline-block;
}

/* Text styling */
.progress-step:not(.active) .progress-step-text {
    opacity: 0.5;
}

.progress-step-text {
    transition: opacity 0.3s var(--easing);
}

.step {
    display: none;
    padding: 2.5rem;
    transform: translateX(50px);
    opacity: 0;
}

.step.active {
    display: block;
    animation: slideIn 0.6s var(--easing) forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.step-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.step-header h2 {
    color: var(--dark-color);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-header p {
    color: var(--neutral-600);
    font-size: 1.125rem;
}

.input-container {
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s var(--easing);
}

.input-container:hover {
    transform: translateY(-2px);
}

.input-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: all 0.3s var(--easing);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.input-container input,
.input-container select,
.input-container textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    transition: all 0.3s var(--easing);
    font-size: 1rem;
    background-color: white;
    color: var(--neutral-800);
    box-shadow: var(--shadow-sm);
}

.input-container input:focus,
.input-container select:focus,
.input-container textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1), var(--shadow-sm);
    background-color: white;
}

.input-container input:hover,
.input-container select:hover,
.input-container textarea:hover {
    border-color: var(--neutral-400);
}

.input-icon {
    position: absolute;
    right: 1.25rem;
    top: 2.75rem;
    color: var(--neutral-400);
    transition: all 0.3s var(--easing);
    pointer-events: none;
}

.input-container input:focus + .input-icon,
.input-container select:focus + .input-icon,
.input-container textarea:focus + .input-icon {
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.3));
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-card {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.checkbox-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.checkbox-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.checkbox-card:hover::before {
    opacity: 1;
}

.checkbox-card input[type="checkbox"],
.checkbox-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-card-content {
    position: relative;
    z-index: 1;
}

.checkbox-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.1));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.checkbox-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s var(--easing);
    box-shadow: var(--shadow-md);
    transform: rotate(0deg);
}

.checkbox-card:hover .program-icon,
.radio-card:hover .program-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.checkbox-card.selected .program-icon,
.radio-card.selected .program-icon {
    background: var(--primary-gradient);
    transform: scale(1.15) rotate(0deg);
    box-shadow: var(--shadow-glow);
}

.program-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--neutral-800);
    transition: all 0.3s var(--easing);
}

.checkbox-card:hover .program-title,
.checkbox-card.selected .program-title,
.radio-card:hover .program-title,
.radio-card.selected .program-title {
    color: var(--primary-color);
}

.program-description {
    font-size: 0.875rem;
    color: var(--neutral-500);
    line-height: 1.5;
    transition: all 0.3s var(--easing);
}

.btn-container {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s var(--easing);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s var(--easing);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: white;
    color: var(--neutral-700);
    box-shadow: var(--shadow-md), 0 0 0 2px var(--neutral-200);
}

.btn-secondary:hover {
    background-color: var(--neutral-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 0 0 2px var(--neutral-300);
    color: var(--neutral-900);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.validation-error {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    animation: shake 0.5s var(--easing);
    padding: 0.5rem 0.75rem;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--error-color);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}

/* Godmode special effects */
.godmode-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    opacity: 0.6;
    animation: float-around 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes float-around {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, -50px); }
    50% { transform: translate(200px, 100px); }
    75% { transform: translate(100px, 200px); }
}

/* Godmode button hover effect */
.btn-godmode {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 300% 300%;
    animation: gradient-shift 5s ease infinite;
    border: none;
    color: white;
    font-weight: 600;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-godmode::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 400% 400%;
    animation: gradient-shift 5s ease infinite;
    z-index: -1;
    border-radius: 14px;
    filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s var(--easing);
}

.btn-godmode:hover::before {
    opacity: 1;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1rem;
}

.radio-item {
    flex: 1;
    min-width: 150px;
}

.radio-card {
    border: 2px solid var(--neutral-200);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--easing);
    cursor: pointer;
    background-color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.radio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s var(--easing);
    z-index: 0;
}

.radio-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card.selected {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 0 0 2px var(--primary-color), var(--shadow-lg);
}

.radio-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
    animation: scaleIn 0.3s var(--easing);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.experience-level {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-top: 0.5rem;
    transition: all 0.3s var(--easing);
}

/* Success animation */
.success-animation {
    text-align: center;
    padding: 3rem 2rem;
    display: none;
    position: relative;
    overflow: hidden;
}

.success-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.checkmark {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--success-color);
    stroke-miterlimit: 10;
    margin: 0 auto 2rem;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both, pulse 2s infinite;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success-color);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px rgba(16, 185, 129, 0.1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.success-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--success-color), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 1s var(--easing);
}

.success-subtext {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeIn 1.2s var(--easing);
}

/* Confetti animation for success */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.8;
    animation: confetti-fall 5s ease-in-out infinite;
    z-index: 1;
}

.confetti:nth-child(2n) {
    background-color: var(--secondary-color);
    width: 7px;
    height: 7px;
    animation-delay: 0.2s;
    animation-duration: 4s;
}

.confetti:nth-child(3n) {
    background-color: var(--accent-color);
    width: 12px;
    height: 12px;
    animation-delay: 0.4s;
    animation-duration: 4.5s;
}

.confetti:nth-child(4n) {
    background-color: var(--primary-light);
    width: 8px;
    height: 8px;
    animation-delay: 0.6s;
    animation-duration: 5.5s;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100px) rotate(0deg) translateX(0);
        opacity: 1;
    }
    25% {
        transform: translateY(25px) rotate(90deg) translateX(20px);
    }
    50% {
        transform: translateY(150px) rotate(180deg) translateX(-20px);
    }
    75% {
        transform: translateY(275px) rotate(270deg) translateX(10px);
    }
    100% {
        transform: translateY(500px) rotate(360deg) translateX(0);
        opacity: 0;
    }
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #e5e7eb;
}

.form-divider-text {
    padding: 0 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation for input fields */
.input-container:not(.error) input:focus + .input-icon,
.input-container:not(.error) select:focus + .input-icon,
.input-container:not(.error) textarea:focus + .input-icon {
    transform: translateY(-5px);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    margin-left: 0.5rem;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.75rem;
    font-weight: normal;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Floating labels */
.floating-label {
    position: relative;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
    height: 60px;
    padding: 1.25rem 1rem 0.5rem;
}

.floating-label label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
}

.floating-label input:focus ~ label,
.floating-label select:focus ~ label,
.floating-label textarea:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label select:not(:placeholder-shown) ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label {
    transform: scale(.75) translateY(-0.5rem);
    opacity: 0.65;
}

/* File upload */
.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 1rem;
}

.file-upload-btn {
    width: 100%;
    padding: 1rem;
    background-color: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-btn:hover {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

@media (max-width: 768px) {
    .application-container {
        margin: 1rem;
        border-radius: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .progress-step {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }

    .progress-step-label {
        display: none;
    }

    .two-column {
        gap: 0.5rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-item {
        min-width: 100%;
    }

    .btn {
        width: 100%;
        padding: 0.75rem;
    }

    .btn-container {
        flex-direction: column-reverse;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .step-header h2 {
        font-size: 1.5rem;
    }

    .input-container input,
    .input-container select,
    .input-container textarea {
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
.application-container {
width: 95%;
margin: 1rem auto;
}

.step {
padding: 1.5rem;
}

.two-column {
grid-template-columns: 1fr;
}

.checkbox-grid {
grid-template-columns: 1fr;
}

.radio-group {
flex-direction: column;
}
}

@media (max-width: 480px) {
.step-header h2 {
font-size: 1.5rem;
}

.btn {
width: 100%;
margin-bottom: 0.5rem;
}

.btn-container {
flex-direction: column-reverse;
}
}
/* Add this CSS fix */
.application-container {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 1; /* Remove initial opacity */
    transform: translateY(0); /* Remove initial transform */
}

/* Ensure steps are properly transitioned */
.step {
    display: none;
    opacity: 1 !important; /* Override any conflicting opacity */
}

/* Fix progress step alignment */
.progress-steps {
    gap: 10px; /* Add spacing between progress steps */
    padding: 0 15px; /* Add padding for better mobile display */
}




/* Additional Godmode Effects */

/* Animated background for the application container */
.application-container.godmode {
    position: relative;
    overflow: hidden;
}

.application-container.godmode::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmerBackground 8s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes shimmerBackground {
    0% { transform: translateY(-100%) rotate(30deg); }
    100% { transform: translateY(100%) rotate(30deg); }
}

/* Floating elements effect */
.float-element {
    animation: floatAnimation 6s ease-in-out infinite;
    transform-origin: center center;
}

.float-element:nth-child(2n) {
    animation-duration: 7s;
    animation-delay: 0.5s;
}

.float-element:nth-child(3n) {
    animation-duration: 5s;
    animation-delay: 1s;
}

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

/* Glowing input effect */
.input-container.godmode-focus input:focus,
.input-container.godmode-focus select:focus,
.input-container.godmode-focus textarea:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2), 0 0 15px rgba(99, 102, 241, 0.4);
    border-color: var(--primary-color);
    animation: pulse-border 1.5s infinite;
}

@keyframes pulse-border {
    0% { border-color: var(--primary-color); }
    50% { border-color: var(--primary-light); }
    100% { border-color: var(--primary-color); }
}

/* 3D Card Effect */
.card-3d {
    transition: all 0.3s var(--easing);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Liquid button effect */
.btn-liquid {
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--easing);
}

.btn-liquid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s var(--easing);
}

.btn-liquid:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: transform 0.6s var(--easing), opacity 0.6s var(--easing);
}

/* Animated gradient border */
.gradient-border {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        var(--primary-color));
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;
    z-index: -1;
    border-radius: 18px;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Typing animation for headers */
.typing-animation {
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color) }
}

/* Parallax scrolling effect */
.parallax-container {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.parallax-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.parallax-layer-back {
    transform: translateZ(-1px) scale(2);
}

.parallax-layer-base {
    transform: translateZ(0);
}

/* Glassmorphism effect for cards */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Neumorphism effect */
.neumorphic {
    background: var(--neutral-100);
    border-radius: 16px;
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.05),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.neumorphic-inset {
    background: var(--neutral-100);
    border-radius: 16px;
    box-shadow: 
        inset 8px 8px 16px rgba(0, 0, 0, 0.05),
        inset -8px -8px 16px rgba(255, 255, 255, 0.8);
}

/* Animated background gradient */
.animated-bg {
    background: linear-gradient(-45deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(16, 185, 129, 0.1), 
        rgba(245, 158, 11, 0.1), 
        rgba(99, 102, 241, 0.1));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .application-container {
        margin: 1rem;
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .progress-container {
        padding: 1.5rem 1rem;
    }
    
    .progress-step {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .progress-step-label {
        display: none;
    }
    
    .step-header h2 {
        font-size: 1.75rem;
    }
    
    .step-header p {
        font-size: 1rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn-container {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* Animation for form elements on page load */
.animate-form-element {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s var(--easing) forwards;
}

.animate-form-element:nth-child(1) { animation-delay: 0.1s; }
.animate-form-element:nth-child(2) { animation-delay: 0.2s; }
.animate-form-element:nth-child(3) { animation-delay: 0.3s; }
.animate-form-element:nth-child(4) { animation-delay: 0.4s; }
.animate-form-element:nth-child(5) { animation-delay: 0.5s; }
.animate-form-element:nth-child(6) { animation-delay: 0.6s; }
.animate-form-element:nth-child(7) { animation-delay: 0.7s; }
.animate-form-element:nth-child(8) { animation-delay: 0.8s; }

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