body {
    margin: 0;
    padding: 0;
    background-color: #6622f0;
    font-family: "Verdana", sans-serif;
    color: white;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 1.5rem 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.color-swatch {
    flex: 1 1 100px;
    height: 100px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
}

.color-swatch:hover {
    transform: translateY(-4px) scale(1.05);
}

.color-swatch:hover {
    transform: scale(1.05);
}

.color-swatch:hover {
    transform: translateY(-5px);
}

.color-code {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: "Verdana", sans-serif;
}

.color-code {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.color-code {
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: "Verdana", sans-serif;
    margin-bottom: 8px;
}

.dark-text {
    color: rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.5);
}

.palette-description {
    text-align: center;
    max-width: 600px;
    margin: 1.5rem auto 0;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.palette-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.palette-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    margin-top: 1.2rem;
    max-width: 600px;
}

.placeholder-image {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.placeholder-text {
    color: #5214c5;
    font-size: 52px;
    font-family: "Verdana";
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 4px rgba(82, 20, 197, 0.2);
    letter-spacing: 1px;
}

.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-indicator {
    position: relative;
    width: 20px;
    height: 15px;
}

.flag-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.hidden {
    opacity: 0;
}

.rotate-globe {
    animation: rotate 0.5s ease;
}

.pulse {
    animation: pulse 0.4s ease;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(103, 34, 240, 0.555);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.navbar li {
    margin: 0 25px;
    position: relative;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 8px 0;
    display: inline-block;
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navbar a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.navbar a:hover::after {
    visibility: visible;
    width: 100%;
}

.social-buttons {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
    z-index: 100;
}

.project-status.archived {
    color: #f5f5dc;
    background: rgba(0, 0, 0, 0.9);
}

.project-status.archived i {
    color: #464646;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6622f0;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.social-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: all 0.4s ease;
    border-radius: 50%;
}

.social-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-btn:hover::before {
    transform: scale(1.5);
}

.social-btn i {
    font-size: 1.3rem;
    z-index: 2;
    transition: all 0.3s ease;
    color: white;
}

.social-btn:hover i {
    transform: scale(1.2);
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.logo {
    max-width: 450px;
    height: auto;
}

.about-photo {
    flex: 1;
    max-width: 50%;
    padding-right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo img {
    width: 500px;
    max-width: 107%;
    height: 10%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    margin-top: 35%;
}

.about-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    height: 100vh;
    align-items: center;
    padding: 0 30px;
}

.about-content {
    flex: 1.5;
    max-width: 60%;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.about-content .links a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-content .links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.about-content .links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    width: 0;
    background: white;
    transition: width 0.3s ease;
}

.about-content .links a:hover::after {
    width: 100%;
}

#videoPopupLink {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    margin-right: 15px;
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

#videoPopupLink i {
    margin-left: 10px;
}

#videoPopupLink {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

#videoPopupLink:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(-5px);
    background-color: rgba(255, 255, 255, 0.3);
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.popup-content {
    position: relative;
    border-radius: 12px;
    max-width: 850px;
    width: 75%;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup.active .popup-content {
    transform: scale(1);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: all 0.2s ease;
}

.close-popup:hover {
    background-color: #c0392b;
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
}

.pdf-container {
    width: 100%;
    height: 70vh;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pdf-container iframe {
    border: none;
    width: 100%;
    height: 100%;
    display: block;
}

.download-button {
    text-align: center;
    margin-top: 15px;
}

.download-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6622f0;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(102, 34, 240, 0.3);
}

.download-button a i {
    margin-left: 10px;
}

.download-button a:hover {
    background-color: #5511e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 34, 240, 0.4);
}

.skills-dashboard {
    max-width: 1200px;
    margin: 3rem auto 3rem;
    padding: 0 1.5rem;
}

.dashboard-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dashboard-title:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.dashboard-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
}

.dashboard-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    transform-style: preserve-3d;
}

.dashboard-panel:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.panel-header {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #7928ca, #6622f0);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.panel-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 20px 20px;
    opacity: 0.3;
}

.panel-header i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.05);
}

.panel-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.panel-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 1.2rem;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.skill-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    z-index: 0;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.skill-item i {
    font-size: 1.8rem;
    margin-bottom: 0.7rem;
    color: white;
    opacity: 0.9;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.skill-item:hover i {
    transform: scale(1.1);
    opacity: 1;
}

.skill-item span {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    z-index: 1;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.skill-item:hover span {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-panel {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.dashboard-panel:nth-child(1) {
    animation-delay: 0.1s;
}

.dashboard-panel:nth-child(2) {
    animation-delay: 0.2s;
}

.dashboard-panel:nth-child(3) {
    animation-delay: 0.3s;
}

.dashboard-panel:nth-child(4) {
    animation-delay: 0.4s;
}

.dashboard-panel:nth-child(5) {
    animation-delay: 0.5s;
}

.dashboard-panel:nth-child(6) {
    animation-delay: 0.6s;
}

body.skills-page {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    display: block;
}

body.projects-page {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    display: block;
    background: linear-gradient(135deg, #6622f0, #5214c5);
}

.project-filter {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
    text-align: center;
}

.filter-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.filter-container h2:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background: white;
    color: #6622f0;
    border-color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.figma-tab {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.figma-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.figma-tab.active {
    background: white;
    color: #6622f0;
    border-color: white;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    perspective: 1000px;
}

.project-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s ease;
    transform-style: preserve-3d;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.project-item:nth-child(1) {
    animation-delay: 0.1s;
}

.project-item:nth-child(2) {
    animation-delay: 0.2s;
}

.project-item:nth-child(3) {
    animation-delay: 0.3s;
}

.project-item:nth-child(4) {
    animation-delay: 0.4s;
}

.project-item:nth-child(5) {
    animation-delay: 0.5s;
}

.project-item:nth-child(6) {
    animation-delay: 0.6s;
}

.project-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.project-item a {
    text-decoration: none;
    color: white;
    display: block;
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.9);
}

.project-item:hover .project-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

.project-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0) 40%);
    transition: opacity 0.3s ease;
}

.project-item:hover .project-image::after {
    opacity: 0.5;
}

.project-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(102, 34, 240, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.project-info {
    padding: 1.5rem;
    position: relative;
}

.project-info h3 {
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.project-info h3:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.project-item:hover .project-info h3:after {
    width: 100%;
}

.project-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.project-tech span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.project-item:hover .project-tech span {
    background: rgba(255, 255, 255, 0.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.project-item:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-item:hover .play-button {
    transform: scale(1);
}

.play-button i {
    color: #6622f0;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
}

.project-detail-container {
    max-width: 1000px;
    margin: 6rem auto 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-status-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-status.completed {
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.project-status.in-progress {
    background: rgba(243, 156, 18, 0.2);
    border: 1px solid rgba(243, 156, 18, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.project-status i {
    font-size: 1rem;
}

.project-status.completed i {
    color: #27ae60;
}

.project-status.in-progress i {
    color: #8f5700;
}

.lang-switch {
    margin-left: 25px;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-switch button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: "Verdana", sans-serif;
    transition: all 0.3s ease;
}

.lang-switch button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.current-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(102, 34, 240, 0.95);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    min-width: 150px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.lang-dropdown:before {
    content: "";
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: rgba(102, 34, 240, 0.95);
    transform: rotate(45deg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-option.active {
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.lang-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-option span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.contact-page {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    display: block;
    background: linear-gradient(135deg, #6622f0, #5214c5);
}

.page-header {
    background: rgba(102, 34, 240, 0.8);
    color: white;
    padding: 90px 20px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0.1) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.1) 75%,
            transparent 75%,
            transparent);
    background-size: 10px 10px;
    opacity: 0.1;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-divider {
    width: 70px;
    height: 3px;
    background-color: white;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.header-divider::after {
    content: "";
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 580px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    animation: fadeIn 1s ease;
}

.contact-container {
    gap: 30px;
    padding: 0 20px 40px;
    max-width: 1000px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
    transition: all 0.3s ease;
}

.contact-form-section {
    flex: 2;
    min-width: 300px;
    transition: all 0.3s ease;
}

.contact-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 35px;
    height: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(102, 34, 240, 0.6);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
    color: rgba(102, 34, 240, 0.8);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.contact-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: rgba(102, 34, 240, 0.6);
    transition: width 0.3s ease;
}

.contact-card:hover h2::after {
    width: 100px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.6rem;
    color: rgba(102, 34, 240, 0.8);
    margin-right: 20px;
    margin-top: 3px;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin: 0 0 8px;
    color: #333;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 1.05rem;
}

.contact-item a {
    color: rgba(102, 34, 240, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-item a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(102, 34, 240, 0.6);
    transition: width 0.3s ease;
}

.contact-item a:hover {
    color: rgba(102, 34, 240, 1);
}

.contact-item a:hover::after {
    width: 100%;
}

.social-links-container {
    margin-top: 35px;
}

.social-links-container h3 {
    font-size: 1.2rem;
    margin: 0 0 15px;
    color: #333;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(102, 34, 240, 0.6);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-link:hover {
    background-color: rgba(102, 34, 240, 1);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 34, 240, 0.3);
}

.social-link:hover::before {
    width: 150%;
    height: 150%;
}

.social-link i {
    position: relative;
    z-index: 2;
}

.form-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 35px;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(102, 34, 240, 0.6);
}

.form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-card h2 {
    color: rgba(102, 34, 240, 0.8);
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.form-card h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: rgba(102, 34, 240, 0.6);
    transition: width 0.3s ease;
}

.form-card:hover h2::after {
    width: 100px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.form-group:focus-within label {
    color: rgba(102, 34, 240, 0.8);
}

.form-group input,
.form-group textarea {
    width: 97%;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-family: "Verdana", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(102, 34, 240, 0.6);
    outline: none;
    box-shadow: 0 0 0 4px rgba(102, 34, 240, 0.1);
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    opacity: 0.8;
}

.form-submit {
    text-align: right;
}

.submit-btn {
    background: linear-gradient(135deg,
            rgba(102, 34, 240, 0.8),
            rgba(102, 34, 240, 0.6));
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: "Verdana", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 15px rgba(102, 34, 240, 0.3);
}

.submit-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg,
            rgba(102, 34, 240, 1),
            rgba(102, 34, 240, 0.8));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 34, 240, 0.4);
}

.submit-btn:hover::before {
    width: 300%;
    height: 300%;
}

.submit-btn i {
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn span {
    position: relative;
    z-index: 2;
}

.form-status {
    margin-top: 25px;
}

.success-message,
.error-message {
    padding: 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.success-message {
    background-color: rgba(236, 252, 246, 0.9);
    color: #0a6546;
    border-left: 4px solid #0a6546;
}

.error-message {
    background-color: rgba(255, 235, 235, 0.9);
    color: #d63031;
    border-left: 4px solid #d63031;
}

.success-message i,
.error-message i {
    font-size: 1.5rem;
}

.map-section {
    padding: 80px 20px;
    background-color: rgba(102, 34, 240, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            rgba(102, 34, 240, 0.05) 25%,
            transparent 25%,
            transparent 50%,
            rgba(102, 34, 240, 0.05) 50%,
            rgba(102, 34, 240, 0.05) 75%,
            transparent 75%,
            transparent);
    background-size: 20px 20px;
    opacity: 0.5;
}

.map-section h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.map-section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: rgba(102, 34, 240, 0.6);
    border-radius: 3px;
}

.map-container {
    max-width: 1200px;
    margin: 20px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

.page-header {
    padding: 90px 30px 40px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 260%;
    margin-bottom: 10px;
}

.header-divider {
    margin: 0 auto 15px;
}

.contact-card,
.form-card {
    padding: 25px;
}

.contact-card h2,
.form-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.4rem;
    margin-right: 15px;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    margin-bottom: 6px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 12px;
}

.map-section {
    padding: 40px 20px;
}

.map-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.map-container iframe {
    height: 350px;
}

.submit-btn {
    padding: 10px 20px;
    font-size: 1rem;
}

.social-links-container {
    margin-top: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
}

#contactForm {
    position: relative;
    z-index: 1;
}

.form-submit {
    position: relative;
    z-index: 2;
}

.submit-btn {
    background: rgb(102, 34, 240);
    box-shadow: 0 4px 12px rgba(102, 34, 240, 0.4);
}

.submit-btn:hover {
    background: rgb(82, 14, 197);
}

body.project-detail-page {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    display: block;
    background: linear-gradient(135deg, #6622f0, #5214c5);
}

.project-detail-container {
    max-width: 1000px;
    margin: 6rem auto 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.project-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: white;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.project-header h1:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    bottom: -12px;
    left: 50%;
    border-radius: 2px;
}

.project-subtitle {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    flex-wrap: wrap;
}

.project-category,
.project-date-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-category:hover,
.project-date-label:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.project-date {
    opacity: 0.9;
    font-weight: 500;
}

.project-video-section {
    margin: 2rem 0 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.project-video-section .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.project-video-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.project-description,
.project-tools,
.project-process {
    margin-bottom: 3rem;
}

.project-description h2,
.project-tools h2,
.project-process h2,
.figma-preview-section h2,
.color-palette-section h2,
.project-features h2,
.related-projects h2,
.project-diagram-section h2,
.project-screenshot-section h2,
.project-scss-feature h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: white;
    position: relative;
    padding-bottom: 0.7rem;
}

.project-description h2:after,
.project-tools h2:after,
.project-process h2:after,
.figma-preview-section h2:after,
.color-palette-section h2::after,
.project-features h2:after,
.related-projects h2:after,
.project-diagram-section h2:after,
.project-screenshot-section h2:after,
.project-scss-feature h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tool-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool-item i {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.tool-item:hover i {
    transform: scale(1.2);
    opacity: 1;
}

.tool-item h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.8rem;
}

.tool-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    margin-top: 22px;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
}

.project-navigation {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.project-try-it {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-try-it:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.project-try-it::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.project-try-it h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.project-try-it h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 3px;
}

.try-it-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.try-it-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.try-it-action {
    margin-top: 1rem;
}

.btn-experience {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255, 78, 80, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    margin: 6px;
}

.btn-experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-experience:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(255, 78, 80, 0.5);
}

.btn-experience:hover::before {
    opacity: 1;
}

.btn-experience i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-experience:hover i {
    transform: translateX(-3px) rotate(-10deg);
}

.project-highlight-box {
    background: linear-gradient(185deg, #760cce, #29008a);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}

.features-grid,
.tools-grid,
.related-projects-grid,
.screenshot-gallery {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.features-grid,
.screenshot-gallery {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.related-projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 25px;
}

.feature-item,
.tool-item,
.screenshot-item,
.challenge-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item:hover,
.tool-item:hover,
.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.feature-icon {
    font-size: 2rem;
    margin-right: 15px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    color: var(--accent-color);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.feature-content h3 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.feature-content h3::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.feature-item:hover .feature-content h3::after {
    width: 100%;
}

.feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.tool-item {
    padding: 20px;
    text-align: center;
}

.tool-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    display: block;
}

.tool-item h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.tool-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.view-live-btn,
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    background: #6622f0;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.view-live-btn:hover,
.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: white;
    color: white;
}

.view-live-btn i,
.contact-btn i {
    font-size: 1.1rem;
}

.btn-experience.coming-soon {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.btn-experience.coming-soon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: shine 1.5s infinite;
}

@keyframes shine {
    100% {
        left: 100%;
    }
}

.btn-experience.stopped-project {
    background-color: #7f8c8d;
    color: white;
    opacity: 0.8;
    position: relative;
    overflow: hidden;
}

.btn-experience.stopped-project:hover {
    opacity: 1;
    background-color: #34495e;
}

.project-status {
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-status.completed {
    background-color: #2ecc71;
    color: white;
}

.project-status.in-progress {
    background-color: #f39c12;
    color: white;
}

.project-status.stopped {
    background-color: #e74c3c;
    color: white;
}

.project-try-it {
    margin: 60px 0 40px;
}

.try-it-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.try-it-description {
    flex: 1;
    min-width: 250px;
}

.try-it-description p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.try-it-action {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.website-embed-container,
.video-container {
    position: relative;
    width: 100%;
    height: fit-content;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.website-iframe,
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
}

.embed-caption,
.figma-caption,
.video-caption,
.screenshot-caption,
.code-caption {
    text-align: center;
    font-style: italic;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: #6622f0;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    padding-left: 20px;
    flex-grow: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.step-content p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.figma-preview-section {
    margin-bottom: 50px;
}

.figma-embed-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
}

.figma-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
    margin-bottom: 20px;
    justify-content: center;
}

.figma-content-container {
    margin-top: 25px;
}

.figma-content {
    display: none;
}

.figma-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.related-projects {
    margin-top: 60px;
}

.related-project-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.related-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

.related-project-icon {
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    color: #fff;
    transition: transform 0.3s;
}

.related-project-card:hover .related-project-icon {
    transform: scale(1.1);
}

.related-project-content {
    flex-grow: 1;
}

.related-project-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.related-project-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.related-project-card.coming-soon {
    cursor: not-allowed;
    opacity: 0.8;
}

.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.scss-code-example {
    margin: 30px 0;
    background: rgba(40, 42, 54, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.scss-code-example h3 {
    padding: 15px 20px;
    margin: 0;
    background: rgba(255, 107, 107, 0.2);
    border-bottom: 1px solid rgba(255, 107, 107, 0.3);
    font-size: 1.1rem;
}

.scss-code-example pre {
    margin: 0;
    padding: 20px;
    overflow-x: auto;
}

.scss-code-example code {
    font-family: "Verdana",sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #f8f8f2;
}

.project-diagram-section {
    margin: 30px 0;
}

.project-diagram {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.alternance-section {
    background: linear-gradient(to right,
            rgba(var(--accent-color-rgb, 52, 152, 219), 0.2),
            rgba(var(--accent-color-rgb, 52, 152, 219), 0.05));
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.alternance-message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-detail-page {
    --accent-color: ;
    --accent-color-rgb: 52, 152, 219;
    --accent-hover-color: ;
    --button-text-color: white;
}

.project-detail-page.web-dev {
    --accent-color: #ffffff;
    --accent-color-rgb: 255, 215, 0;
    --accent-hover-color: #ffffff;
    --button-text-color: #ffffff;
}

.project-detail-page.arboretum-theme {
    --accent-color: #ffffff;
    --accent-color-rgb: 76, 175, 80;
    --accent-hover-color: #f7f7f7;
    --button-text-color: white;
}

.project-detail-page.billie-eilish-theme {
    --accent-color: #ffffff;
    --accent-color-rgb: 96, 161, 114;
    --accent-hover-color: #ffffff;
    --button-text-color: #ffffff;
}

.project-detail-page.ecoconnect-theme {
    --accent-color: #ffffff;
    --accent-color-rgb: 76, 175, 80;
    --accent-hover-color: #ffffff;
    --button-text-color: white;
}

.project-detail-page.komola-theme {
    --accent-color: #ffffff;
    --accent-color-rgb: 255, 107, 107;
    --accent-hover-color: #ffffff;
    --button-text-color: white;
}

.burger-menu {
    z-index: 1000;
}

.navbar ul {
    z-index: 999;
}

.menu-overlay {
    z-index: 998;
}

.alternance-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 25px 0;
    border-left: 4px solid #4caf50;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.alternance-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.alternance-message {
    font-size: 1.15rem ;
    font-weight: 800 !important;
    color: white !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    text-align: left !important;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4caf50;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.contact-btn:hover {
    background: #3d8b3d;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
}

.contact-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}

.coming-soon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
}

.coming-soon-content {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    max-width: 500px;
}



.coming-soon-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #f39c12;
}

.coming-soon-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.figma-embed-container,
.website-embed-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.figma-iframe,
.website-iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.website-embed-container {
    height: 500px;
}

.website-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.figma-content {
    transition: opacity 0.3s ease;
}

.figma-content .figma-iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

iframe.figma-iframe,
iframe.website-iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.version-comparison {
    background-color: transparent;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: none;
    border: none;
}

.version-comparison h2 {
    text-align: left;
    margin-bottom: 1.2rem;
    color: white;
    position: relative;
    padding-bottom: 0.7rem;
    text-shadow: none;
    font-size: 1.8rem;
}

.version-comparison h2:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.metrics-attribution {
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    font-style: italic;
}

.metrics-attribution a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.metrics-attribution a:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.metric-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.metric-card:hover .metric-title {
    transform: translateX(5px);
}

.metric-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(102, 34, 240, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.metric-card:hover .metric-icon::before {
    left: 100%;
}

.metric-card:hover .metric-icon {
    transform: scale(1.15) rotate(5deg);
    background-color: rgba(102, 34, 240, 0.5);
}

.metric-icon i {
    font-size: 1.5rem;
    transition: all 0.4s ease;
}

.metric-card:hover .metric-icon i {
    transform: scale(1.2);
}

.comparison-data {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 15px;
}

.comparison-data::after {
    content: none;
}

.version-column {
    width: 48%;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 8px;
}

.v1 {
    color: rgba(255, 255, 255, 0.7);
}

.v2 {
    color: #8affb9;
    text-shadow: 0 0 5px rgba(138, 255, 185, 0.3);
}

.version-label i {
    margin-right: 8px;
}

.metric-value {
    font-size: 22px;
    font-weight: 700;
    margin: 5px 0;
    color: #ffffff;
}

.improvement {
    font-size: 14px;
    color: #8affb9;
    display: flex;
    align-items: center;
    text-shadow: 0 0 5px rgba(138, 255, 185, 0.3);
}

.improvement i {
    margin-right: 5px;
}

.performance-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.performance-fill {
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.v1-fill {
    background: linear-gradient(90deg,
            rgba(255, 99, 71, 0.8),
            rgba(255, 99, 71, 0.6));
    width: var(--fill-width, 50%);
}

.v2-fill {
    background: linear-gradient(90deg,
            rgba(138, 255, 185, 0.9),
            rgba(138, 255, 185, 0.7));
    width: var(--fill-width, 90%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.metric-card:nth-child(1) {
    animation-delay: 0.1s;
}

.metric-card:nth-child(2) {
    animation-delay: 0.2s;
}

.metric-card:nth-child(3) {
    animation-delay: 0.3s;
}

.metric-card:nth-child(4) {
    animation-delay: 0.4s;
}

.metric-card:nth-child(5) {
    animation-delay: 0.5s;
}

.metric-card:nth-child(6) {
    animation-delay: 0.6s;
}

.version-column[aria-labelledby^="v2-"] {
    position: relative;
    overflow: hidden;
}

.version-column[aria-labelledby^="v2-"]:hover .improvement {
    animation: none;
}

@keyframes pulse-glow {
    0% {
        text-shadow: 0 0 5px rgba(138, 255, 185, 0.3);
    }

    50% {
        text-shadow: 0 0 10px rgba(138, 255, 185, 0.5),
            0 0 15px rgba(138, 255, 185, 0.3);
    }

    100% {
        text-shadow: 0 0 5px rgba(138, 255, 185, 0.3);
    }
}

.comparison-intro {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
}

.color-palette-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    margin: 3rem 0;
}

.color-identity-section {
    margin-bottom: 3rem;
}

.color-identity-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.logo-block {
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
}

.site-logo {
    width: 100%;
    max-width: 180px;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(82, 20, 197, 0.12);
}

.logo-block figcaption {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-desc {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.palette-block {
    flex: 2 1 350px;
    min-width: 300px;
}

.palette-group {
    margin-bottom: 1.5rem;
}

.palette-group h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.color-palette-list {
    display: flex;
    gap: 14px;
    margin: 0 0 0.7rem 0;
    padding: 0;
    list-style: none;
}

.color-code.dark-text {
    color: #333;
    background: rgba(255, 255, 255, 0.7);
}

.identity-section {
    margin-bottom: 3.5rem;
}

.identity-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 900px;
}

.identity-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.identity-card {
    flex: 1 1 45%;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.identity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.identity-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.identity-card h3:after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.logo-presentation {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo-variants {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo-variant {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.logo-display {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo-image {
    max-width: 80%;
    height: auto;
}

.logo-image.invert {
    filter: invert(100%);
}

.variant-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.logo-description p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.palette-container {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.palette-group h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.color-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.color-preview {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 0.6rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.color-item:hover .color-preview {
    transform: translateY(-5px);
}

.color-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.color-hex {
    font-family: "Verdana", sans-serif;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.3rem;
}

.color-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.palette-notes {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.palette-notes p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.performance-visualizations {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-visualizations h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.chart-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.chart-card h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    margin-bottom: 1rem;
}

.chart {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    grid-template-rows: 1fr 30px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
}

.chart-y-axis.right {
    align-items: flex-end;
}

.chart-area {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 10px 0;
    grid-column: 2;
    grid-row: 1;
}

.chart-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
}

.chart-grid::before,
.chart-grid::after {
    content: "";
    position: absolute;
    background-color: rgba(255, 255, 255, 0.05);
}

.chart-grid::before {
    top: 25%;
    left: 0;
    right: 0;
    height: 1px;
    box-shadow: 0 50% 0 rgba(255, 255, 255, 0.05),
        0 75% 0 rgba(255, 255, 255, 0.05);
}

.chart-grid::after {
    left: 25%;
    top: 0;
    bottom: 0;
    width: 1px;
    box-shadow: 50% 0 0 rgba(255, 255, 255, 0.05),
        75% 0 0 rgba(255, 255, 255, 0.05);
}

.chart-x-axis {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

.chart-marker {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    z-index: 2;
}

.marker-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1px;
    width: 2px;
    background-color: rgba(255, 99, 71, 0.8);
    box-shadow: 0 0 10px rgba(255, 99, 71, 0.4);
}

.marker-label {
    position: absolute;
    top: 10px;
    left: 5px;
    padding: 3px 8px;
    background-color: rgba(255, 99, 71, 0.8);
    color: white;
    font-size: 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
}

.chart-line {
    position: absolute;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
}

.chart-line.requests {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L15,100 L30,30 L40,50 L50,50 L55,60 L65,90 L80,95 L95,100 L100,100' fill='none' stroke='%238c52ff' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.chart-line.bytes {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L15,100 L30,95 L40,90 L50,75 L60,60 L70,40 L80,35 L90,30 L100,25' fill='none' stroke='rgba(138,255,185,.7)' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3Cpath d='M0,100 L100,25' fill='rgba(138,255,185,.1)'/%3E%3C/svg%3E");
    opacity: 0.9;
}

.chart-line.requests-long {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L5,25 L10,20 L15,30 L25,60 L35,55 L45,30 L55,80 L65,70 L75,90 L85,95 L95,98 L100,100' fill='none' stroke='%238c52ff' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    opacity: 0.8;
}

.chart-line.bytes-long {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,100 L10,95 L20,90 L30,80 L40,70 L50,60 L60,50 L70,40 L80,30 L90,20 L100,10' fill='none' stroke='rgba(138,255,185,.7)' stroke-width='3' vector-effect='non-scaling-stroke'/%3E%3Cpath d='M0,100 L100,10' fill='rgba(138,255,185,.1)'/%3E%3C/svg%3E");
    opacity: 0.9;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
}

.chart-insight {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-style: italic;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.chart-card {
    animation: fadeInScale 0.5s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.canva-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    height: 100%;
}

.canva-link-container p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

.canva-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #00c4cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.canva-btn:hover {
    background-color: #00a2a8;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.canva-btn i {
    margin-left: 10px;
}

@media (max-width: 1024px) {
    .dashboard-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-container {
        grid-template-columns: repeat(2, 1fr);
    }

    iframe#background-animation,
    iframe[src*="canva.com"] {
        display: none !important;
    }

    body {
        background: linear-gradient(135deg, #6622f0, #5214c5);
    }

    .logo {
        max-width: 450px;
    }

    .navbar-container {
        padding: 0 15px;
        justify-content: center;
    }

    .navbar li {
        margin: 0 15px;
    }

    .about-photo img {
        max-width: 90%;
        height: auto;
    }

    .navbar {
        padding: 15px 0;
        margin-bottom: 15px;
    }

    .navbar-container {
        justify-content: space-between;
        padding: 0 20px;
        align-items: center;
    }

    .burger-menu {
        display: flex;
    }

    .navbar ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(102, 34, 240, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        transition: left 0.4s ease;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
    }

    .navbar ul.active {
        left: 0;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .lang-switch {
        margin: 30px 0 0;
        position: static;
    }

    .lang-dropdown {
        position: absolute;
        top: auto;
        bottom: 30%;
        left: 50%;
        transform: translateX(-50%);
    }

    iframe#background-animation {
        width: 150%;
        height: 150%;
        top: -25%;
        left: -25%;
        overflow: hidden;
    }



    .about-container {
        padding-top: 45px;
        overflow-y: auto;
    }


    .contact-container {
        padding: 0 30px 40px;
    }

    .contact-info-section,
    .contact-form-section {
        flex-basis: 100%;
    }

    .page-header h1 {
        font-size: 260%;
    }

    .project-detail-container {
        margin: 5rem auto 3rem;
        padding: 2rem;
    }

    .project-header h1 {
        font-size: 2.4rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-container {
        display: flex;
        flex-direction: row;
        max-width: 100%;
        margin: 0 auto;
        padding: 30px 20px;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
    }
    .about-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .about-content h1 {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.1;
    }
    .links{
        margin: 23px;
        line-height: 26px
    }
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: center;
    }
    .alternance-section {
        margin-top: 9px;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    .alternance-message{
        font-size: 1rem;
        
    }
    .about-photo {
        display: none;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .dashboard-container {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 280px;
    }

    .navbar li {
        margin: 10px 0;
    }
}

@media (max-width: 568px) {
    .about-photo {
        display: none;
    }
    .try-it-action {
        flex-direction: column;   
    }
    .metrics-container {
        display: flex;
        flex-direction: column;
    }

    .metric-card {
        margin-bottom: 1.5rem;
    }

    .comparison-data {
        flex-direction: column;
    }

    .version-column {
        width: 100%;
        margin-bottom: 1rem;
    }

    .chart-wrapper {
        overflow-x: auto;
        margin: 0 -15px;
        padding: 0 15px;
    }

    .chart {
        min-width: fit-content;
        grid-template-columns: 60px 1fr 60px;
        grid-template-rows: 1fr 30px;
    }

    .chart-y-axis {
        font-size: 0.7rem;
    }

    .chart-x-axis {
        font-size: 0.7rem;
    }

    .identity-container img {
        max-width: 150px;
        margin: 0 auto 1.5rem;
        display: block;
    }

    .color-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .color-item {
        margin: 0.5rem;
    }

    .color-preview {
        width: 60px !important;
        height: 60px !important;
    }

    .tools-grid {
        gap: 1rem;
    }

    .tool-item {
        padding: 1rem;
    }

    .tool-item h3 {
        font-size: 1.1rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .project-navigation .back-button {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .projects-container {
        gap: 1.5rem;
    }

    .process-step {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .project-header h1 {
        font-size: 2rem;
    }

    .metrics-attribution {
        text-align: center;
        padding: 0 1rem;
        font-size: 0.8rem;
    }

    .performance-visualizations h2 {
        font-size: 1.5rem;
    }

    .chart-card h4 {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .chart-insight {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .chart-legend {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 0.5rem;
    }

    .legend-item {
        margin-bottom: 0.5rem;
    }
    .form-group input ,
    .form-group textarea {
            width: 90%;
    }
    
    .contact-form-section {
        min-width: min-content;
    }
}

@media (max-width: 450px) {
    .about-photo {
        display: none;
    }

    .charts-container {
        grid-template-columns: auto;
    }

    .chart-card {
        width: 96%;
        padding: 2%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 88%;
    }

    .process-step {
        flex-direction: column;
    }

    .project-try-it h2 {
        font-size: 1.5rem;
    }

    .try-it-description {
        min-width: min-content;
    }

    .try-it-action {
        margin-top: 0;
        margin-left: 2px;
    }

    .try-it-description p {
        font-size: 0.9rem;
    }

    .btn-experience {
        padding: 0.7rem 1.3rem;
        font-size: 1rem;
    }
}

@media (max-width: 350px) {
    .chart-card {
        width: 93%;
        padding: 15px 10px;
        margin: 0;
    }

    .chart-wrapper {
        overflow-x: auto;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .chart-x-axis,
    .chart-y-axis {
        font-size: 0.6rem;
    }

    .feature-item {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }

    .metric-card {
        padding: 15px 10px;
    }

    .comparison-data {
        gap: 5px;
    }

    .project-header h1 {
        font-size: 1.8rem;
    }

    .project-detail-container {
        padding: 1.5rem 1rem;
    }

    .metrics-container {
        margin: 0 -5px;
    }

    .performance-visualizations {
        padding: 0;
        margin: 2rem 0;
    }

    .chart-legend {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.8rem;
    }

    .color-preview {
        width: 50px !important;
        height: 50px !important;
    }
}