/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'joan';
    src: url(./asset/Joan/Joan-Regular.ttf);
}
::selection {
    background: #6e055e7c; /* your custom color */
    color: white;    /* text color when selected */
  }
  

::-webkit-scrollbar{
    display: none;
}
.nav-link.active {
  font-weight: bold;
  color: #007bff; /* or your highlight color */
  border-bottom: 2px solid #007bff;
}
/* Body Styling */
body {
    /* font-family: 'Arial', sans-serif; */
    font-family:'joan';
    background-color: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}
.full-section {
    height: 100vh;
    padding: 2rem;
}

.reveal .parent {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-y: hidden;
}

.reveal .parent .child {
    display: block;
}

.parent .child span {
    display: inline-block;
}

#marg{
    width: 100%;
    height: 15vh;
}
/* Navigation Styling */
nav {
    
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 0.6rem;
    backdrop-filter: blur(5px);
    /* background-color: #a13030; */
    z-index: 99;
}
#nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
    padding: 1rem 5vw;
    backdrop-filter: blur(10px);
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    gap: 20px;
}


#nav a {
    opacity: 1;
    color: #fdfdfd;
    font-size: 1.2rem;
    text-decoration: none;
}

#nav a:hover {
    color: #dadada;
}






/* #search-Icon{
    background: url(./asset/imgs/pngtree-infinity-symbol-clip-art-png-image_14566803.png);
   
    width: 16px;
    height: 16px;
} */




/* pop up menu */

.search-button {
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    gap: 10px;
}

.search-icon {
    width: 28px;
    height: 32px;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;    /* Ensure it covers the full viewport width */
    height: 100vh; 
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    background-color: #121212;
    border-radius: 10px;
    width: 90%;
    max-width: 480px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.search-bar {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #333;
    flex-shrink: 0;
}

.search-input {
    background-color: transparent;
    border: none;
    flex-grow: 1;
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
    padding: 5px 0;
    outline: none;
}

.close-button {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
}

.menu-content {
    overflow-y: auto;
    flex-grow: 1;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #444 #222;
}

/* Custom scrollbar for Chrome/Safari/Edge */
.menu-content::-webkit-scrollbar {
    width: 8px;
}

.menu-content::-webkit-scrollbar-track {
    background: #222;
}

.menu-content::-webkit-scrollbar-thumb {
    background-color: #444;
    border-radius: 4px;
}

.menu-section {
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.menu-section:last-child {
    border-bottom: none;
}

.section-title {
    padding: 10px 15px;
    color: #999;
    font-size: 14px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: #222;
}

.menu-item.active {
    background-color: #222;
    outline: none;
}

.item-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.item-icon.blue {
    background-color: #1a73e8;
}

.item-icon.beige {
    background-color: #d4c6a7;
}

.item-text {
    flex-grow: 1;
}

.item-title {
    font-weight: 500;
    margin-bottom: 4px;
}

.item-subtitle {
    color: #999;
    font-size: 14px;
}

.navigation-footer {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-top: 1px solid #333;
    flex-shrink: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #999;
}

.nav-help {
    color: #999;
    font-size: 14px;
}

























/* Home Section */
#home {
    background-image: url(./asset/imgs/bgBluredHero.avif);
    position: relative; /* Equivalent to 'min-h-screen' */
    width: 100%; /* Full width of the screen */
    overflow: hidden; /* Prevents overflowing content */
    /* background-image: url('/bgBluredHero.avif'); Sets the background image */
    background-size: cover; /* Ensures the image covers the whole container */
    background-position: right; /* Positions the background image to the right */
    padding-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    padding: 0 5vw;
}

#home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%; /* Adjust the height of the fading effect */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); /* Adjust the color and opacity */
    pointer-events: none; /* Ensures the pseudo-element doesn't interfere with clicks */
}


/* For large screens, adjust background position */
@media (min-width: 1024px) {
    .home {
        background-position: center; /* Center the background on large screens */
    }
    .row h1 {
        font-size: 10vw; /* Slightly smaller on very large screens for better proportions */
    }
    
    .row h3 {
        font-size: 3vw;
    }
}




.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5vw;
}
.row h3{
    font-size: x-large;
    font-weight: lighter;
}
.row h3 .child span{
    color: #FF9B0F;
}

.row .text {
    margin-top: 1vw;
}
.row h1 {
    font-weight: 500;
    overflow-y: hidden;
    font-size: 12vw;
    transform-style: preserve-3d;
    perspective: 1000px;
    display: inline-block;
}
@keyframes flipAnimation {
    0% {
        transform: rotateX(0deg);
    }
    50% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}

.flip-animation {
    animation: flipAnimation 1s ease;
}

.row .text h5 {
    font-size: 1vw;
    opacity: 0.5;
    font-weight: 600;
}



/* Projects Section
#proj {
    position: relative;
    overflow: hidden;
    padding: 5vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1vw;
    align-items: center;
    justify-items: center;
    height: 132vh;
}

.project-box {
    width: 80%;
    height: 20vw;
    aspect-ratio: 3 / 2;
    background-color: #1e90ff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1vw;
    opacity: 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateX(-100%) rotate(10deg);
}

.project-box img {
    width: 105%;
}

@media (max-width: 768px) {
    #proj {
        height: auto;
    }

    .project-box {
        width: 100%;
        height: 150px;
    }

    #proj {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
} */

/* ScrollImage Section */
#scrollImage {
    margin-top: 10vw;
    position: relative;
    height: 40vw;
    background-color: #f2f2f2;
}

/* Miscellaneous */
/* #work {
    margin-top: 8vw;
    position: relative;
    width: 100%;
    height: 70vw;
    background-color: #f2f2f2;
}

#work::before {
    content: "";
    position: absolute;
    top: -46px;
    width: 100%;
    height: 150px;
    background-image: url("/asset/svgs/rip.f6d7c4dd.svg");
    background-repeat: no-repeat;
    transform: rotate(-180deg);
    background-size: cover;
}

#work h1 {
    margin-top: 2vw;
    font-size: 6.7vw;
    font-weight: 500;
    letter-spacing: 1px;
}

#work h1 span {
    color: #14CF93;
    font-style: italic;
} */

/* Global Variables */
:root {
    --primary-bg: #050505;
    --next-ventures-bg: #2a0a2e;
    --coding-platform-bg: #0a1a3e;
    --file-converter-bg: #0a2e1a;
    --streamsync-bg: #1a0a2e;
    --lyrics-platform-bg: #2e1a0a;
    --strapi-terraform-bg: #0a2e2e;
    --card-bg: #111111;
    --accent-pink: #e64ca0;
    --text-primary: #ffffff;
    --text-secondary: #ffffffcc;
    --border-radius: 12px;
}

/* Main Section Styling */
.project-container {
    margin-top: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-header {
    margin-top: 5vw;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.featured-text {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.curated-title {
    text-shadow:0 0 10px rgba(255, 255, 255, 0.281),
     0 0 20px rgb(255 255 255 / 15%),
      0 0 30px rgba(238, 238, 238, 0.147),
       0 0 40px rgba(255, 255, 255, 0.71);
    
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

.accent {
    color: var(--accent-pink);
    font-style: italic;
}


#work{
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 50px;
    padding: 100px 10%;
    min-height: 200vh;
    color: var(--text-primary);
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
}

/* Left-Side Project Images */
.projects {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 69%;
}

.project {
    width: 100%;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
}

.image-box {
    width: 100%;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Project backgrounds */
.project:nth-child(1) .image-box {
    background-color: var(--next-ventures-bg);
}

.project:nth-child(2) .image-box {
    background-color: var(--coding-platform-bg);
}

.project:nth-child(3) .image-box {
    background-color: var(--file-converter-bg);
}

.project:nth-child(4) .image-box {
    background-color: var(--streamsync-bg);
}

.project:nth-child(5) .image-box {
    background-color: var(--lyrics-platform-bg);
}

.project:nth-child(6) .image-box {
    background-color: var(--strapi-terraform-bg);
}

/* Project info section */
.project-info {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-description {
    font-size: 16px;
    max-width: 85%;
    margin: 0;
    line-height: 1.5;
}

.arrow-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: transform 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.project:hover .arrow-icon {
    transform: translateX(5px);
}

/* Project preview image */
.project-preview {
    width: 100%;
    padding: 0 30px 30px;
}

.project-preview img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgb(255 255 255 / 16%);
    transition: transform 0.5s ease;
}

.project:hover .project-preview img {
    transform: scale(1.03);
}

/* Project tech spans */
.project:nth-child(1) span {
    background-color: rgba(255, 255, 255, 0.1);
}

.project:nth-child(2) span {
    background-color: rgba(255, 255, 255, 0.1);
}

.project:nth-child(3) span {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile view details that show below the image */
.project .project-details-low {
    padding: 25px;
    display: none;
    background-color: var(--card-bg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.project .project-details-low #project-title {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.project .project-details-low #project-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    /* background-color: var(--accent-pink); */
    margin-right: 10px;
    border-radius: 50%;
}
.project:nth-child(1) .project-details-low #project-title::before {
    background-color: var(--next-ventures-bg);
}

.project:nth-child(2) .project-details-low #project-title::before {
    background-color: var(--coding-platform-bg);
}

.project:nth-child(3) .project-details-low #project-title::before {
    background-color: var(--file-converter-bg);
}





.project .project-details-low #project-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.project .project-details-low #project-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.project .project-details-low #project-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.project .project-details-low #project-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Project-specific bullet colors for mobile/tablet view */
.project:nth-child(1) .project-details-low #project-features li::before {
    background-color: var(--next-ventures-bg);
}

.project:nth-child(2) .project-details-low #project-features li::before {
    background-color: var(--coding-platform-bg);
}

.project:nth-child(3) .project-details-low #project-features li::before {
    background-color: var(--file-converter-bg);
}



.project .project-details-low .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.project .project-details-low .project-tech span {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.1);
}

.project .project-details-low .project-links {
    display: flex;
    gap: 15px;
}

.project .project-details-low .project-link {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    flex: 1;
}

.project .project-details-low .project-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Sticky Project Card (Right Side) */
.project-card {
    position: sticky;
    top: 100px; /* Changed from 50% transform to fixed position from top */
    transform: none; /* Remove the transform that was moving it up */
    width: 31%;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: fit-content; /* Ensure it only takes the height it needs */
}


.project-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#project-title {
    font-size: 24px;
    margin: 0;
    display: flex;
    align-items: center;
}

#project-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-pink);
    margin-right: 10px;
    border-radius: 50%;
}

/* Project-specific title bullet colors for desktop sticky card */
.project-card[data-current-project="1"] #project-title::before {
    background-color: var(--next-ventures-bg);
}

.project-card[data-current-project="2"] #project-title::before {
    background-color: var(--coding-platform-bg);
}

.project-card[data-current-project="3"] #project-title::before {
    background-color: var(--file-converter-bg);
}

.project-card[data-current-project="4"] #project-title::before {
    background-color: var(--streamsync-bg);
}

.project-card[data-current-project="5"] #project-title::before {
    background-color: var(--lyrics-platform-bg);
}

.project-card[data-current-project="6"] #project-title::before {
    background-color: var(--strapi-terraform-bg);
}

.external-link {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.external-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#project-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Features List */
#project-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

#project-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

#project-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 8px;
    flex-shrink: 0;
    background-color: var(--accent-pink); /* Default color for bullet points */
}

/* Project-specific bullet colors for desktop sticky card */
.project-card[data-current-project="1"] #project-features li::before {
    background-color: var(--next-ventures-bg);
}

.project-card[data-current-project="2"] #project-features li::before {
    background-color: var(--coding-platform-bg);
}

.project-card[data-current-project="3"] #project-features li::before {
    background-color: var(--file-converter-bg);
}

.project-card[data-current-project="4"] #project-features li::before {
    background-color: var(--streamsync-bg);
}

.project-card[data-current-project="5"] #project-features li::before {
    background-color: var(--lyrics-platform-bg);
}

.project-card[data-current-project="6"] #project-features li::before {
    background-color: var(--strapi-terraform-bg);
}



/* Tech Stack */
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tech span {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

/* Responsive Design *//* Add these updated styles to your existing CSS */

/* Fix for the sticky card position */

/* Fix for responsive layout issues */


/* Fix for smaller screens */













/* General styling for the skills section */
#skills {
    /* background-color: #e64ca0; */
    position: relative;
    /* margin-top: 10vw; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2vw 5vw;
    /* background-color: #000000; White background for the light theme */
    opacity: 1;
    height: 150vh;
    transform: scale(0.9);
    transition: all 0.5s ease-in-out;
}

/* Container for the skill section header image */
.skills-header {
    position: relative;
    width: 100%;
    max-width: 380px;
    /* margin-bottom: -12px; */
    overflow: hidden;
    height: 32%;
}
.skills-header-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* Or adjust based on the size you want */
    /* height: auto; Ensure the aspect ratio is maintained */
    z-index: 1;
    pointer-events: none; /* Disable interaction with the image */
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 60%); /* Fading effect at the bottom */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 60%); /* For WebKit browsers */
}

/* Skill section title */
.skills-header h2 {
    position: relative;
    text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05), 0px 8px 30px rgba(0, 0, 0, 0.25);
    font-size: 4vw;
    text-align: center;
    top: 55%;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    padding-bottom: 1vw;
    z-index: 30;
    color: #333; /* Dark text for light theme */
    /* margin-bottom: 0;
    margin-top: 1vw; */
}

.skills-title .subheading {
    font-size: 1vw;
    font-weight: 200;
    color: #efefef;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.skills-title .main-title {
    font-size: 4vw;
    color: #14CF93;
}

/* Overlay for image */
.overlay {
    background: linear-gradient(to bottom, #00000000, rgb(17 17 17 / 0%), #0a0a0a);;
    position: absolute;
    inset: -5px;
    z-index: 20;
}

/* Container for skill icons */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5vw;
}

/* Skill item styling */
.skill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc; /* Light background color for items */
    color: #333; /* Dark text color */
    border-radius: 0.75rem;
    padding: 0.75vw 1.5vw;
    text-align: center;
    font-size: 1.2vw;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

/* Skill item hover effect */
.skill-item:hover {
    opacity: 1;
    transform: translateY(0);
}

.skill-item .skill-icon {
    margin-right: 0.5vw;
}

/* Animation for revealing skills */
#skills.visible {
    opacity: 1;
    transform: scale(1);
}












/* About Section Styling */
.about-section {
    /* background-color: #0066ff; */
    background-color: #050505;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

.about-content {
    flex: 1;
    max-width: 640px;
}

.subtitle {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 24px;
    display: block;
}

.main-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.highlight-container {
    display: block;
}

.secondary-text {
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(90deg, #e64ca0 0%, #ff7e5f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.bio-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.bio-text p {
    margin-bottom: 20px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.profile-image {
    flex-shrink: 0;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
/* Responsive styles */






/* Contact */
.container {
    background-image: url('./asset/imgs/cta.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    pointer-events: none; /* Allow clicks to pass through to game area */
}

.logo {
    width: 60px;
    height: 60px;
    background-color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    border: 2px solid #1a1a1a;
    position: relative;
}

.logo-text {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.highlight {
    color: #f0f0f0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: rgba(40, 40, 40, 0.7);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto; /* Enable clicking on the button */
}

.cta-button:hover {
    background-color: rgba(60, 60, 60, 0.8);
}

.arrow {
    margin-left: 0.5rem;
}

.game-ball {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #0a58ca;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    user-select: none;
    box-shadow: 0 0 20px rgba(10, 88, 202, 0.7);
    z-index: 10;
    cursor: grab;
    line-height: 1.2;
}

.game-ball:active {
    cursor: grabbing;
}

.orbit-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotate 12s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.description {
    max-width: 600px;
    margin: 1rem auto;
    line-height: 1.6;
    color: #ccc;
}




/* Footer */
.footer {
    margin-top: auto;
    padding: 5rem 2rem;
    background-color: #000;
    color: #fff;
    border-top: 1px solid #222;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand {
    grid-column: 1 / 2;
}

.footer-brand h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    color: #666;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #fff;
}

.footer-nav {
    grid-column: 2 / 3;
}

.footer-links {
    grid-column: 3 / 4;
}

.footer-contact {
    grid-column: 4 / 5;
}

.footer-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #aaa;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-email:hover {
    text-decoration: underline;
}

.email-icon {
    width: 18px;
    height: 18px;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #222;
}
