* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    scrollbar-color:#D2691E;
}
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    min-height: 100vh;
    display: flex;
}

.sidebar {
    width: 250px;
    background: rgba(139, 69, 19, 0.8);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: url('Abdullah.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 30px;
    border: 5px solid rgba(6, 4, 4,0.8);
    object-fit: contain;
}

.nav-menu {
    list-style: none;
    width: 100%;
}

.nav-menu li {
    margin-bottom: 20px;
}
.nav-menu li a:hover{
    opacity: 50%;
    color:#D2691E;
}

.nav-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

.main-content {
    margin-left: 250px;
    padding: 40px 60px;
    flex: 1;
    background: rgba(255,255,255,0.95);
    min-height: 100vh;
}

.header {
    margin-bottom: 40px;
}

.name {
    font-size: 4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.name .first-name {
    color: #333;
}

.name .last-name {
    color: #D2691E;
}

.title {
    font-size: 1.8rem;
    color: #D2691E;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-info {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-info a {
    color: #D2691E;
    text-decoration: none;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #D2691E;
}

.social-link img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.skills-cloud {
    margin: 40px 0;
    text-align: center;
    padding: 20px;
    background: rgba(210, 105, 30, 0.1);
    border-radius: 10px;
}

.skill-word {
    display: inline-block;
    margin: 5px 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.skill-large { font-size: 2.5rem; color: #8B4513; }
.skill-medium { font-size: 2rem; color: #D2691E; }
.skill-small { font-size: 1.5rem; color: #CD853F; }
.skill-xs { font-size: 1.2rem; color: #DEB887; }

.projects-section {
    margin-top: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.project-item {
    
}

hr{
    margin-top:40px;
}
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.project-icon {
    color: #D2691E;
    font-size: 1.5rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}
 
.live-badge {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 40px;
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    padding-bottom: 40px;
}

.education-section{
    margin-top: 60px;
}
.education-item{
    margin-bottom: 24px;
}
.education-header{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: space-between;
}
.education-icon{
    color: #D2691E;
    font-size: 1.5rem;
}
.education-title{
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}
.education-description{
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}
.degree-info{
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 12px;
    display: inline-block;
}
.date{
    font-size: 1.1rem;
    font-size: large;
    color: #D2691E;
}
.skills-section{
    margin-top: 60px;

}
.skills-title{
    font-size: 40px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.skills-description{
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}
.intrests-section{
    margin-top: 60px;
}
.intrests-description{
    font-size: 1rem;
    color: #555;
    text-align: left;
}

.contact-section{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 

}
.form-row{
    width: 500px;
}
.form-row{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    color: #555;
}
.form-row label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-row input, .form-row textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    opacity: 50%;
    } 
#title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    }
#description {
    opacity: 50%;
    min-height: 100px;
    resize: vertical;
    }

form {
    max-width: 500px;
    }
.submit-btn{
    height: 35px;
    width: 90px;
    background-color: #D2691E;
    color: white;
    border: #D2691E;
    border-radius: 4px; 
}
.submit-btn:hover{
    background-color: #bb6221;
    border: #bb6221;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: relative;
        height: auto;
        padding: 20px;
    }
    
    .main-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .title {
        font-size: 1.3rem;
    }
}
