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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #020411;
    position: relative;
    min-height: 100vh;
    margin: 0;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Pictures/artdeco2.jpg');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* ====== HEADER ====== */
header {
    padding: 15px 0;
}

.header {
    background-color: #020411;
    position: fixed;
    width: 100%;
    height: 80px;
    color: #ffffff;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    box-shadow: 0 0 15px #020411a8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BIGNAME */
.bigname {
    font-size: 28px;
    font-weight: bold;
}

.bigname span {
    color: #00AAFF;
}

@keyframes clignotementShadow {
    0%, 100% {
        text-shadow: 0 0 0px #00aaff, 0 0 25px #00aaff;
    }
    50% {
        text-shadow: 0 0 10px #00aaff, 0 0 20px #00aaff;
    }
}

.bigname-s {
    animation: clignotementShadow 2s infinite;
}

/* NAVBAR */
.nav-list {
    display: flex;
    gap: 2rem;
    border-radius: 25px;
/*     margin-right:  40px; */
    border: 1px solid white;
    box-shadow: 0px 0px 5px white;
    padding: 10px 20px;
}

.nav-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.nav-list a:hover,
.nav-list a.active {
    color: #00AAFF;
}

/* SOCIAL ICONS */
.box-icons {
    display: flex;
    gap: 20px;
}

.box-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 30px;
    height: 30px;
    padding: 3px;
    cursor: pointer;
    transition: 0.4s;
    background: transparent;
}

.box-icons a:hover svg {
    filter:
        drop-shadow(0 0 6px #00aaff)
        drop-shadow(0 0 12px #00aaff);
}

/* home page */
.home {
    height: 100vh;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.container-home {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.text-home {
    text-align: center;
}

.text-home h4 {
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.text-home h2 {
    font-size: 48px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    color: #ffffff;
}

.h2-home {
    margin-bottom: 30px;
}

.p-home {
    font-size: 20px;
    color: #dacece;
    margin-bottom: 30px;
    font-family: 'Open Sans', sans-serif;
}

.butn-home {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.btn {
    font-size: 22px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.btn-home1 {
    background-color: #00AAFF;
    color: #ffffff;
    border: solid 2px #00AAFF;
    transition: 0.4s;
}

.btn-home2 {
    background-color: transparent;
    color: #00AAFF;
    border: solid 2px #00AAFF;
    transition: 0.4s;
}

.btn-home1:hover {
    background-color: #00aaff42;
}

.btn-home2:hover {
    background-color: #00aaff;
    color: #ffffff;
}

.cursor {
    color: #00AAFF;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* ====== ABOUT SECTION ====== */
.about {
    min-height: 100vh;
    padding: 8rem 0 6rem;
    position: relative;
    background-color: #020411;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.avatar-about {
    position: relative;
    display: flex;
    justify-content: center;
}

.avatar-about img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid #2E3147;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.295);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.avatar-about img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.content-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: left;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    margin: 1rem 0 0 0;
    border-radius: 2px;
}

.text-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-about p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #a0a0a0;
    line-height: 1.7;
    font-weight: 300;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-highlights a {
    text-decoration: none;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.highlight svg {
    width: 40px;
    height: 40px;
    fill: #00AAFF;
    flex-shrink: 0;
    padding: 8px;
    border-radius: 8px;
}

.highlight-content {
    display: flex;
    flex-direction: column;
}

.highlight h4 {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.highlight p {
    font-family: 'Inter', sans-serif;
    color: #a0a0a0;
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.highlight:hover {
    transform: translateX(10px);
    border-color: #00aaff;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}

/* Projects Section */
.projects {
    min-height: 100vh;
    padding: 8rem 0 6rem;
    position: relative;
    background-color: #020411;
}

.projects::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 10s ease-in-out infinite reverse;
}

.projects-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.projects .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.projects .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #00AAFF;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.project-info p {
    font-family: 'Open Sans', sans-serif;
    color: #dacece;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    background: rgba(0, 170, 255, 0.1);
    color: #00AAFF;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1rem;
}

.project-link {
    width: 50px;
    height: 50px;
    background: #00AAFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00AAFF;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-link:hover {
    transform: scale(1.1);
    background: white;
}

.project-link svg {
    width: 32px;
    height: 32px;
    fill: #020411;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: #00AAFF;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 170, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

 /* Carousel Container */
.projects-grid-container {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 80px;
}

/* Carousel Track */
.projects-grid {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

/* Carousel Item */
.project-card {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    z-index: 10;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 170, 255, 0.863);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 170, 255, 0.3);
}

.carousel-btn:hover {
    background: #00AAFF;
    box-shadow: #00AAFF 0px 0px 10px;
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* skills section */
.container-skills {
    max-width: 1400px;
    margin: 0 auto;
/*     padding: 0 15rem; */
}

.skills {
    min-height: 100vh;
    padding: 8rem 0 6rem;
    position: relative;
    background-color: #020411;
}
.skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 170, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}
.skills-content {
    max-width: 1200px;
    margin: 0 auto;
}
.skills .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}
.skills .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.skill-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.skill-category:hover {
    transform: translateY(-5px);
    border-color: #00AAFF;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}
.skill-category h3 {
    color: #00AAFF;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.skill-item i {
    color: #00AAFF;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}
.skill-item span {
    flex: 1;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}
.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    flex: 2;
}
.skill-fill {
    height: 100%;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Contact Section */
.contact {
    min-height: 100vh;
    padding: 8rem 0 6rem;
    position: relative;
/*     background-color: #020411; */
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact .section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
}

.contact .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: #00AAFF;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00AAff 0%, #00AAFF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020411;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin: 0;
}

.contact-details p {
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin: 0;
}

.contact-details a {
    color: #00AAFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    text-decoration: underline;
}


/* Menu Hamburger */
.menu-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
/*     background: rgba(255, 255, 255, 0.1);
    border-radius: 8px; */
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Menu mobile */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(2, 4, 17, 0.95);
        flex-direction: column;
        padding: 1rem;
        border: none;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-list a {
        font-size: 18px;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-list a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Menu mobile - icônes sociales */
@media (max-width: 768px) {
    /* Style du menu */
    .nav-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(2, 4, 17, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
    }

    /* Style des liens */
    .nav-list ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-list a {
        font-size: 18px;
        padding: 0.8rem 1rem;
        color: white;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    /* Style des icônes sociales dans le menu */
    .mobile-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
/*         margin-top: 1rem; */
/*         padding-top: 1rem; */
        border-top: 1px solid rgba(0, 170, 255, 0.3);
    }

    .mobile-icons a {
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }

    .mobile-icons a svg {
        width: 50px !important;
        height: 50px !important;
        fill: #00aaff !important;
        opacity: 1 !important;
    }

    .mobile-icons a:hover svg {
        filter: drop-shadow(0 0 6px #00aaff) drop-shadow(0 0 10px #00aaff) !important;
    }
}

/* Style pour desktop */
@media (min-width: 769px) {
    .mobile-icons {
        display: flex;
        gap: 20px;
    }
}






/* Responsive Design for Projects Section */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}


/* ====== RESPONSIVE MEDIA QUERIES ====== */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    .nav-list {
        gap: 1rem;
        padding: 8px 15px;
    }
    .nav-list a {
        font-size: 16px;
    }
    .container-about {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .avatar-about {
        order: -1;
    }
    .avatar-about img {
        max-width: 350px;
        height: 450px;
    }
    .section-title {
        text-align: center;
    }
    .section-title::after {
        margin: 1rem auto 0;
    }
}

@media (max-width: 768px) {

    .contact-item {
        flex-direction: row;
        align-items: center;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-list {
        display: none; /* Hide menu for small screens */
    }
    .menu-icon {
        display: block;
        color: white;
        font-size: 28px;
        cursor: pointer;
    }
    .box-icons {
        gap: 10px;
    }
    .bigname {
        font-size: 24px;
    }
    .text-home h2 {
        font-size: 40px;
    }
    .p-home {
        font-size: 20px;
    }
    .btn {
        font-size: 15px;
        font-weight: 500;
    }
    .container-about {
        padding: 0 1rem;
    }
    .avatar-about img {
        max-width: 300px;
        height: 400px;
    }
    .highlight {
        padding: 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {



    .skill-category {
        padding: 1.5rem;
    }

    .header {
        height: 70px;
    }
    .bigname {
        font-size: 20px;
    }
    .box-icons a {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
    .text-home h2 {
        font-size: 35px;
    }
    .p-home {
        font-size: 15px;
    }
    .btn {
        font-size: 10px;
        font-weight: 500;
    }
    .container-about {
        padding: 0 0.75rem;
    }
    .avatar-about img {
        max-width: 250px;
        height: 350px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .text-about p {
        font-size: 1rem;
    }
    .highlight {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .highlight:hover {
        transform: none;
    }
    .project-info {
        padding: 1.5rem;
    }
    .project-card {
        flex: 0 0 250px;
    }
}

.footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #020411;
    color: #7488ec;
    border-top: 1px solid #222;
    box-shadow: 0 0 15px #020411a8;
    position: relative;
}
