* {
    margin: 0;
    text-decoration: none;
    padding: 0;
    box-sizing: border-box;
    font-family: "Unlock", serif;
    /* font-weight: 400; */
}

body {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
}

/* Responsive Navbar */
.navbar {
    background-color: rgb(30, 30, 60); 
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}
.signature_logo{
    width: 60%;
    background-color: #b4b3b3;
}
.navbar h1 {
    color: #fff;
    font-size: 1.8rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: rgb(255, 90, 96); 
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
}

/* Media Query for small screens */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: rgb(30, 30, 60);
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        height: calc(100vh - 60px);
        justify-content: center;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        position: relative;
    }

    .navbar h1 {
        flex-grow: 1;
    }
}

/* Hero Section */
.hero {
    /* margin-top: 0; */
    height: 100vh;
    background: url('hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000000;
}

.hero img {
    /* margin-top: ; */
    height: 20vh;
    width: 20vh;
    border-radius: 50%;
    border: 3px solid rgb(30, 30, 60);
}

.hero h2 {
    font-size: 2.5rem;
    margin-top: 1rem;
    /* font-weight: lighter; */
    color: #333;
}

.hero p {
    font-size: 1rem;
    margin: 1rem 0;
    color: grey;
    font-family: "Baloo 2", sans-serif;
}

.btn {
    background-color: #fff;
    color: rgb(255, 90, 96);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    font-family: "Baloo 2", sans-serif;
}

.btn:hover {
    background-color: rgb(255, 70, 80);
    color: #fff;
}

/* About Me Section */
.about {
    padding: 4rem 2rem;
    background-color: #f7f7f7;
    text-align: center;
    color: #333;
}
.about h2{
    font-size: 2.5rem;
    color: #000000;
}
.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: grey;
    font-family: "Baloo 2", sans-serif;
}

/* Skills Section */
.skills {
    padding: 4rem 2rem;
    text-align: center;
}

.skills h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    /* color: grey; */
}
.skills-logo{
    height: 3rem;
    width: 3rem;
}
.skill-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    /* color: grey; */
}
.skills p{
    color: grey;
    font-family: "Baloo 2", sans-serif;
}
/* Projects Section */
.projects {
    padding: 4rem 2rem;
    background-color: #f1f1f1;
    text-align: center;
    margin-top: 0;
}

.project-list {
    padding-top: 3%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-item {
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.project-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.projects h2{
    margin-top: 0%;
    padding-top: 0;
    font-size: 2.5rem;
    color: #000000;
    padding-bottom: 6%;
}
.projects p{
    color: grey;
    font-family: "Baloo 2", sans-serif;
}
.project-item{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items:center;
    position: relative;
}
.Redditlicious::before{
    content: "";
    background: url('sources/Redditlicious.png');
    position:absolute;
    background-size: cover;
    background-position: top;
    height: 100%;
    width: 100%;
    z-index: 2;
    opacity: 1;
}
#LetsDoIt::before{
    content: "";
    background: url('sources/Letsdoit.png');
    position:absolute;
    background-size: cover;
    background-position: top;
    height: 100%;
    width: 100%;
    z-index: 2;
    opacity: 1;
}
#VibeMatch::before{
    content: "";
    background: url('sources/VibeMatch.png');
    position:absolute;
    background-size: cover;
    /* background-repeat: no-repeat; */
    background-position: center;
    height: 100%;
    width: 100%;
    z-index: 2;
    opacity: 1;
}
#DamodarBhaiya::before{
    content: "";
    background: url('./sources/Damodar\ \(1\).png');
    position:absolute;
    background-size: cover;
    /* background-repeat: no-repeat; */
    background-position: center;
    height: 100%;
    width: 100%;
    z-index: 2;
    opacity: 1;
}
#Real-E::before{
    content: "";
    background: url('sources/Real-E.png');
    position:absolute;
    background-size: cover;
    /* background-repeat: no-repeat; */
    background-position: center;
    height: 100%;
    width: 100%;
    z-index: +2;
    opacity: 10;
}
#resume::before{
    content: "";
    background: url('sources/Resume.png');
    position:absolute;
    background-size: cover;
    /* background-repeat: no-repeat; */
    background-position: top;
    height: 100%;
    width: 100%;
    z-index: +2;
    opacity: 1;
}
.projectLinks{
    display: flex;
    justify-content: end;
    /* width: 2rem; */
    height: 4rem;
}
.projectLinks a{
    padding-right: 10px;
    padding-left: 10px;
    margin: 1rem;
    margin-bottom: 0;
    font-family: "Baloo 2", sans-serif;
}
.btn {
    background-color: rgb(30, 30, 60);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    z-index: 3;
}

.btn:hover {
    background-color: rgb(255, 70, 80);
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact button {
    width: 100%;
    padding: 0.75rem;
    background-color: rgb(30, 30, 60);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}
.contact h2{
    color: #000000;
    font-size: 2.5rem;
}
.contact button:hover {
    background-color: rgb(255, 70, 80);
}

/* connect me */
#conectme{
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 2%;
    flex-wrap: wrap;
}

#conectme img{
    height: 2.5rem;
    width: 2.5rem;
    border: 2px double rgb(30, 30, 60);
    border-radius: 50%;
    background-color: rgba(30, 30, 60, 0.148);
}


/* Footer */

footer {
    margin-top: 0;
    padding: 1rem;
    text-align: center;
    background-color: rgb(30, 30, 60);
    color: #fff;
    font-size: 0.9rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .navbar h1 {
        font-size: 1.5rem;
    }

    .skills-list {
        grid-template-columns: 1fr;
    }

    .project-list {
        grid-template-columns: 1fr;
    }

    .contact input, .contact textarea, .contact button {
        font-size: 1rem;
    }
}

.education {
    padding: 4rem 2rem;
    background-color: #f7f7f7;
    text-align: center;
}

.education h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #000000;
}

.education-item {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: grey;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.education h3{
    font-size: 1.5rem;
    color: rgb(68, 67, 67);
}
.education p{
    font-family: "Baloo 2", sans-serif;
}