/* Modern Dark Theme with Smooth Animations */
:root {
    /* Color Palette */
    --primary-color: #6c63ff;
    --primary-light: #8b85ff;
    --primary-dark: #4a45b1;
    --secondary-color: #00b4d8;
    --accent-color: #ff6b6b;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;

    /* Dark Theme Colors */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
}

/* Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
    /* Adjusted padding for mobile */
    text-align: center;
}

/* Fixed Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    transition: padding 0.3s ease;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.logo-img {
    height: 2.5rem;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: rotate(10deg) scale(1.1);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    max-width: none;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for nav links */
    .nav-links.active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active .nav-link:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active .nav-link:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active .nav-link:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active .nav-link:nth-child(5) {
        transition-delay: 0.5s;
    }
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(74, 69, 177, 0.1) 0%, transparent 40%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin: 0 auto 1rem;
    line-height: 1.2;
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 1.5rem;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(1.4rem, 5vw, 2rem);
        max-width: 320px;
        padding: 0 1rem;
        line-height: 1.15;
    }
}

.hero .highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.hero p {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem);
    margin: 0.5rem auto 1.5rem;
    color: var(--text-secondary);
    width: 100%;
    max-width: 300px;
    line-height: 1.4;
    text-align: center;
    padding: 0 0.5rem;
    box-sizing: border-box;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem auto 0;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    padding: 0 1rem;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    min-width: 180px;
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Button hover effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    opacity: 1;
}

/* Button active/pressed effect */
.btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Button focus styles for accessibility */
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:active {
    transform: translateY(2px) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.btn-secondary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Mobile-specific button styles */
@media (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Reduce hover effects on touch devices */
    @media (hover: none) {
        .btn:hover {
            transform: none !important;
        }

        .btn:active {
            transform: scale(0.98) !important;
        }
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        transform: translateY(-100%);
        transition: var(--transition);
        z-index: 999;
        gap: 1.5rem;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1000;
    }

    .hamburger .line {
        width: 25px;
        height: 2px;
        background: var(--text-primary);
        transition: var(--transition);
    }

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

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section {
    padding: 6rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-title {
    text-align: left;
    margin: 0 0 3rem 0;
    font-size: 2.5rem;
    display: block;
    width: 100%;
    position: relative;
    padding: 0;
    left: 0;
    transform: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
}

/* File Upload Styles */
.file-upload {
    margin: 20px 0;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background-color: #f9f9f9;
    margin-bottom: 15px;
}

.upload-area:hover,
.upload-area.highlight {
    border-color: var(--primary-color);
    background-color: rgba(108, 92, 231, 0.05);
}

.upload-area i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.upload-area p {
    margin: 10px 0;
    color: var(--text-light);
}

.upload-area span {
    color: var(--primary-color);
    text-decoration: underline;
}

#preview {
    margin-top: 20px;
    position: relative;
    display: none;
    max-width: 300px;
    margin: 15px auto;
}

.preview-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: block;
}

.remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remove-image:hover {
    background: #ff6b81;
    transform: scale(1.1);
}

/* Animation for mobile menu */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

/* Hide the default file input */
#poza {
    display: none;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-tertiary);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Form Styling */
.aura-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aura-form .form-group {
    margin: 0 auto 1.8rem;
    text-align: center;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.aura-form label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
}

.aura-form input[type="text"],
.aura-form input[type="date"],
.aura-form input[type="time"],
.aura-form textarea {
    width: 100%;
    max-width: 500px;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.aura-form input:focus,
.aura-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

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

/* File Upload Styling */
.file-upload {
    margin: 2.5rem 0;
}

.upload-area {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin: 1.5rem auto;
    max-width: 500px;
    width: 100%;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(108, 99, 255, 0.05);
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.upload-area p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.upload-area span {
    color: var(--primary-color);
    font-weight: 500;
}

.upload-area input[type="file"] {
    display: none;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    text-align: center;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.3rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    cursor: pointer;
    text-align: center;
    display: inline-flex;
    align-items: center;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

/* Form Group Focus State */
.form-group:focus-within label {
    color: var(--primary-color);
}

/* Responsive Adjustments */
/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .hero {
        padding: 2rem 0.5rem;
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        width: 100%;
        padding: 0;
    }

    .about-image {
        margin-top: 2rem;
    }

    .floating-image {
        max-width: 100%;
        height: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
    }

    /* Form Responsiveness */
    .aura-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .upload-area {
        padding: 2rem 1rem;
    }

    .button-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .file-upload-btn,
    .submit-btn {
        width: 100%;
        text-align: center;
    }

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

    .checkbox-group input[type="checkbox"] {
        margin-bottom: 0.8rem;
    }

    .submit-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* AOS Animation Fixes */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Typing Animation */
.typing-container {
    display: inline-block;
    position: relative;
    min-height: 1.5em;
    font-size: clamp(1.8rem, 7vw, 3rem);
    line-height: 1.3;
    text-align: center;
    padding: 0 0.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    word-break: break-word;
    white-space: normal;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--primary-color);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
    transform: translateY(-1px);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Mobile-specific typing animation */
@media (max-width: 768px) {
    .typing-container {
        font-size: clamp(1.8rem, 7.5vw, 2.5rem);
        min-height: 1.5em;
        padding: 0 0.5rem;
        margin: 0 auto;
    }

    .hero h1 {
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero p {
        margin: 0 auto 1.5rem;
        line-height: 1.4;
    }

    .cursor {
        display: none;
        /* Hide cursor on mobile for better readability */
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: 200px;
        margin: 0.5rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1rem;
        width: 100%;
    }
}

#typing-text {
    display: inline;
    white-space: normal;
    overflow: visible;
    border-right: none;
    animation: none;
    max-width: 100%;
    word-break: break-word;
    line-height: 1.4;
}

/* Typing animation for larger screens */
@media (min-width: 769px) {
    #typing-text {
        display: inline-block;
        white-space: nowrap;
        overflow: hidden;
        border-right: 2px solid var(--primary-color);
        animation: typing 3.5s steps(30, end) forwards, blink-caret 0.75s step-end infinite;
        max-width: 100%;
    }

    @keyframes typing {
        from {
            width: 0
        }

        to {
            width: 100%
        }
    }

    @keyframes blink-caret {

        from,
        to {
            border-color: transparent
        }

        50% {
            border-color: var(--primary-color);
        }
    }
}