/* ======= Global Styles ======= */
:root {
    --primary-color: #8a2be2;
    --primary-light: #b26aff;
    --primary-dark: #6b14c3;
    --accent-color: #ff7b9c;
    --text-light: #ffffff;
    --text-muted: #c3c3e6;
    --background-dark: #0a0a23;
    --background-darker: #050514;
    --card-bg: rgba(25, 25, 65, 0.7);
    --border-color: rgba(138, 43, 226, 0.3);
    --glass-bg: rgba(25, 25, 65, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--background-darker);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

section {
    padding: 100px 0;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.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: all 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.primary-btn:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.cosmic-line {
    height: 3px;
    width: 80px;
    margin: 0 auto;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    position: relative;
}

.cosmic-line::before, .cosmic-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    top: -2.5px;
}

.cosmic-line::before {
    left: 0;
}

.cosmic-line::after {
    right: 0;
    background: var(--primary-color);
}

/* ======= Background Canvas ======= */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ======= Navigation ======= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
}

nav.scrolled {
    background: rgba(10, 10, 35, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* ======= Hero Section ======= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 35, 0.3) 0%, var(--background-darker) 70%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before, .glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-animation 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 var(--primary-light);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-animation 7s infinite linear alternate-reverse;
}

@keyframes glitch-animation {
    0% {
        clip: rect(44px, 450px, 56px, 0);
    }
    5% {
        clip: rect(63px, 450px, 70px, 0);
    }
    10% {
        clip: rect(33px, 450px, 36px, 0);
    }
    15% {
        clip: rect(90px, 450px, 98px, 0);
    }
    20% {
        clip: rect(28px, 450px, 31px, 0);
    }
    25% {
        clip: rect(60px, 450px, 72px, 0);
    }
    30% {
        clip: rect(25px, 450px, 34px, 0);
    }
    35% {
        clip: rect(56px, 450px, 61px, 0);
    }
    40% {
        clip: rect(47px, 450px, 53px, 0);
    }
    45% {
        clip: rect(84px, 450px, 92px, 0);
    }
    50% {
        clip: rect(33px, 450px, 44px, 0);
    }
    55% {
        clip: rect(23px, 450px, 36px, 0);
    }
    60% {
        clip: rect(75px, 450px, 85px, 0);
    }
    65% {
        clip: rect(48px, 450px, 55px, 0);
    }
    70% {
        clip: rect(42px, 450px, 48px, 0);
    }
    75% {
        clip: rect(67px, 450px, 78px, 0);
    }
    80% {
        clip: rect(41px, 450px, 49px, 0);
    }
    85% {
        clip: rect(28px, 450px, 39px, 0);
    }
    90% {
        clip: rect(54px, 450px, 66px, 0);
    }
    95% {
        clip: rect(23px, 450px, 27px, 0);
    }
    100% {
        clip: rect(44px, 450px, 52px, 0);
    }
}

/* Planet Animation */
.planet-container {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: 0;
}

.planet {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #612897, #4b0082);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 60px rgba(138, 43, 226, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.planet::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="30" cy="30" r="5" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="40" r="7" fill="rgba(255,255,255,0.3)"/><circle cx="50" cy="70" r="4" fill="rgba(255,255,255,0.2)"/><circle cx="20" cy="60" r="6" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="3" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: 100% 100%;
    animation: rotate 120s linear infinite;
}

.orbit {
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateOrbit 25s linear infinite;
}

.satellite {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: -10px;
    left: calc(50% - 10px);
    box-shadow: 0 0 20px var(--accent-color);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateOrbit {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ======= About Section ======= */
.about {
    background: linear-gradient(to bottom, var(--background-darker), var(--background-dark));
    padding: 100px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px; /* Reduced from 60px to fix spacing */
    flex-wrap: wrap;
    justify-content: center; /* Added to center the content */
    max-width: 1100px; /* Added to control the overall width */
    margin: 0 auto; /* Center the container */
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px; /* Added to control maximum width */
}

.about-text {
    flex: 1;
    max-width: 800px; /* Increased from 600px to give more space */
    margin: 0 auto; /* Center the text block */
    padding: 0 20px; /* Add some padding for better spacing */
}


.image-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.image-border {
    position: absolute;
    top: -15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-muted);
}

.cosmic-stats {
    display: flex;
    justify-content: space-around; /* Changed from space-between to space-around for better centering */
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 30px; /* Increased gap for better spacing */
}

.stat {
    text-align: center;
}

.counter {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-light);
    font-family: 'Space Grotesk', sans-serif;
}

.stat-text {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* ======= Skills Section ======= */
.skills {
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
}

.skills::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.skills::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 123, 156, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    z-index: 0;
}

.skills-content {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.skill-category {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.skill-category h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-light);
    position: relative;
    display: inline-block;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.skills-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.skill-icon {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-light);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.skill-info {
    flex: 1;
}

.skill-info h4 {
    margin-bottom: 8px;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    position: relative;
    width: 0;
    transition: width 1.5s ease;
}

/* ======= Projects Section ======= */
.projects {
    background: linear-gradient(to bottom, var(--background-dark), var(--background-darker));
    position: relative;
}

.project-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transform: scale(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 35, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.project-card:hover .project-link {
    transform: translateY(0);
}

.project-link:hover {
    background: var(--primary-light);
    color: var(--text-light);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.project-info p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ======= Contact Section ======= */
.contact {
    background: var(--background-darker);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="1024" viewBox="0 0 1440 1024"><rect width="100%" height="100%" fill="transparent"/><circle cx="100" cy="100" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="200" cy="300" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="300" cy="200" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="400" cy="400" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="500" cy="100" r="1.5" fill="rgba(255,255,255,0.3)"/><circle cx="600" cy="300" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="700" cy="200" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="800" cy="400" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="900" cy="100" r="1" fill="rgba(255,255,255,0.3)"/><circle cx="1000" cy="300" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="1100" cy="200" r="1.5" fill="rgba(255,255,255,0.3)"/><circle cx="1200" cy="400" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="1300" cy="100" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="1400" cy="300" r="1.5" fill="rgba(255,255,255,0.2)"/></svg>');
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 16px;
    border: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ======= Footer ======= */
footer {
    background: var(--background-dark);
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo span {
    color: var(--primary-light);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ======= Responsive Styles ======= */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 54px;
    }
    
    .planet-container {
        display: none;
    }
    
    .nav-links {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 35, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s ease;
        gap: 40px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero h2 {
        font-size: 22px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-image, .about-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .image-container {
        width: 250px;
        height: 250px;
    }
    
    .cosmic-stats {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 70px 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero h2 {
        font-size: 20px;
    }
    
    .skill-category h3 {
        font-size: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

/* ======= Animations ======= */
@keyframes fadeIn {
    from {
        opacity: 0.8; /* Less dramatic change in opacity */
        transform: translateY(10px); /* Smaller movement */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.6s ease forwards; /* Shorter animation duration */
}
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}