@font-face {
    font-family: "Arial Narrow";
    src: url("../fonts/arialnarrow.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --theme-primary: #0f3071;
    --theme-primary-2: #00ADEF;
    --theme-contrast: #a855f7;
    --theme-contrast-2: #ec4899;
    --theme-contrast-3: #14b8a6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Arial Narrow", sans-serif;
    letter-spacing: 0.08em;
}

/* Refined Heading Styles */
h1,
h2,
h3 {
    font-weight: 600;
    /* Semibold instead of Black */
    letter-spacing: 0.02em;
    color: #0f172a;
    /* Slightly softer than pure black */
}

/* .text-gradient-colorful {
    background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-contrast) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 700; 
} */

article {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Better visual hierarchy for metric numbers */
.text-3xl.font-bold {
    letter-spacing: -0.02em;
}

/* Soft animated background glow in hero section */
@keyframes floatGlow {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translate3d(0, -10px, 0) scale(1.04);
        opacity: 0.65;
    }
}

.hero-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(70px);
    animation: floatGlow 6s ease-in-out infinite;
    z-index: 0;
}

.hero-orb-right {
    top: -130px;
    right: -110px;
    height: 320px;
    width: 320px;
    background: rgba(15, 48, 113, 0.25);
}

.hero-orb-left {
    bottom: -110px;
    left: -70px;
    height: 280px;
    width: 280px;
    background: rgba(236, 72, 153, 0.2);
}

.site-header {
    box-shadow: 0 10px 35px -22px rgba(2, 6, 23, 0.35);
}

.nav-dropdown-scroll {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.75) transparent;
}

.nav-dropdown-scroll::-webkit-scrollbar {
    width: 6px;
}

.nav-dropdown-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(148, 163, 184, 0.75);
    border-radius: 9999px;
}

#mobile-menu .nav-dropdown-scroll::-webkit-scrollbar-thumb {
    background-color: rgba(226, 232, 240, 0.55);
}

#mobile-menu .nav-dropdown-scroll {
    scrollbar-color: rgba(226, 232, 240, 0.55) transparent;
}

#mobile-menu .mobile-nav-group {
    position: relative;
    isolation: isolate;
}

#mobile-menu .mobile-submenu {
    overflow: hidden;
}

.btn-colorful {
    background-color: var(--theme-primary-2);
}

.btn-colorful:hover {
    background-color: var(--theme-primary);
}

.text-gradient-colorful {
    color: #173e9d;
}

.panel-gradient-colorful {
    background-color: #0f3071;
}

/* More polished keyboard focus style for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--theme-contrast);
    outline-offset: 3px;
    border-radius: 0.75rem;
}

/* testimonial-section */

/* Section Base */
.testimonials-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #f1f5f9;
    /* Slightly deeper slate (slate-100) for better contrast */
    overflow: hidden;
}

/* Background Elements Container */
.testi-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Blobs - Increased Opacity and Saturation */
.blob {
    position: absolute;
    width: 500px;
    /* Slightly larger for more impact */
    height: 500px;
    border-radius: 9999px;
    filter: blur(80px);
    /* Reduced blur slightly to keep color more concentrated */
    animation: testiPulse 8s infinite ease-in-out;
}

.blob-top {
    top: -15%;
    right: -10%;
    /* Increased opacity to 0.6 and used a stronger blue */
    background-color: rgba(184, 209, 249, 0.6);
}

.blob-bottom {
    bottom: -15%;
    left: -10%;
    /* Increased opacity to 0.6 and used a stronger purple */
    background-color: rgba(224, 196, 250, 0.6);
    animation-delay: 3s;
}

/* Center Spotlight - Made more intense */
.radial-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0) 80%);
}

/* Dot Pattern SVG - Increased Opacity for visibility */
.dot-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    /* Increased from 0.05 */
    mask-image: radial-gradient(ellipse at center, black, transparent);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent);
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23173e9d' fill-opacity='1' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* Card Styling */
.testi-card {
    height: 100%;
    padding: 2.5rem;
    border-radius: 3rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    background-color: rgba(255, 255, 255, 0.95);
    /* Semi-transparent white to let bg peek through slightly */
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    transition: all 0.5s ease;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #94a3b8 !important;
    /* Darker slate for dots */
}

.swiper-pagination-bullet-active {
    background: linear-gradient(to right, #1d4ed8, #9333ea) !important;
}

@keyframes testiPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
        opacity: 0.9;
    }
}

/* Section Base */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background-color: #020617;
    /* slate-950 */
    overflow: hidden;
}

/* Background Effects */
.cta-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 999px;
    filter: blur(120px);
    opacity: 0.15;
}

.cta-blob-left {
    top: -20%;
    left: -10%;
    background: #1d4ed8;
    /* Blue */
}

.cta-blob-right {
    bottom: -20%;
    right: -10%;
    background: #7e22ce;
    /* Purple */
}

.cta-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Content Elements */
.cta-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.cta-title {
    margin-top: 2rem;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-description {
    margin: 2rem auto 0;
    font-size: 1.125rem;
    color: #94a3b8;
    /* slate-400 */
    line-height: 1.7;
    max-width: 32rem;
}

/* Action Buttons */
.cta-actions {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.btn-main {
    background: linear-gradient(to right, #2563eb, #a855f7);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    transition: transform 0.3s ease;
}

.btn-main:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-trust {
    margin-top: 4rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #475569;
    /* slate-600 */
}

/* Footer Base - Darker Slate for Contrast */
.footer-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-color: #f1f5f9;
    /* slate-100 */
    /* Gradient Top Border for premium separation */
    border-top: 1px solid transparent;
    border-image: linear-gradient(to right, transparent, #e2e8f0, transparent) 1;
    overflow: hidden;
}



/* Typography & Brand */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    /* Navy focus */
}

.footer-brand-desc {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #475569;
    /* Darker slate for readability */
    max-width: 300px;
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #1e293b;
    /* slate-800 */
    margin-bottom: 2rem;
}

/* Links - Better Interaction */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.footer-links a:hover {
    color: #173e9d;
    transform: translateX(5px);
    /* Smooth slide effect */
}

/* Socials - Stronger Separation */
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-socials a {
    height: 44px;
    width: 44px;
    border-radius: 14px;
    background: #ffffff;
    /* White buttons on slate bg */
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #173e9d;
    color: #ffffff;
    border-color: #173e9d;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(23, 62, 157, 0.2);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.copyright {
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.footer-legal a {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #173e9d;
}

/* Hero Foundation */
.page-hero-section {
    position: relative;
    padding: 3rem 0 6rem;
    background-color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

/* Structural Background */
.page-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(#e2e8f0 1px, transparent 1px),
        linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-glow-orb {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(23, 62, 157, 0.05) 0%, transparent 70%);
    filter: blur(80px);
}

/* Page page gradient backgrounds */
.page-bg-gradient-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 110% 85% at 90% -5%, rgba(23, 62, 157, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 85% 70% at -5% 105%, rgba(20, 184, 166, 0.1) 0%, transparent 48%),
        radial-gradient(ellipse 70% 45% at 50% 110%, rgba(226, 232, 240, 0.45) 0%, transparent 55%),
        linear-gradient(165deg, #ffffff 0%, #f8fafc 45%, #f1f5f9 100%);
}

.page-hero-section .page-hero-grid-fade {
    opacity: 0.055;
}

.page-bg-gradient-bloom {
    position: absolute;
    pointer-events: none;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(72px);
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 68%);
}

.page-bg-gradient-bloom-lower {
    bottom: -18%;
    left: -8%;
}

.page-bg-gradient-soft {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 55% at 100% 15%, rgba(23, 62, 157, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 75% 50% at 0% 85%, rgba(20, 184, 166, 0.06) 0%, transparent 48%),
        linear-gradient(185deg, #ffffff 0%, #f8fafc 35%, #ffffff 100%);
}

.page-bg-gradient-map {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 75% 55% at 85% 25%, rgba(23, 62, 157, 0.09) 0%, transparent 52%),
        radial-gradient(ellipse 65% 50% at 15% 75%, rgba(148, 163, 184, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 48%, #f1f5f9 100%);
}

.page-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 99px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
}

.breadcrumb-list li a {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-list li a:hover {
    color: #173e9d;
}

.breadcrumb-list .current {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
}

/* Content Typography */
.hero-main-title {
    margin-top: 1.5rem;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #0f172a;
}

.hero-lead-text {
    margin-top: 2rem;
    font-size: 1.15rem;
    color: #475569;
    max-width: 650px;
    line-height: 1.7;
}

/* Actionable Card */
.header-resource-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 2.5rem;
    border-radius: 2.5rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.resource-icon {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    color: #173e9d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
}

.resource-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.resource-sub {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

/* Page Detail Cards */
.page-detail-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: background 0.3s ease;
}

.page-detail-card:hover {
    background: #f8fafc;
}

.detail-icon {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #173e9d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.25rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.detail-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    display: block;
}

.detail-sub {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Social Connectivity Nodes */
.social-node {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-node:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #173e9d;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Form Styling (High Density) */
.page-form-container {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 3rem;
    border-radius: 3rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.04);
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    font-size: 0.9rem;
    color: #0f172a;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #173e9d;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(23, 62, 157, 0.05);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    background: #0f172a;
    color: #ffffff;
    padding: 1.25rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #173e9d;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(23, 62, 157, 0.3);
}

/* Map Container Outer */
.map-container-outer {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 2.5rem;
    padding: 1rem;
    height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.03);
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.map-coord {
    font-family: monospace;
    font-size: 9px;
    color: #94a3b8;
    background: #f8fafc;
    padding: 2px 8px;
    border-radius: 4px;
}

.map-viewport {
    flex-grow: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

/* Map Overlay Detail Card */
.map-overlay-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    z-index: 20;
}

/* Node Cards */
.node-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.node-card.active {
    border-color: #173e9d;
    background: #f8fafc;
    box-shadow: 0 4px 6px -1px rgba(23, 62, 157, 0.05);
}

.node-city {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.node-tag {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 4px;
    color: #64748b;
}

.node-address {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

.node-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
}

/* Inherited Grid Pattern */
.hero-grid-pattern {
    background-image: linear-gradient(#e2e8f0 1px, transparent 1px), linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
    background-size: 40px 40px;
}

/* About Us Specific Bloom Logic */
.page-bg-gradient-bloom {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    /* Purple Tint */
    filter: blur(100px);
    z-index: 1;
}

.page-bg-gradient-bloom-lower {
    bottom: -10%;
    left: -5%;
}

/* Enhancing the Grid Fade for the About Page */
.page-hero-grid-fade {
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* Ensuring Resource Items in About Hub feel informative */
.resource-icon {
    transition: transform 0.3s ease;
}

.resource-item:hover .resource-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Heritage Section Specifics */
.heritage-content {
    padding-right: 2rem;
}

/* Timeline Components */
.timeline-container {
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
}

/* Value Grid Hover Effects */
.heritage-content .group:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.04);
}

/* Milestone Dot Pulse for the 'Current' phase */
.timeline-container .relative:last-child .absolute {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4);
    animation: pulseTimeline 2s infinite;
}

@keyframes pulseTimeline {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(20, 184, 166, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
    }
}