body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-image: url('photo_2025-02-23_10-47-34.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    padding-left: 5px;
}

header {
    color: white;
    padding: 10px 20px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    margin-left: 20px;
}

header .logo img {
    height: 100px;
    width: 100px;
    object-fit: contain; 
    border-radius: 0; 
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

header nav ul li {
    margin: 0 20px; /* زيادة المسافة بين العناصر */
}

header nav ul li a {
    color: rgb(13, 0, 134); 
    font-weight: bold; 
    text-decoration: none;
    font-size: 1.3em; /* زيادة حجم الخط */
    transition: color 0.3s ease;
    padding: 10px; /* إضافة padding لجعل الزر أكبر */
}

header nav ul li a:hover {
    color: #c3c308;
}

.hero {
    padding: 100px 20px;
    border-radius: 10px;
    max-width: 800px;
    text-align: left;
}

.hero h1 {
    margin: 0;
    font-size: 4em; /* زيادة حجم الخط */
    font-weight: bold; /* جعل الخط عريض */
    color: rgb(13, 0, 134);
}

.hero p {
    font-size: 2em; /* زيادة حجم الخط */
    margin-top: 10px;
    font-weight: bold; /* الخط عادي */
    color: rgb(0, 0, 0);
}

.get-started-btn {
    display: inline-block;
    padding: 15px 30px;
    background: radial-gradient(#72c6ea, #1b23f9, rgb(0, 179, 255));
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.5em;
    transition: background-color 0.3s ease;
    position: absolute;
    bottom: 80px;
    left: 40px;
    font-weight: bold;
}

.get-started-btn:hover {
    background-color: #fe0202;
}