
:root {
    --dark-gray: #1E2430;         /* Deep midnight gray */
    --charcoal: #121820;          /* Rich black-blue charcoal */
    --light-blue: #D0DCE7;        /* Muted steel blue */
    --medium-blue: #7F97AF;       /* Shadowy slate blue */
    --blue: #3A5175;              /* Deep sapphire */
    --deep-blue: #263A5B;         /* Dark navy */
    --slate: #2C3848;             /* Deep gunmetal slate */
    --white: #ffffff;             /* Unchanged */
    --accent: #0F7CAD;            /* Deep teal accent */
    --accent-hover: #0d5f83;      /* Vivid azure hover */
    --dark-blue-gray: #1e2430;    /* Updated header nav color */
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-blue);
    color: var(--charcoal);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrollbar during animations */
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--dark-blue-gray);
    color: var(--light-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* SVG Logo Styling */
.svg-logo {
    fill: var(--white);
}

.header-logo {
    fill: #027d8b !important;
}

.hero-svg-logo {
    fill: var(--white);
}

/* Header text color update */
.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--accent) !important;
    margin-left: 10px;
    letter-spacing: 1px;
}

.logo-text span.tight {
    letter-spacing: 0.6px;
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

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

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

/* Contact Button */
.contact-btn, .top-nav-contact {
    background-color: var(--accent);
    color: var(--light-blue) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
 }
 
 /* Hover state for all contact buttons */
 .contact-btn:hover, .top-nav-contact:hover {
    background-color: var(--accent-hover);  /* Darker color on hover */
    transform: translateY(-2px);            /* Slight upward movement */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
 }

/* Animation overlay */
.animation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--charcoal);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 1s ease;
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px);
}

/* Hero Section - Simplified for responsiveness */
.hero {
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-blue-gray);
}

/* Background image with opacity */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/Hero.webp') center center no-repeat;
    background-size: cover;
    background-image: image-set(
        url('../img/Hero.webp') type('image/webp'),
        url('../img/Hero.png') type('image/png')
    );
    z-index: 0;
    opacity: 0.8;
 }
 
 /* Fallback for browsers that don't support image-set */
 @supports not (background-image: image-set(url('../img/Hero.webp') type('image/webp'))) {
    .hero-background {
        background-image: url('../img/Hero.png');
    }
 }

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Hero content layout */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo container */
.hero-logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

/* Hero logo - responsive */
.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Tagline styling */
.tagline {
    font-size: 20px;
    font-weight: 500;
    margin: 10px auto 0;
    color: white;
    position: relative;
    padding-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateX(15px);
    text-align: center;
}

.tagline:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent);
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.btn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover:after {
    width: 300px;
    height: 300px;
}

/* Solutions Section */
.services {
    padding: 80px 0;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--slate);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 10px auto 0;
    transition: width 0.5s ease;
}

.section-header:hover h2:after {
    width: 100px;
}

.section-header p {
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Service cards with fixed height to avoid jitter */
.service-card {
    background-color: transparent;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    z-index: 1;
    min-height: 300px;
}

/* Service icon */
.service-icon {
    background-color: var(--accent);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: white;
    transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(15, 124, 173, 0.2);
    will-change: transform;
    z-index: 2;
}

/* Icon SVG */
.custom-icon {
    width: 60%;
    height: 60%;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--slate);
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 2;
}

/* Service description - opacity transition only to avoid jitter */
.service-description {
    height: auto !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    color: var(--dark-gray);
    text-align: center;
    max-width: 300px;
    margin: 0 auto 15px;
    padding: 0;
}

/* Card hover effects */
.service-card:hover {
    background-color: var(--light-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-card:hover .service-description {
    opacity: 1;
    visibility: visible;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: var(--accent-hover);
    box-shadow: 0 8px 20px rgba(15, 124, 173, 0.3);
}

/* Service expand button */
.service-expand {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 10px;
}

.service-card:hover .service-expand {
    opacity: 1;
    visibility: visible;
}

.service-expand a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-expand a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-expand a:hover {
    color: var(--slate);
}

.service-expand a:hover i {
    transform: translateX(6px);
}

/* Service Details Section */
.service-details {
    padding: 60px 0;
    background-color: var(--light-blue);
}

.service-details .container {
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details h3 {
    color: var(--slate);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.service-details h3:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.5s ease;
}

.service-details:hover h3:after {
    width: 100px;
}

.service-details h4 {
    color: var(--accent);
    font-size: 20px;
    margin: 25px 0 15px;
    font-weight: 500;
}

.service-details-content {
    margin-bottom: 40px;
}

.service-details-content:last-child {
    margin-bottom: 0;
}

.service-details ul {
    list-style: none;
    margin-left: 10px;
}

.service-details ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.service-details ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.service-details ul li:hover {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--medium-blue);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-text {
    width: 100%;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--slate);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--charcoal);
    transition: width 0.5s ease;
}

.about-text:hover h2:after {
    width: 100px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--charcoal);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    max-width: 100%;
}

.about-text:hover p {
    opacity: 1;
}

/* Why Metaframe section */
.why-metaframe {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.why-metaframe-text {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section {
    margin-top: 50px;
}

.benefits-heading {
    font-size: 24px;
    color: var(--slate);
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

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

.benefit-item {
    background-color: var(--light-blue);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.benefit-item h3 {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Section */
.cta {
    padding: 80px 0;
    background-color: var(--dark-blue-gray);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.cta h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--medium-blue);
    transition: width 0.5s ease;
}

.cta:hover h2:after {
    width: 100px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: var(--light-blue);
}

/* Contact Container */
.contact-container {
    max-width: 600px;
    width: 90%;
    margin: 40px auto;
    transition: none;
}

/* Contact Card */
.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: none !important;
    width: 100%;

}

.contact-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transform: none !important;
}

/* Card Header */
.contact-card-header {
    background-color: var(--accent);
    padding: 25px;
    text-align: center;
}

/* Email icon */
.email-icon-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.email-icon-link:hover {
    transform: scale(1.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--accent);
    font-size: 24px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    position: relative;
}

.email-icon-link:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

/* Card Body */
.contact-card-body {
    padding: 25px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Row */
.contact-row {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.contact-row:hover {
    transform: translateX(5px);
}

/* Contact icon styling */
.contact-icon-item {
    color: var(--light-blue);
    font-size: 20px;
    width: 25px;
    margin-right: 40px;
    text-align: center;
}

.contact-row a,
.contact-row .address {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.contact-row a::after,
.contact-row .address::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.contact-row a:hover,
.contact-row .address:hover {
    color: var(--light-blue);
}

.contact-row a:hover::after,
.contact-row .address:hover::after {
    width: 100%;
}

/* LinkedIn Button */
.contact-social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.animated-social::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--accent-hover);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 1;
}

.animated-social:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.animated-social:hover::before {
    width: 150%;
    height: 150%;
}

.animated-social i {
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--light-blue);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent), var(--accent-hover), var(--slate));
}

.copyright {
    text-align: center;
    color: var(--medium-blue);
    font-size: 14px;
}

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

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--light-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animation classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Animation */
.intro-animation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-logo {
    height: 80px;
    width: auto;
    clip-path: inset(0 100% 0 0);
    animation: smootherReveal 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* SEO Hidden elements */
.seo-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-icon {
        width: 145px;
        height: 145px;
    }
    @media (min-width: 992px) {
        .contact-container {
            max-width: 700px;
        }
    }
    
    @media (max-width: 768px) {
        .contact-container {
            width: 95%;
            max-width: 450px;
        }
    }
    
    @media (max-width: 576px) {
        .contact-container {
            width: 90%;
            max-width: 320px;
        }
    }
}

@media (max-width: 768px) {
    /* Mobile header & nav */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--charcoal);
        flex-direction: column;
        padding: 80px 0 30px;
        transition: all 0.4s ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        display: flex;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }
    
    /* Hamburger animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Hero section */
    .hero {
        min-height: 90vh;
        padding: 80px 0;
    }
    
    .hero-logo {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    /* Service icons */
    .service-icon {
        width: 135px;
        height: 135px;
    }
    
    .service-card {
        padding: 15px;
        margin-bottom: 20px;
        background-color: transparent !important;
        box-shadow: none !important;
        transform: none !important;
        min-height: auto;
    }
    
    .service-card h3 {
        margin-bottom: 0;
        font-size: 18px;
    }
    
    /* Hide description on mobile */
    .service-card .service-description {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide expand button on mobile */
    .service-card .service-expand {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Other mobile adjustments */
    .contact-icon-item {
        margin-right: 15px;
    }
    
    .contact-row {
        display: grid;
        grid-template-columns: 50px 1fr;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        max-width: 250px;
    }
    
    .contact-row i {
        margin-right: 0;
        margin-bottom: 0;
        justify-self: center;
    }
    
    .contact-row a,
    .contact-row .address {
        font-size: 15px;
        text-align: left;
    }
    
    .service-details .container {
        padding: 30px 20px;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-width: 240px;
    }
    
    .tagline {
        font-size: 14px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Keyframe Animations */
@keyframes smootherReveal {
    0% { clip-path: inset(0 100% 0 0); }
    2% { clip-path: inset(0 98% 0 0); }
    4% { clip-path: inset(0 96% 0 0); }
    6% { clip-path: inset(0 94% 0 0); }
    8% { clip-path: inset(0 92% 0 0); }
    10% { clip-path: inset(0 90% 0 0); }
    12% { clip-path: inset(0 88% 0 0); }
    14% { clip-path: inset(0 86% 0 0); }
    16% { clip-path: inset(0 84% 0 0); }
    18% { clip-path: inset(0 82% 0 0); }
    20% { clip-path: inset(0 80% 0 0); }
    22% { clip-path: inset(0 78% 0 0); }
    24% { clip-path: inset(0 76% 0 0); }
    26% { clip-path: inset(0 74% 0 0); }
    28% { clip-path: inset(0 72% 0 0); }
    30% { clip-path: inset(0 70% 0 0); }
    32% { clip-path: inset(0 68% 0 0); }
    34% { clip-path: inset(0 66% 0 0); }
    36% { clip-path: inset(0 64% 0 0); }
    38% { clip-path: inset(0 62% 0 0); }
    40% { clip-path: inset(0 60% 0 0); }
    42% { clip-path: inset(0 58% 0 0); }
    44% { clip-path: inset(0 56% 0 0); }
    46% { clip-path: inset(0 54% 0 0); }
    48% { clip-path: inset(0 52% 0 0); }
    50% { clip-path: inset(0 50% 0 0); }
    52% { clip-path: inset(0 48% 0 0); }
    54% { clip-path: inset(0 46% 0 0); }
    56% { clip-path: inset(0 44% 0 0); }
    58% { clip-path: inset(0 42% 0 0); }
    60% { clip-path: inset(0 40% 0 0); }
    62% { clip-path: inset(0 38% 0 0); }
    64% { clip-path: inset(0 36% 0 0); }
    66% { clip-path: inset(0 34% 0 0); }
    68% { clip-path: inset(0 32% 0 0); }
    70% { clip-path: inset(0 30% 0 0); }
    72% { clip-path: inset(0 28% 0 0); }
    74% { clip-path: inset(0 26% 0 0); }
    76% { clip-path: inset(0 24% 0 0); }
    78% { clip-path: inset(0 22% 0 0); }
    80% { clip-path: inset(0 20% 0 0); }
    82% { clip-path: inset(0 18% 0 0); }
    84% { clip-path: inset(0 16% 0 0); }
    86% { clip-path: inset(0 14% 0 0); }
    88% { clip-path: inset(0 12% 0 0); }
    90% { clip-path: inset(0 10% 0 0); }
    92% { clip-path: inset(0 8% 0 0); }
    94% { clip-path: inset(0 6% 0 0); }
    96% { clip-path: inset(0 4% 0 0); }
    98% { clip-path: inset(0 2% 0 0); }
    100% { clip-path: inset(0 0 0 0); }
}