@import url('https://fonts.googleapis.com/css2?family=Oldenburg&display=swap');

:root {
    --primary-color: #111111;
    --secondary-color: #ffffff;
    --accent-color: #ccff00;
    --text-color: #ffffff;
    --text-secondary: #999999;
    --background-color: #111111;
    --card-bg: #1a1a1a;
    --transition: all 0.3s ease;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* border: 1px solid red; */
}

section {
    padding-top: 55px;
    padding-bottom: 0;
    /* border: 1px solid red; */
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* small container heading section */
.container .container-heading-section {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.container .under-container-heading-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid grey;
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.under-container-heading-section .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* *************************************************************************************** */

/* Header Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    position: fixed;
    top: 20px;
    width: 79%;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(--background-color);
    border: 1px solid rgb(128, 128, 128);
}

.contact-btn {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}

.logo {
    width: 50px;
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    padding: 5px 0;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {

    .nav-container {
        width: 90%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 90px;
        left: 50%;
        width: 100%;
        max-width: 400px;
        /* height: calc(100vh - 90px); */
        background-color: rgba(17, 17, 17, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
        z-index: 999;
        border-radius: 15px;
        box-shadow: var(--box-shadow);
        border: 1px solid rgb(128, 128, 128);
    }

    .nav-links.active {
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 10px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: calc(0.1s * var(--i));
    }

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

    .nav-links li:nth-child(1) {
        --i: 1;
    }

    .nav-links li:nth-child(2) {
        --i: 2;
    }

    .nav-links li:nth-child(3) {
        --i: 3;
    }

    .nav-links li:nth-child(4) {
        --i: 4;
    }

    .nav-links a {
        font-size: 24px;
    }

    .contact-btn {
        display: none;
    }
}

/* Home-section */
.home-content {
    width: 100%;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}

.home {
    background-image: url("assets/hero-img2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.home h1 {
    font-size: 96px;
    font-family: "Oldenburg", serif;
    font-weight: 900;
    font-style: normal;

}

.home p {
    text-align: center;
    margin-bottom: 50px;
}

.home .available-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.home .available-badge .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.scroll-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-secondary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.scroll-btn i {
    color: var(--accent-color);
}

.scroll-btn:hover {
    border-color: var(--accent-color);
}

/* Responsive Home-section */
@media screen and (max-width: 1024px) {
    .home h1 {
        font-size: 4rem;
    }

    .home p {
        font-size: 1rem;
        max-width: 500px;
    }

    .home .available-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .scroll-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .home h1 {
        font-size: 3rem;
    }

    .home p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .home p span {
        font-size: 1rem;
    }

    .home .available-badge {
        font-size: 0.8rem;
        padding: 15px 20px;
    }

    .scroll-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .home h1 {
        font-size: 2.5rem;
    }

    .home p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .home p span {
        font-size: 0.9rem;
    }

    .home .available-badge {
        font-size: 0.8rem;
        padding: 10px 15px;
    }

    .scroll-btn {
        padding: 12px 18px;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 10px;
    }
}

/* About-section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    /* border: 1px solid #078bff; */
}

.about-content-left {
    flex: 1 1 400px;
    max-width: 500px;
}

.about-content-left img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #444;
}

.about-content-right {
    flex: 1 1 500px;
}

.about-content-right h3 {
    font-size: 36px;
    font-weight: 800;
}

.about-content-right p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #d1d5db;
    font-weight: 600;
}

.about-content-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    /* border: 1px solid red; */
}

.about-content-feature-box {
    flex: 1 1 240px;
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
    border: 1px solid rgba(199, 199, 199, 0.133);
}

.about-content-feature-box:hover {
    transform: translateY(-5px);
}

.about-content-feature-box i {
    font-size: 20px;
    margin-bottom: 10px;
    display: inline-block;
}

.about-content-feature-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-content-feature-box p {
    font-size: 14px;
    color: #cbd5e1;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .right h1 {
        text-align: center;
    }

    .features {
        justify-content: center;
    }
}

/* services-section */
.services-stack {
    max-width: 960px;
    margin: 0 auto;
}

.services-stack-track {
    display: grid;
    gap: 1.25rem;
}

.services-service-card {
    position: sticky;
    top: clamp(110px, 10vh, 120px);
    background: var(--card-bg);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    min-height: 120px;
    isolation: isolate;

}

.services-card-inner {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 1.25rem;
    align-items: center;
}

.services-card-media {
    width: 400px;
    height: 350px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
    margin: 0;
}

.services-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-card-content p {
    margin: .25rem 0 0;
    opacity: .9;
}

.services-service-card h3 {
    margin: 0;
    padding-bottom: 12px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    /* border: 1px solid red; */

}

.services-service-card p {
    margin: .25rem 0 0;
    opacity: .85;
    font-size: .95rem;
}

.services-service-card .services-badge-text {
    display: inline-grid;
    place-items: center;
    margin-top: 12px;
    gap: 15px;
    padding: 0 15px;
    height: 32px;
    border-radius: 7px;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(107, 228, 217, .15), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: .5rem;
}

.services-badge-box{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Card color accents */
.services-service-card[data-accent="1"] {
    border-color: rgba(107, 228, 217, .18);
}

.services-service-card[data-accent="2"] {
    border-color: rgba(255, 214, 102, .18);
}

.services-service-card[data-accent="3"] {
    border-color: rgba(255, 132, 132, .18);
}

.services-service-card[data-accent="4"] {
    border-color: rgba(146, 129, 255, .18);
}

.services-service-card[data-accent="5"] {
    border-color: rgba(132, 255, 198, .18);
}

/* Responsive */
@media (max-width: 1080px) {
    .services-card-inner {
        grid-template-columns: 420px 1fr;
    }

    .services-card-media {
        width: 400px;
        height: 350px;
    }
}

@media (max-width: 920px) {
    .services-card-inner {
        grid-template-columns: 1fr;
    }

    .services-card-media {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

}

@media (max-width: 600px) {

    .services-stack-track {
        gap: .9rem;
    }

    .services-service-card {
        top: 64px;
        padding: 1rem;
    }

    .services-service-card .services-badge-text {
        width: auto;
        height: 30px;
        border-radius: 9px;
        font-size: .9rem;
        padding: 0 .6rem;
    }

    .services-service-card{
        top: 110px;
    }
}

/* our-mission-section */
.our-mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.our-mission-feature-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 22px;
    transition: transform 0.3s ease;
    /* border: 1px solid red; */
}

.our-mission-feature-card:hover {
    transform: translateY(-6px);
}

.our-mission-icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    /* border: 1px solid red; */
}

.our-mission-icon-circle i {
    color: var(--accent-color);
    font-size: 24px;
}

.our-mission-feature-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.our-mission-feature-card p {
    color: #d1d5db;
}

.our-mission-cta-section {
    margin-top: 80px;
    background-color: #1a1a1a1e;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.our-mission-cta-text {
    flex: 1;
    padding: 40px;
    /* border: 1px solid red; */
}

.our-mission-cta-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 16px;
}

.our-mission-cta-text p {
    color: #d1d5db;
    font-weight: 600;
}

.our-mission-cta-text a {
    display: inline-block;
    border: 1px solid rgb(255, 255, 255);
    color: #fff;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.our-mission-cta-text a:hover {
    background-color: var(--accent-color);
}

.our-mission-cta-image {
    flex: 1;
    min-width: 300px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.our-mission-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .our-mission-cta-section {
        flex-direction: column;
    }

    .our-mission-cta-text,
    .our-mission-cta-image {
        padding: 20px;
    }
}

/* review section */
.testimoniyal-scroller {
    display: flex;
    overflow: hidden;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;

}

.testimoniyal-scroll-wrapper {
    display: flex;
    animation: scrollX 20s linear infinite;
}

.testimoniyal-scroll-wrapper.testimoniyal-reverse {
    animation-direction: reverse;
}

@keyframes scrollX {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimoniyal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 25px;
    min-width: 320px;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 30px;
}

.testimoniyal-stars {
    color: #facc15;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimoniyal-card p {
    font-size: 15.5px;
    line-height: 1.6;
    color: #ccc;
}

.testimoniyal-user {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimoniyal-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #444;
}

.testimoniyal-user-info {
    font-size: 14px;
}

.testimoniyal-user-info strong {
    color: #fff;
    display: block;
    font-weight: 600;
}

.testimoniyal-user-info small {
    color: #aaa;
}

@media (max-width: 768px) {
    .testimoniyal-scroller {
        overflow: hidden;
        /* hide scrollbars */
    }

    .testimoniyal-scroll-wrapper {
        flex-wrap: nowrap;
        animation: scrollX 20s linear infinite;
        /* keep animation */
    }

    .testimoniyal-card {
        min-width: 300px;
        max-width: 300px;
        margin-right: 20px;
    }

    .testimoniyal-card p {
        font-size: 10px;
        font-weight: 700;
        line-height: 1.6;
        color: #ccc;
    }

    .testimoniyal-user-info {
        font-size: 10px;
        font-weight: 700;
        font-style: italic;
    }
}

/* faq section */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-color);
    margin-bottom: 15px;
    padding: 18px 22px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    border: #393939 2px solid;
}

.faq-item:hover {
    background-color: var(--card-bg);
}

.faq-item.active {
    border-left: 4px solid var(--accent-color);
    background-color: var(--card-bg);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item p {
    color: #ccc;
    font-weight: 600;
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item.active p {
    max-height: 500px;
    opacity: 1;
}

.faq-item h3::after {
    content: '\276F';
    color: #bbb;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(90deg);
    color: #ff8800;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}


/* contact section */
.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.contact-info-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--accent-color);
    font-size: 1.4rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    /* contact form */
    flex: 1 1 350px;
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.contact-form-header p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form-group {
    flex: 1;
    position: relative;
    margin-bottom: 20px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background-color: var(--card-bg);
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--text-secondary);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
    color: var(--text-color);
}

.contact-form-group label {
    position: absolute;
    left: 15px;
    top: 12px;
    color: #888;
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--card-bg);
    padding: 0 5px;
}

.contact-form-group input:focus+label,
.contact-form-group textarea:focus+label,
.contact-form-group input:not(:placeholder-shown)+label,
.contact-form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.contact-submit-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    color: #1a1a1a;
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-header h2 {
        font-size: 2.2rem;
    }
}



/* footer section */
.footer-content {
    margin-top: 55px;
    text-align: center;
    border: 1px solid grey;
    padding: 30px;
    background-color: var(--accent-color);
    border-radius: 12px;
    margin-bottom: 10px;
}

.footer-content h1 {
    color: black;
    font-family: 'Courier New', Courier, monospace;
    font-size: 4.5rem;
    /* border: 1px solid red; */
}


















































































/* ******************************************************************************************** */
/* Cursor elements */
#cursor-dot,
#cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #aff902;
    box-shadow: 0 0 6px #6be4d9;
    transition: transform 0.1s ease, background 0.2s ease;
}

#cursor-ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.hover #cursor-ring {
    width: 60px;
    height: 60px;
    border-color: #ccff00;
}

.visible #cursor-dot,
.visible #cursor-ring {
    opacity: 1;
}

.pulse {
    animation: pulse 0.4s ease;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Right-click style */
.right-click #cursor-ring {
    border-color: #ffc107;
    width: 70px;
    height: 70px;
}

.right-click #cursor-dot {
    background: #ffc107;
    box-shadow: 0 0 8px #ffc107;
}

/* Particle style */
.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(159, 232, 0, 0.4);
    pointer-events: none;
    z-index: 9998;
    animation: fadeOut 0.6s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}