/* Base Styles */
:root {
    --primary: #ff0000; /* Red accent color */
    --primary-hover: #cc0000; /* Darker red for hover states */
    --dark: #121212;    /* Dark background */
    --darker: #0a0a0a;  /* Even darker for headers */
    --light: #ffffff;   /* White text */
    --gray: #e0e0e0;    /* Light gray for secondary text */
    --border: #333333;  /* Border color */
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    padding-top: 80px; /* Height of fixed navbar */
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.7;
    font-weight: 300;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-align: center;
    width: auto;
    background-color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 0;
}

.section-title:after {
    display: none;
}

/* Navbar */
.navbar {
    background-color: rgba(10, 10, 10, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
    overflow: visible;
}

.navbar .container {
    position: relative;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--light) !important;
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
}

/* Racing Track with Dotted Line */
.racing-track {
    position: absolute;
    top: 8px;
    left: 0;
    width: calc(100% + 40px);
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.4) 0px,
        rgba(255, 255, 255, 0.4) 10px,
        transparent 10px,
        transparent 20px
    );
    z-index: 1;
    pointer-events: none;
}

/* Street Lights */
.street-light {
    position: absolute;
    top: 10px;
    z-index: 3;
    pointer-events: none;
}

.left-light {
    left: 20px;
}

.right-light {
    right: 20px;
}

.light-pole {
    width: 2px;
    height: 25px;
    background: linear-gradient(to bottom, #95a5a6, #7f8c8d);
    margin: 0 auto;
}

.light-bulb {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #f39c12, #e67e22);
    border-radius: 50%;
    margin: -2px auto 0;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.8);
    animation: streetLightGlow 2s ease-in-out infinite;
}

@keyframes streetLightGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(243, 156, 18, 0.8);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 15px rgba(243, 156, 18, 1);
        opacity: 0.9;
    }
}

/* Traffic Signals */
.traffic-signal {
    position: absolute;
    top: 10px;
    z-index: 3;
    pointer-events: none;
}

.left-signal {
    left: 50px;
}

.right-signal {
    right: 50px;
}

.signal-pole {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #34495e, #2c3e50);
    margin: 0 auto;
}

.signal-box {
    width: 12px;
    background: #2c3e50;
    border-radius: 2px;
    padding: 2px;
    margin: 0 auto 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.signal-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 2px auto;
    opacity: 0.3;
}

.signal-light.red {
    background: #e74c3c;
}

.signal-light.yellow {
    background: #f39c12;
}

.signal-light.green {
    background: #2ecc71;
}

.signal-light.active {
    opacity: 1;
    animation: signalBlink 2s ease-in-out infinite;
}

@keyframes signalBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px currentColor;
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 3px currentColor;
    }
}

/* Cycle through traffic lights */
.left-signal .signal-light.red {
    animation: redLight 6s ease-in-out infinite;
}

.left-signal .signal-light.yellow {
    animation: yellowLight 6s ease-in-out infinite;
}

.left-signal .signal-light.green {
    animation: greenLight 6s ease-in-out infinite;
}

.right-signal .signal-light.red {
    animation: redLight 6s ease-in-out infinite 3s;
}

.right-signal .signal-light.yellow {
    animation: yellowLight 6s ease-in-out infinite 3s;
}

.right-signal .signal-light.green {
    animation: greenLight 6s ease-in-out infinite 3s;
}

@keyframes redLight {
    0%, 33% {
        opacity: 1;
        box-shadow: 0 0 8px #e74c3c;
    }
    34%, 100% {
        opacity: 0.3;
        box-shadow: none;
    }
}

@keyframes yellowLight {
    0%, 33% {
        opacity: 0.3;
        box-shadow: none;
    }
    34%, 66% {
        opacity: 1;
        box-shadow: 0 0 8px #f39c12;
    }
    67%, 100% {
        opacity: 0.3;
        box-shadow: none;
    }
}

@keyframes greenLight {
    0%, 66% {
        opacity: 0.3;
        box-shadow: none;
    }
    67%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px #2ecc71;
    }
}

/* Header Racing Car - Runs on the dotted line */
.header-racing-car {
    width: 60px;
    height: 30px;
    position: absolute;
    top: 8px;
    transform: translateY(-50%);
    left: -80px;
    animation: raceAcrossHeader 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(255, 0, 0, 0.5));
    z-index: 2;
    pointer-events: none;
}

@keyframes raceAcrossHeader {
    0% {
        left: -80px;
        transform: translateY(-50%) scaleX(1);
    }
    48% {
        left: calc(100% + 20px);
        transform: translateY(-50%) scaleX(1);
    }
    52% {
        left: calc(100% + 20px);
        transform: translateY(-50%) scaleX(-1);
    }
    100% {
        left: -80px;
        transform: translateY(-50%) scaleX(-1);
    }
}

/* Speed up animation on navbar hover */
.navbar:hover .header-racing-car {
    animation: raceAcrossHeaderFast 4s ease-in-out infinite;
}

@keyframes raceAcrossHeaderFast {
    0% {
        left: -80px;
        transform: translateY(-50%) scaleX(1);
    }
    48% {
        left: calc(100% + 20px);
        transform: translateY(-50%) scaleX(1);
    }
    52% {
        left: calc(100% + 20px);
        transform: translateY(-50%) scaleX(-1);
    }
    100% {
        left: -80px;
        transform: translateY(-50%) scaleX(-1);
    }
}

.mini-car {
    transform-origin: center;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--gray);
    font-weight: 500;
    padding: 0.8rem 1rem;
    margin: 0 0.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-toggler {
    border-color: var(--primary);
    background-color: var(--primary);
    padding: 0.5rem 0.75rem;
}

.navbar-dark .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-align: center;
    margin-top: -80px;
    padding: 120px 0 80px;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border: 2px solid var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.9rem;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--darker);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

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

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Testimonials */
.testimonial-slider {
    padding: 20px 0 40px;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    opacity: 0.3;
}

.testimonial-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Services */
.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 1.25rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Footer */
footer {
    background: var(--darker);
    color: var(--gray);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}

footer h5 {
    color: var(--light);
    margin-bottom: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

footer p {
    color: var(--gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

footer a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
}

footer a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-right: 10px;
    color: var(--gray);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    padding: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 66px; /* Adjusted for smaller navbar height on mobile */
    }
    
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Car Wash Animation Styles */
.car-wash-animation {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 200px;
    z-index: 1;
    opacity: 0.15;
}

.car-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: carMove 8s ease-in-out infinite;
}

.car-svg {
    width: 240px;
    height: 100px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes carMove {
    0%, 100% {
        transform: translateX(-150px);
    }
    50% {
        transform: translateX(150px);
    }
}

/* Water Drops Animation */
.water-drops {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.drop {
    position: absolute;
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(52, 152, 219, 0.8), rgba(52, 152, 219, 0));
    border-radius: 50%;
    animation: dropFall 1.5s linear infinite;
}

.drop:nth-child(1) { left: 20%; animation-delay: 0s; }
.drop:nth-child(2) { left: 35%; animation-delay: 0.3s; }
.drop:nth-child(3) { left: 50%; animation-delay: 0.6s; }
.drop:nth-child(4) { left: 65%; animation-delay: 0.9s; }
.drop:nth-child(5) { left: 80%; animation-delay: 1.2s; }
.drop:nth-child(6) { left: 45%; animation-delay: 0.45s; }

@keyframes dropFall {
    0% {
        top: -20px;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Soap Bubbles Animation */
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(52, 152, 219, 0.3));
    border-radius: 50%;
    animation: bubbleRise 4s ease-in-out infinite;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.bubble:nth-child(1) { left: 15%; width: 15px; height: 15px; animation-delay: 0s; animation-duration: 3.5s; }
.bubble:nth-child(2) { left: 30%; width: 25px; height: 25px; animation-delay: 0.5s; animation-duration: 4.5s; }
.bubble:nth-child(3) { left: 45%; width: 18px; height: 18px; animation-delay: 1s; animation-duration: 4s; }
.bubble:nth-child(4) { left: 60%; width: 22px; height: 22px; animation-delay: 1.5s; animation-duration: 3.8s; }
.bubble:nth-child(5) { left: 75%; width: 16px; height: 16px; animation-delay: 2s; animation-duration: 4.2s; }
.bubble:nth-child(6) { left: 25%; width: 20px; height: 20px; animation-delay: 2.5s; animation-duration: 3.6s; }
.bubble:nth-child(7) { left: 55%; width: 24px; height: 24px; animation-delay: 3s; animation-duration: 4.3s; }
.bubble:nth-child(8) { left: 85%; width: 17px; height: 17px; animation-delay: 3.5s; animation-duration: 3.9s; }

@keyframes bubbleRise {
    0% {
        bottom: -50px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 120%;
        opacity: 0;
    }
}

/* Shine Effect */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Rotating Text Animation */
.rotating-text-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text-container h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.static-text {
    display: inline-block;
}

.rotating-text {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 80px;
    text-align: left;
}

.rotating-text .word {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: rotateWord 12s infinite;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.rotating-text .word:nth-child(1) {
    animation-delay: 0s;
}

.rotating-text .word:nth-child(2) {
    animation-delay: 3s;
}

.rotating-text .word:nth-child(3) {
    animation-delay: 6s;
}

.rotating-text .word:nth-child(4) {
    animation-delay: 9s;
}

@keyframes rotateWord {
    0%, 25% {
        opacity: 0;
        transform: translateY(20px);
    }
    5%, 20% {
        opacity: 1;
        transform: translateY(0);
    }
    25%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Fade in animations for text and buttons */
.fade-in-text {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.fade-in-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }
    
    .navbar-collapse {
        background-color: rgba(10, 10, 10, 0.98);
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        border: 1px solid var(--border);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-item .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .racing-track {
        display: none;
    }
    
    .street-light {
        display: none;
    }
    
    .traffic-signal {
        display: none;
    }
    
    .header-racing-car {
        display: none;
    }
    
    .car-wash-animation {
        width: 250px;
        height: 150px;
        opacity: 0.1;
    }
    
    .car-svg {
        width: 200px;
        height: 85px;
    }
    
    .rotating-text {
        width: 200px;
        height: 60px;
        font-size: 2rem;
    }
    
    .rotating-text-container {
        height: 100px;
    }
    
    .rotating-text-container h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-section {
        min-height: 600px;
        height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        white-space: normal !important;
    }
    
    /* Reduce animation complexity on mobile for better performance */
    .bubble {
        animation-duration: 5s !important;
    }
    
    .drop {
        animation-duration: 2s !important;
    }
    
    /* Simplify service flash boxes on mobile */
    .service-flash-box {
        padding: 1.5rem 1rem;
    }
    
    .service-flash-box h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 65px;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-toggler {
        padding: 0.35rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 80px 15px 40px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .car-wash-animation {
        width: 200px;
        height: 120px;
        opacity: 0.08;
    }
    
    .car-svg {
        width: 160px;
        height: 70px;
    }
    
    .rotating-text {
        width: 180px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .rotating-text-container h1 {
        font-size: 1.5rem;
    }
    
    /* Stack buttons vertically on very small screens */
    .fade-in-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .fade-in-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}


/* F1 Style Circular Race Track */
.f1-race-track {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200px;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

/* Header Racing Car - Follows Oval Track */
.header-racing-car-oval {
    width: 60px;
    height: 30px;
    position: absolute;
    filter: drop-shadow(0 2px 6px rgba(255, 0, 0, 0.5));
    z-index: 2;
    pointer-events: none;
    offset-path: ellipse(590px 85px at 600px 100px);
    offset-distance: 0%;
    animation: followOvalPath 12s linear infinite;
}

@keyframes followOvalPath {
    0% {
        offset-distance: 0%;
        offset-rotate: auto;
    }
    100% {
        offset-distance: 100%;
        offset-rotate: auto;
    }
}

/* Speed up on navbar hover */
.navbar:hover .header-racing-car-oval {
    animation: followOvalPathFast 6s linear infinite;
}

@keyframes followOvalPathFast {
    0% {
        offset-distance: 0%;
        offset-rotate: auto;
    }
    100% {
        offset-distance: 100%;
        offset-rotate: auto;
    }
}
