.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Reveal animation style */
.reveal {
    opacity: 1;
    transform: translateY(0);
}
/* Add your CSS styles here to customize your portfolio */

/* Example styles for header and menu */
.header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}
.header a{
    text-decoration: none;
}
.header img{
    border-radius: 50%; /* Makes the image circular */
    border: 2px solid #fff; /* Adds a white border around the image */
    
}
.menu-list {
    display: none;
}

.menu-list.active {
    display: block;
}

/* Example styles for content and card */
.content {
    background-color: #f0f0f0;
    padding: 20px;
    text-align: center;
}

.card {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    text-align: left;
}

/* Add more styles as needed */
/* Reset some default browser styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

/* Header styles */
.header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
}

/* Menu icon styles */
.header img {
    width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 50%;
    border: 2px solid white;
    margin-right: 20px; /* Add some spacing between the image and text */
}

/* Menu styles */
.menu-list {
    display: none;
    text-align: center;
}

.menu-list.active {
    display: block;
}

.menu-list ul {
    list-style: none;
    padding: 0;
}

.menu-list li {
    margin: 10px 0;
    font-size: 1.2rem;
}

/* Content styles */
.content {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

 .content h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}
.cybersecurityprojects h1{
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
}

.content img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border: 1px solid #ccc;
}

/* Programming languages styles */
.programming {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

.programming h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.programming .images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.programming .images img {
    max-width: 100px;
    height: auto;
    margin: 0 10px;
}

.programming p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
}

/* Card styles */
.card {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    margin: 20px;
    text-align: left;
}

.card a {
    text-decoration: none;
    color: #333;
}

.card img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    border: 1px solid #ccc;
    padding-bottom: 10px;
}

.card h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #333;
}

.card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.4;
    padding-top: 20px;
}

/* Contact styles */
.contact {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.contact h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .programming h1 {
        font-size: 1.8rem;
    }

    .card {
        padding: 15px;
        margin: 15px;
    }
}
.contact img {
    height: 30px;
    width:30px;
    padding-top: 10px;
}
#menu li a{
    text-decoration: none;
    color:white
}
#menu li{
   padding-top:10px
}
#menu li a:hover{
    color:yellow
}