:root {
    /* Colors */
    --clr-sage-light: #f4f7f4;
    --clr-sage-dark: #d8e6d8;
    --clr-forest: #1b4332;
    --clr-forest-light: #2d6a4f;
    --clr-earth: #cc5803;
    --clr-earth-light: #e07a2a;
    --clr-white: #ffffff;
    --clr-text: #2b3a2f;
    --clr-text-light: #5c7462;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Shadows - Antigravity Feel */
    --shadow-soft: 0 20px 40px rgba(27, 67, 50, 0.08);
    --shadow-float: 0 30px 60px rgba(27, 67, 50, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--clr-sage-light);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--clr-forest);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

.text-accent {
    color: var(--clr-earth);
}

/* Base Styles & Utility */
a {
    text-decoration: none;
    color: inherit;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--clr-forest);
    color: var(--clr-white);
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.2);
}

.btn-primary:hover {
    background-color: var(--clr-forest-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-forest);
    border: 2px solid var(--clr-forest);
}

.btn-secondary:hover {
    background-color: var(--clr-forest);
    color: var(--clr-white);
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(244, 247, 244, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 5%;
    box-shadow: var(--shadow-glass);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    height: 140px;
    transition: var(--transition);
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    /* Smussa leggermente i bordi per un look migliore */
}


/* Quando la pagina viene scrollata, riduciamo il logo per non rubare spazio */
.navbar.scrolled .logo-icon {
    height: 95px;
}
.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--clr-forest);
    line-height: 1.1;
    text-align: left;
    /* Assicura che le due righe siano allineate a sinistra */
}

.logo-text span {
    color: #d69c45;
    /* Marroncino/beige vivo */
    font-weight: 500;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-earth);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(216, 230, 216, 0.8) 0%, rgba(244, 247, 244, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.floating-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    border-radius: 40px 100px 40px 100px;
    object-fit: cover;
    box-shadow: var(--shadow-float);
    aspect-ratio: 4/5;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--clr-forest);
    box-shadow: var(--shadow-glass);
    position: absolute;
}

.glass-card i {
    color: var(--clr-earth);
}

.top-left {
    top: 10%;
    left: -10%;
    animation: floatReverse 5s ease-in-out infinite;
}

.bottom-right {
    bottom: 10%;
    right: -10%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatReverse {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services section */
.services {
    padding: 6rem 5%;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--clr-white);
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    transform: translateY(0);
    z-index: 1;
    cursor: pointer;
    min-height: 480px;
    /* Increased to allow photo + text room */
    display: flex;
    flex-direction: column;
}

.service-cover {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::after {
    /* Rimosso overlay scuro a tutto schermo per le nuove card divise */
    display: none;
}

.service-content {
    padding: 2.5rem 2rem;
    position: relative;
    background: var(--clr-white);
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: var(--clr-forest);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--clr-text-light);
    margin-bottom: 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--clr-earth);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-float);
}

.service-card:hover .service-cover {
    transform: scale(1.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--clr-sage-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--clr-earth);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover .icon-wrapper {
    background: var(--clr-earth);
    color: var(--clr-white);
    transform: rotate(10deg);
}

/* Asymmetrical Layout for Desktop */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
        align-items: stretch;
        /* Modified from start so they take full grid height logically */
    }

    .service-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / 3;
        margin-top: 50px;
    }

    .highlight-card {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .service-card:nth-child(3) {
        grid-column: 3;
        grid-row: 1 / 3;
        margin-top: 50px;
    }

    .service-card:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3 / 5;
    }

    .large-card {
        grid-column: 3;
        grid-row: 3 / 5;
    }
}

/* Portfolio Parallax */
.portfolio {
    padding: 6rem 5%;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.parallax-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.9), transparent);
    color: white;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.portfolio-item:hover .parallax-bg {
    transform: scale(0.95) translate3d(0, 0, 0);
    /* creates depth feeling */
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Portfolio Highlight Project CSS */
.highlight-project {
    background: var(--clr-white);
    padding: 2.5rem;
    height: auto !important;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    cursor: default;
}

.highlight-project:hover .parallax-bg {
    transform: none;
    /* Disable standard parallax for this specific block */
}

.project-header h3 {
    margin-bottom: 0.5rem;
}

.project-header p {
    margin-bottom: 0;
}

.project-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stage {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--clr-sage-light);
    box-shadow: var(--shadow-soft);
}

.stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stage:hover img {
    transform: scale(1.05);
    /* subtle zoom on hover */
}

.stage-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0.75rem;
    background: rgba(27, 67, 50, 0.85);
    color: white;
    font-weight: 600;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--clr-sage-dark);
    color: var(--clr-forest);
    font-size: 1.2rem;
    gap: 0.5rem;
    border: 2px dashed rgba(27, 67, 50, 0.2);
    border-radius: inherit;
    position: relative;
    z-index: 1;
}

.placeholder-img i {
    width: 32px;
    height: 32px;
}

@media (min-width: 768px) {
    .span-row {
        grid-row: span 2;
        height: 100%;
    }

    .span-col {
        grid-column: span 2;
    }
}

/* Equipment Section */
.equipment {
    padding: 6rem 5%;
    position: relative;
    background: radial-gradient(circle at top right, rgba(204, 88, 3, 0.05) 0%, transparent 60%);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-card {
    background: var(--clr-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    height: 380px;
    display: flex;
    flex-direction: column;
}

.equipment-card .placeholder-img {
    height: 60%;
    border-radius: 25px 25px 0 0;
    border: none;
    border-bottom: 2px dashed rgba(27, 67, 50, 0.1);
    background: var(--clr-sage-light);
}

.equipment-info {
    padding: 1.5rem;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--clr-white);
    position: relative;
    z-index: 2;
}

.equipment-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.equipment-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-float);
}

.equipment-card:hover .placeholder-img {
    background: rgba(204, 88, 3, 0.05);
    /* very light earth color */
}

.equipment-card:hover .placeholder-img i {
    transform: scale(1.1) rotate(5deg);
    transition: var(--transition);
    color: var(--clr-earth);
}

@media (min-width: 1024px) {
    .equipment-wide {
        grid-column: span 2;
    }
}

/* Footer & Form */
.footer {
    background-color: var(--clr-forest);
    padding: 8rem 5% 4rem;
    position: relative;
    color: var(--clr-white);
    margin-top: 4rem;
    border-radius: 50px 50px 0 0;
}

.footer h2,
.footer p {
    color: var(--clr-sage-light);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--clr-earth);
    transform: translateY(-5px);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 30px;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
    color: var(--clr-text);
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--clr-earth);
}

.feedback-msg {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    text-align: center;
    display: none;
}

.feedback-msg.show {
    display: block;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

/* Animations Reveal */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.float-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.float-in {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Responsive */
@media (max-width: 900px) {

    .hero,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
        padding-top: 10rem;
    }

    .nav-links {
        display: none;
        /* simple mobile fix */
    }

    .logo-icon {
        height: 90px; /* Ridotto per schermi tablet/mobile */
    }

    .logo-text {
        font-size: 1.8rem; /* Testo riproporzionato */
    }
}

@media (max-width: 480px) {
    .logo-icon {
        height: 70px; /* Molto compatto su smartphone verticali */
    }

    .logo-text {
        font-size: 1.4rem; /* Testo compatto */
    }

    .navbar.scrolled .logo-icon {
        height: 60px; /* Ancora più sottile quando scrollato */
    }
}

/* Modal Gallery */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 67, 50, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--clr-sage-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-forest);
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--clr-earth);
    color: white;
    transform: rotate(90deg);
}

#modalTitle {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--clr-forest);
}

.modal-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.modal-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-soft);
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modal-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Lightbox Slider */
.lightbox-trigger {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 15, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--clr-white);
    margin-top: 1rem;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--clr-white);
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--clr-earth);
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav.prev {
    left: 2rem;
}

.lightbox-nav.next {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-nav {
        top: auto;
        bottom: 2rem;
        transform: none;
    }

    .lightbox-nav.prev {
        left: 20%;
    }

    .lightbox-nav.next {
        right: 20%;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp Official Green */
    color: #ffffff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    animation: pulse-ring 2s infinite;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    background-color: #20BA56;
    color: #ffffff;
    animation: none; /* Stop pulsing on hover */
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}