
 body {
    margin: 0; /* إزالة الهوامش لجعل الفيديو يغطي الشاشة بالكامل */
}

/* فيديو الخلفية */
#hero {
    position: relative;
    width: 100%;
    height: 100vh; /* يجعل الفيديو يغطي الشاشة بالكامل */
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto; /* الحفاظ على الأبعاد الأصلية للفيديو */
    height: 100%; /* يغطي الطول بالكامل */
    min-width: 100%; /* يغطي العرض بالكامل */
    object-fit: cover; /* يجعل الفيديو يغطي المساحة بالكامل بدون تشويه */
    transform: translate(-50%, -50%); /* يوسّط الفيديو */
    z-index: 1;
}

/* محتوى النص فوق الفيديو */
#hero .container {
    position: relative;
    z-index: 2;
}

#hero h1, #hero p {
    color: white;
}

#hero .btn-get-started {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
}

#hero .btn-watch-video {
    margin-left: 15px;
    color: white;
    margin-right: 5px;
}

    #hero .btn-watch-video i {
        margin-right: 5px;
    }

