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

body {
    font-family: 'Lucida   ', monospace;
    background-color: #f0f0f0;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fc4a4a;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

nav ul {
    list-style: none;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffb3b3;
}

.profile {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust as needed */
    transform: translateY(-50%);
    cursor: pointer;
}


    
.move {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
    
}


.move-c {
    max-width: 80%;
    max-height: 80%;
  object-fit: cover;

}




.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    
}


#move-toggle {
    display: none;
}


#move-toggle:checked + .move {
    display: flex;
}


section {
    padding: 100px 0;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

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

.bio {
    background-color: #f9f9f9;
    border: 1px solid transparent; /* Set border initially to transparent */
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease; /* Add border-color to the transition */
}

.bio p {
    font-size: 16px;
    line-height: 1.6;
}

.bio p:first-child {
    margin-top: 0;
}

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

/* Animation */
.bio:hover {
    transform: scale(1.05);
    border-color: #ffd700; /* Change border color on hover */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); /* Add a glowing effect with box-shadow */
}
.project-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.project {
    background-color: #f9f9f9;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 20px;
    width: calc(50% - 15px); /* Adjust width to fit two projects with a small gap */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.project h3 {
    margin-top: 0;
}

.project p {
    margin-bottom: 0;
}

/* Animation */
.project:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.skill-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.skill {
    background-color: #f9f9f9;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 20px;
    width: calc(50% - 15px); /* Adjust width to fit two skills with a small gap */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.skill img {
    max-width: 50px;
    margin-bottom: 10px;
}

.skill h3 {
    margin-top: 0;
}

.skill p {
    margin-bottom: 0;
}

/* Animation */
.skill:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.experience-container {
    margin-top: 30px;
}

.experience {
    background-color: #f9f9f9;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.experience h3 {
    margin-top: 0;
}

.experience p {
    margin-bottom: 10px;
}

.experience a {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
}

.experience a:hover {
    text-decoration: underline;
}


.experience:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}


#contact {
    background-color: #f9f9f9;
    padding: 50px 0;
}

#contact .container {
    max-width: 1200px;
    margin: 0 auto;
}

#contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact-form {
    width: 45%;
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background-color: #f8f9fa; 
    color: #333; 
    border: 2px;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

.contact-form button:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}



.social-links {
    width: 45%;
}

.social-links .social {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links .social i {
    font-size: 24px;
    margin-right: 15px;
    color: #333;
    transition: transform 0.3s ease;
}

.social-links {
    text-align: center;
    margin-top: 30px;
}

.social-links h3 {
    margin-top: 0;
    margin-bottom: 10px;
}


.social {
    display: flex;
    gap: 15px;
    justify-content: center; 
}

.social-item {
    display: flex;
    align-items: center;
}

.social-box {
    display: flex;
    align-items: center;
    background-color: #f8f9fa; 
    color: #333; 
    border: 1px solid #ddd;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; 
}

.social-box i {
    margin-right: 10px; 
    font-size: 1.5em;
    border-radius: 200px;
    text-decoration: none;
}

.social-box span {
    text-decoration: none; 
    display: inline-block; 
}

.social-box:hover {
    transform: scale(1.05);
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.social-box:link, .social-box:visited, .social-box:hover, .social-box:active {
    text-decoration: none; 
}
