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

body {
    position: relative;
    min-height: 100vh;
    background-image: url('images/background.jpg'); /* ✅ ضع الصورة هنا */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    line-height: 1.6;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.6); /* ✅ طبقة شفافة لتوضيح النص */
    z-index: -1;
}

header {
    text-align: center;
    padding: 100px 20px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #eee;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background-color: #ff9800;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #e07b00;
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffcc70;
}

section p, li {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 15px;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    color: #ffcc70;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.3);
}

/* ✅ Skills Section Styling */
#skills {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px 20px;
    text-align: center;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.skill-group {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 30px;
    min-width: 250px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.skill-group:hover {
    transform: translateY(-5px);
}

.skill-group h3 {
    color: #ffcc70;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.skill-group ul {
    list-style: none;
    padding: 0;
}

.skill-group li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #fff;
}
