*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar{
    background: #0a1f44;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
}
.logo{
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'archivoblack';
    color: white;
}
.logo h3{
    color: white;
}
.nav-links{
    list-style: none;
    display: flex;
}
.nav-links li{
    display: inline-block;
    margin: 0 15px;
}
.nav-links a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    
}
.nav-links a:hover{
    color: rgb(0, 238, 255);
}
.menu-icon{
    display: none;
    flex-direction: column;
    cursor: pointer;
}

@media (max-width:768px) {
    .menu-icon{
        display: flex;
    }
    .nav-links{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: black;
        text-align: center;
    }
    .nav-links li{
        margin: 10px 0;
    }
    .menu-toggle:checked + .nav-links{
        display: flex;
    }
}
.Profile{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: linear-gradient(180deg , #0a1f44 , rgb(249, 249, 249));
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 100px,20px,50px;
}
.buttons a{
    color: rgb(0, 0, 0);
}
.container{
    max-width: 800px;
    width: 100%;
}
.profile-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-img{
    width: 180px;
    height: 180px;
    border: 5px solid rgb(131, 181, 255);
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 0 20px rgb(0, 242, 255);
    transition: transform 0.3s ease-in-out;
}
.profile-img:hover{
    transform: scale(1.1);
}
h3{
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(0, 0, 0);
}
h1{
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.highlight{
    color: rgb(255, 255, 255);
}
p{
    font-size: 1.1rem;
    max-width: 800px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.buttons{
    gap: 15px;
    margin-top: 10px;
}
.btn{
    text-decoration: none;
    background: rgba(255, 0, 0, 0);
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
    display: inline-block;
}
.hire-me{
    background: transparent;
    border: 2px solid  rgb(0, 0, 0);
    box-shadow: 0 0 10px black;
}
.hire-me:hover{
    background:rgb(255, 255, 255) ;
    color: rgb(0, 0, 0);
    transform: scale(1.2);
}
.download-cv{
    background: transparent;
    border: 2px solid  rgb(0, 0, 0);
    box-shadow: 0 0 10px black;
}
.download-cv:hover{
    background:rgb(255, 255, 255) ;
    color: rgb(0, 0, 0);
    transform: scale(1.1);
}

/* education section */
.education {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.education h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.education .container {
    width: 80%;
    margin: auto;
}

.education-item {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #007bff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
}

.education-item h3 {
    font-size: 1.8rem;
    color: #007bff;
}

.education-item p {
    font-size: 1rem;
    color: #555;
}

/* skill section */
.skills {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.skills h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skills .container {
    width: 80%;
    margin: auto;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, background 0.3s;
    text-align: center;
}

.skill-item h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.skill-item p {
    font-size: 1rem;
    color: #555;
}

.skill-item:hover {
    transform: scale(1.05);
    background: #eef5ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* project section */
.projects {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.projects h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects .container {
    width: 80%;
    margin: auto;
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s;
    text-align: center;
    overflow: hidden;
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.project-item h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin: 15px 0;

}

.project-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    padding: 0 10px;
}

.project-item .btn {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

.project-item .btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.project-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.project-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* contact section */
.contact {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact .container {
    width: 80%;
    margin: auto;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border: 1px solid #007bff;
    outline: none;
}

textarea {
    resize: none;
}

.contact-form .btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact-form .btn:hover {
    background: #0056b3;
}

.contact-info {
    margin-top: 30px;
}

.contact-info p {
    font-size: 1rem;
    color: #333;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact .container {
        width: 90%;
    }
}

/* footer section */
.footer {
    background-color: #0a1f44;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}
.footer div {
    flex: 1;
    padding: 10px;
    text-align: center;
}
.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}
.quick-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 5px 0;
}
.quick-links a:hover {
    text-decoration: underline;
}
.social a {
    margin: 0 10px;
    display: inline-block;
}
.social img {
    width: 30px;
    height: 30px;
}
.footer hr {
    width: 100%;
    border: 0;
    height: 1px;
    background-color: white;
    margin: 20px 0;
}
.copyright {
    text-align: center;
    font-size: 14px;