/* Base Styles */
:root {
    --space-black: #0a0a16;
    --deep-space: #050510;
    --neon-purple: #8a2be2;
    --electric-blue: #00d1ff;
    --star-white: rgba(255, 255, 255, 0.9);
    --metallic: #c0c0c0;
    --glow: 0 0 10px var(--neon-purple), 0 0 20px var(--electric-blue);
}

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

body {
    background-color: var(--deep-space);
    color: var(--star-white);
    overflow-x: hidden;
    position: relative;
}

/* Starfield Background */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: transform 0.3s ease-in-out, background 0.3s;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--star-white);
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--metallic);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--electric-blue);
    transition: width 0.3s;
}

nav.scrolled {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
}


.nav-links a:hover::after {
    width: 100%;
}

nav.hidden {
    transform: translateY(-100%);
}

nav.visible {
    transform: translateY(0);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    color: var(--metallic);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--electric-blue);
}

.menu-toggle {
    display: none;
    z-index: 101;
    background: transparent;
    border: none;
    color: var(--metallic);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0.5rem;
}

.menu-toggle:hover {
    color: var(--electric-blue);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--deep-space);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding: 2rem;
    box-sizing: border-box;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--metallic);
    font-size: 1.5rem;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
}

.mobile-menu a:hover {
    color: var(--electric-blue);
    background: rgba(138, 43, 226, 0.1);
    border-radius: 4px;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--metallic);
    background: transparent;
    border: none;
    transition: color 0.3s;
    padding: 0.5rem;
}

.close-menu:hover {
    color: var(--electric-blue);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    nav {
        padding: 1rem 5%;
    }
    
    .mobile-menu a {
        font-size: 1.3rem;
        padding: 0.8rem;
    }
}
/* Services Grid Fix */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: var(--metallic);
    font-size: 1.5rem;
    margin: 1rem 0;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--electric-blue);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 5%;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--star-white), var(--electric-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--metallic);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.3);
}

.cta-button:hover {
    background: rgba(0, 209, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.5);
    transform: translateY(-3px);
}

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

.cta-button:hover::before {
    left: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--metallic);
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.scroll-down::after {
    content: '';
    display: block;
    width: 1px;
    height: 50px;
    background: var(--metallic);
    margin-top: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}

/* Services Section */
.services {
    padding: 8rem 5%;
    background: rgba(5, 5, 16, 0.7);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 5rem;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(10, 10, 22, 0.7);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(0, 209, 255, 0.05));
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: var(--neon-purple);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--electric-blue);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--star-white);
    letter-spacing: 1px;
}

.service-card p {
    color: var(--metallic);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tech-item {
    background: rgba(0, 209, 255, 0.1);
    color: var(--electric-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 209, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    overflow: hidden;
}

.twinkling::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(0,209,255,0.1) 0%, 
        rgba(0,209,255,0.05) 40%, 
        rgba(0,0,0,0) 70%);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

/* Work Section */
.work {
    padding: 8rem 5%;
    position: relative;
    background: rgba(5, 5, 16, 0.5);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    transition: all 0.3s;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 22, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--star-white);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.project-tag {
    background: rgba(0, 209, 255, 0.2);
    color: var(--electric-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 8rem 5%;
    background: rgba(10, 10, 22, 0.7);
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--metallic);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--metallic);
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--star-white);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--metallic);
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--electric-blue);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--metallic);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--electric-blue);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 10, 22, 0.7);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 4px;
    color: var(--star-white);
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 10px rgba(0, 209, 255, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background: rgba(5, 5, 16, 0.9);
    padding: 4rem 5% 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--star-white);
    display: block;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--metallic);
    line-height: 1.6;
}

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

.link-group h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--star-white);
}

.link-group a {
    display: block;
    color: var(--metallic);
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.link-group a:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    color: var(--metallic);
    font-size: 0.9rem;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: rgba(0, 209, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.back-to-top:hover {
    background: rgba(0, 209, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--deep-space);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--electric-blue);
}

/* Space-Themed Neon Contact Form */
.contact-form {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

/* Inputs & Textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 209, 255, 0.4);
    border-radius: 6px;
    background: rgba(10, 10, 22, 0.85);
    color: var(--star-white);
    transition: all 0.3s ease;
    box-shadow: 0 0 6px rgba(0, 209, 255, 0.2),
                inset 0 0 6px rgba(0, 209, 255, 0.1);
}

/* Placeholder styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Focus effect - Neon Glow */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--electric-blue);
    box-shadow: 0 0 12px rgba(0, 209, 255, 0.6),
                0 0 24px rgba(138, 43, 226, 0.4),
                inset 0 0 8px rgba(0, 209, 255, 0.2);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.contact-form .cta-button {
    display: inline-block;
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
    padding: 0.9rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 209, 255, 0.4),
                inset 0 0 8px rgba(0, 209, 255, 0.2);
}

/* Button Hover Glow */
.contact-form .cta-button:hover {
    background: rgba(0, 209, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.8),
                0 0 35px rgba(138, 43, 226, 0.5);
    transform: translateY(-2px);
}

/* Success & Error Messages */
.form-message {
    margin-top: 1rem;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 127, 0.1);
    color: #00ff7f;
    border: 1px solid rgba(0, 255, 127, 0.4);
}

.form-message.error {
    background: rgba(255, 69, 58, 0.1);
    color: #ff453a;
    border: 1px solid rgba(255, 69, 58, 0.4);
}

/* ===== Refined Process Section ===== */
.process {
    padding: 8rem 5%;
    background: rgba(5, 5, 16, 0.85);
    position: relative;
}

.timeline-container {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline {
    position: relative;
    margin-left: 50px;
    border-left: 2px solid rgba(0, 209, 255, 0.4);
    padding-left: 40px;
}

.process-step {
    position: relative;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
}

.step-marker {
    position: absolute;
    left: -73px;
    width: 56px;
    height: 56px;
    background: var(--deep-space);
    border: 2px solid var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-blue);
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 12px rgba(0, 209, 255, 0.4);
    transition: all 0.4s ease;
}

.step-content {
    background: rgba(10, 10, 22, 0.7);
    border: 1px solid rgba(0, 209, 255, 0.2);
    border-radius: 6px;
    padding: 1.8rem;
    transition: all 0.4s ease;
}

.step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--star-white);
    margin-bottom: 0.6rem;
}

.step-content p {
    color: var(--metallic);
    line-height: 1.6;
}

.process-step:hover .step-marker {
    transform: scale(1.1);
    background: var(--electric-blue);
    color: var(--deep-space);
    box-shadow: 0 0 18px rgba(0, 209, 255, 0.7);
}

.process-step:hover .step-content {
    border-color: var(--electric-blue);
    box-shadow: 0 0 18px rgba(0, 209, 255, 0.4);
}

/* Rocket Indicator */
.timeline-rocket {
    position: absolute;
    left: -31px;
    top: 0;
    font-size: 1.5rem;
    color: var(--electric-blue);
    transition: transform 0.15s ease-out; /* smoother tracking */
}

/* Technologies Section */
.technologies {
    padding: 8rem 5%;
    background: rgba(10, 10, 22, 0.5);
    position: relative;
}

.technologies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric-blue), transparent);
}

.tech-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: rgba(10, 10, 22, 0.7);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: var(--electric-blue);
}

.tech-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--electric-blue);
    background: rgba(0, 209, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 209, 255, 0.3);
    transition: all 0.3s;
}

.tech-card:hover .tech-logo {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--star-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-card p {
    color: var(--metallic);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Responsive Process Section ===== */
@media (max-width: 768px) {
    .timeline {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
    }

    .process-step {
        margin-bottom: 3rem;
    }

    .step-marker {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 auto 1rem auto;
        width: 50px;
        height: 50px;
    }

    .step-content {
        padding: 1.2rem;
        text-align: center;
    }

    .timeline-rocket {
        display: none; /* Hide rocket on small screens for cleaner layout */
    }
}
