/* Canvas Fullscreen Background */
canvas#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}




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

body {
    font-family: 'Poppins', sans-serif; /* Add Google Font if needed */
    background-color: #070726; /* Light grey background */
    color: #2c3e50; /* Default text color */
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    justify-content: flex-start;
}


/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #2c3e50;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #e67e22, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    transition: color 01s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

/* Hover Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #e67e22;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #e67e22;
    transform: scale(1.1);
}

/* Active Link Style */
.nav-links a.active {
    font-weight: bold;
    color: #e67e22;
}



/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo h1 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #e67e22, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s infinite;
}

.profile-container {
    position: relative;
    display: inline-block;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    /* border: 2px solid #fff; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.edit-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    bottom: 0;
    right: 0;
    background-color: #fff;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: none;
    cursor: pointer;
}

.profile-container:hover .edit-icon {
    display: block;
}

.profile-container:hover .profile-picture {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
/* Content Container Styling */
.content-containerMain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Space between left and right sections */
    padding: 20px;
}

/* Left Side (Picture) */
.left-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-pictureMain {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 5px solid #f1c40f;
    object-fit: cover;
}

/* Right Side (Skills and About) */
.right-side {
    flex: 2;
}

/* Skills Styling */
.skills-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    display: flex;
    align-items: center;
    justify-content: space-between-2; /* Space between logo and skill name */
    background-color: #f1c40f;
    color: #000000;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    width: 500px; /* Fixed width */
    height: 50px; /* Fixed height */
    box-sizing: border-box; /* Ensure padding doesn't affect size */
}

.skills-list li:hover {
    background-color: #e67e22;
}

/* Skill Logo */
.skill-logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
/* Popup Animation */
.popup-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.popup-container img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
}

/* Show Popup */
.popup-container.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
/* Social Media Container */
.social-media {
    position: fixed; /* Keeps the icons fixed on the screen */
    right: 20px; /* Position 20px away from the right edge */
    top: 200px; /* Start 100px from the top */
    display: flex;
    flex-direction: column; /* Arrange icons in a vertical line */
    gap: 15px; /* Space between the icons */
}

/* Social Media Icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circular icons */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}
/* About Page Container */
.about-container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

/* Education Section */
.education-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Education Image */
.edu-image {
    width: 450px;
    height: 300px;
    margin-right: 20px;
    border-radius: 5px;
    object-fit: cover;
}

/* Education Details */
.edu-details {
    flex-grow: 1;
}

.edu-details h3 {
    margin: 0;
    font-size: 18px;
}

.edu-details a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.edu-details a:hover {
    color: #ffffff;
}

.edu-details p {
    margin: 10px 0;
}
.profile-section1 {
    text-align: center;
    padding: 30px;
    background: #e8f1ff;
    margin: 30px auto;
    border-radius: 1px;
    animation: fadeInUp 1.5s ease;
}
.profile-links {
    margin-top: 15px;
}

.profile-link {
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.fiverr {
    background: #1dbf73;
}

.fiverr:hover {
    background: #17a566;
}

.upwork {
    background: #6fda44;
}

.upwork:hover {
    background: #5fb638;
}