.inter{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
body {
    margin: 0;
    padding: 0;
    background-color: #0a192f;
    color: #ccd6f6;
    display: flex;
    height: 100vh;
    overflow: hidden;
}
.soft-tx-color {
    color: #ccd6f6;
}
.main-color {
    color: #64ffda;
}
.sidebar {
    width: 30%;
    background-color: #112240;
    color: #64ffda;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: width 0.3s ease;
}
.sidebar-content {
    
}
.sidebar h1, .mobile-title {
    font-size: 2.5rem;
    margin-bottom: 0px;
    font-weight: 700;
}
.sidebar h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 400;
    color:#fff;
}
.sidebar p {
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 200;
}
.sidebar .nav {
    list-style: none;
    padding: 0;
}
.sidebar .nav a {
    color: #64ffda;
    text-decoration: none;
    padding: 12px 0;
    font-size: 1.1rem;
    display: block;
    margin: 10px 0;
    transition: color 0.3s;
}
.sidebar .nav a:hover {
    color: #ffffff;
}
.main-content {
    margin-left: 30%;
    width: 70%;
    padding: 40px;
    overflow-y: auto;
}

h2 {
    color: #64ffda;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 400;
}
h3 a, #certifications a {
    text-decoration: none;
    color: inherit;
}
h3 a:hover, #certifications a:hover {
    color: #64ffda;
}
p, li {
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 200;
}
section {
    margin: 60px 0;
}
.project-card {
    background-color: #112240;
    color: #ccd6f6;
    padding: 20px;
    margin: 35px 0;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 5px rgba(0, 255, 218, 0.2);
}
.contact-icons a {
    display: flex;
    align-items: center;
    color: #64ffda;
    text-decoration: none;
    margin: 10px 0;
}
.contact-icons a:hover {
    color: #ffffff;
}
.contact-icons i {
    margin-right: 10px;
    font-size: 30px;
}
.language-list {
    list-style: none;
    padding: 0;
    color: #ccd6f6;
}
.language-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}
.language-list li::before {
    content: "•";
    margin-right: 10px;
    color: #64ffda;
}
.fab , .fa-php {
    font-size: 35px;
    margin-right: 8px;
}
.yii {
    height: 35px;
    width: auto;
    margin-bottom: 20px;
    margin-right: 8px;
}
footer {
    background-color: #112240;
    color: #ccd6f6;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.sidebar .nav a:hover {
    color: #ffffff;
    font-weight: 700;
}
@media (max-width: 768px) {
    .sidebar {
        width: 50%;
        position: relative;
        padding: 20px;
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }
}
.divider {
    margin: 0 8px;
    color: gray;
    font-weight: bold;
    font-size: 20px;
}
.skill {
    padding: 5px;
    margin: 2px 1px;
    font-size: 12px;
    background-color:#64ffda;
    border-radius: 15px;
    min-width: 70px;
    text-align: center;
    color: #0b192f;
}
.skills-container {
    justify-content: space-between;
    margin-bottom: 10px;
}

.dn {
    display: none !important;
}

