* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f172a;
    color: white;
    scroll-behavior: smooth;
}

header {
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: #38bdf8;
}

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
}

section {
    padding: 100px 10%;
}

.social-icons{
    margin: 1em;
    /* padding: 1em; */
}

.cur{
    font-family: Verdana;
}

.skills-container{
    display: flex;
    flex-direction: column;
}

.skills-container li{
    list-style: circle;
    margin-left: 0.5em;
    padding: 1em;
}

#education-section {
    /* background-color: #e0f7fa; Light blue background from image */
    padding: 100px 10%;
    font-family: Arial, sans-serif; /* Clean sans-serif font */
    color: #fff;
    margin: auto;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.education-item {
    margin-bottom: 20px;
}

.institution {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.graduation {
    font-size: 14px;
    margin-bottom: 15px;
    color: #d4d4d4;
}

.degree {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 25px;
}

.percentage {
    font-size: 16px;
    margin-bottom: 10px;
}

.divider {
    border: 0;
    border-top: 1px solid #fff; /* Solid black line separator */
    margin: 20px 0;
}
#projects{
    padding: 100px 10%;
}
.projects-container{
   padding: 1em; 
}
.project{
    margin-top: 1em;
}
.project-sub{
    margin-left: 2em;
}

#about,#skills,#certification{
    background-color: #455e9a;
}