﻿
:root {
    --color: #3B1868;
    --background-color: #4f037b39;
}

h2 {
    color: rgb(150 45 247) !important;
}

/* Sidebar Menu for Mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        Z-INDEX: 2;
        position: fixed;
        top: 0px;
        left: -250px;
        width: 250px;
        background-color: var(--color);
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
        transition: left 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        padding-top: 60px;
    }

        .navbar-collapse.show {
            left: 0;
        }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-link {
        font-size: 18px;
        font-weight: bold;
        transition: all 0.3s;
    }

        .nav-link:hover {
            padding-left: 15px;
            color: #a8dadc !important;
        }

    .navbar-toggler {
        border-color: none;
        padding: 0.5rem;
        background-color: var(--color);
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .navbar-toggler:focus {
            outline: none;
        }
}

.navbar-toggler {
    
}

.navbar-toggler-icon {
    border-color: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    cursor: pointer;
}

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon div {
        content: "";
        display: block;
        width: 100%;
        height: 3px;
        border-color: none;
        background-color: #fff; 
        border-radius: 10px; 
        transition: all 0.3s ease;
    }


.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon div {
    opacity: 0;
}

.color {
    background-color: var(--color);
}

.navbar .container-fluid {
    justify-content: center;
}

    .navbar .container-fluid .center {
        display: flex;
        align-items: center;
    }

    .navbar .container-fluid .Profile {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .navbar .container-fluid .Profile .profile-picture {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid #ddd;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.Header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 500px;
    overflow: hidden;
}

    .Header .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .Header .main-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 50px;
        color: #fff; 
        z-index: 1; 
    }

    .Header .main-button .button {
        background-color: var(--color);
        color: #ddd;
        border-radius: 20px;
        width: 120px;
        height: 40px;
        align-items: center;
        justify-content: center;
        display: flex;
        z-index: 1; 
    }



.w{
    width:370px


}


/* تنسيق الكروت */
.Features {
    padding: 50px 0;
}

.Feature {
    background: linear-gradient(135deg, #0d0d0e 0%, #9b30ff 50%, #6a0dad 100%);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.5);
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px) rotate(10deg) scale(0.9);
}

    .Feature img {
        max-width: 100px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .Feature h5 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #ffffff; 
    }

    .Feature p {
        font-size: 1rem;
        color: #f3e5ff;
        line-height: 1.6;
    }

    .Feature.visible {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }

.card-hover:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.7); 
}

    .card-hover:hover img {
        transform: scale(1.1);
    }

@keyframes glowing {
    0% {
        box-shadow: 0 0 10px rgba(106, 13, 173, 0.7);
    }

    50% {
        box-shadow: 0 0 20px rgba(106, 13, 173, 1);
    }

    100% {
        box-shadow: 0 0 10px rgba(106, 13, 173, 0.7);
    }
}

.Feature:hover {
    animation: glowing 1.5s infinite alternate;
}




/* Call to Action */
.CallToAction {
    background-color: var(--color);
    text-align: center;
    padding: 50px 20px;
    position: relative;
}

    .CallToAction h2 {
        font-weight: bold;
        color: #ffffff; 
    }

    .CallToAction .btn {
        background-color: #a8dadc;
        color: #457b9d;
        border-radius: 30px;
        transition: all 0.3s ease;
        padding: 12px 25px;
        font-size: 1.2rem;
        font-weight: bold;
    }

        .CallToAction .btn:hover {
            background-color: #1d3557;
            color: #f1faee;
        }

    .CallToAction img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 20px;
        position: relative;
        z-index: 2;
    }

    .CallToAction .glow-effect {
        width: 80%;
        height: 20px;
        background: rgba(106, 13, 173, 0.7);
        filter: blur(15px);
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        border-radius: 50%;
        animation: glowing 1.5s infinite alternate;
    }

@keyframes glowing {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(106, 13, 173, 0.6);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 25px rgba(106, 13, 173, 1);
    }

    100% {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(106, 13, 173, 0.6);
    }
}




/* Footer */

footer a:hover {
    text-decoration: underline;
}

/* Loading Overlay */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(111, 66, 193, 0.9);
    z-index: 1000;
    text-align: center;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    animation: fadeIn 1s ease-in-out;
}

    #loading img {
        width: 200px;
        height: 200px;
        animation: spin 2s linear infinite;
    }

#loading-text {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
    color: #fff;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.ImageTextSection {
    padding: 50px 0;
    background-color: azure;
    text-align: center;
    position: relative;
}

    .ImageTextSection img {
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.5s ease-in-out;
        display: block;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

        .ImageTextSection img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(106, 13, 173, 0.8);
        }

    .ImageTextSection .glow-effect {
        width: 80%;
        height: 20px;
        background: rgba(106, 13, 173, 0.7);
        filter: blur(15px);
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        border-radius: 50%;
        animation: glowing 1.5s infinite alternate;
    }

@keyframes glowing {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(106, 13, 173, 0.6);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 25px rgba(106, 13, 173, 1);
    }

    100% {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(106, 13, 173, 0.6);
    }
}

.ImageTextSection h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1d3557;
}

.ImageTextSection p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.ImageTextSection strong {
    color: #1d3557;
}

.Services {
    padding: 50px 0;
    background-color: #3b1868; 
}

.Service {
    background: #ccc;
    padding: 25px;
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(148, 0, 211, 0.2);
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.4s ease, filter 0.3s ease; 
    opacity: 0;
    transform: translateY(50px) rotate(10deg) scale(0.9);
}

    .Service img {
        max-width: 100px;
        margin-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(148, 0, 211, 0.2);
    }

    .Service h5 {
        font-size: 1.8rem; 
        margin-bottom: 12px;
        color: #2c3e50;
        font-weight: bold;
        text-transform: uppercase;
    }

    .Service p {
        font-size: 1rem;
        color: #7f8c8d;
        line-height: 1.6;
        font-weight: 400;
    }

    .Service.visible {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }

.card-hover:hover {
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 15px 35px rgba(148, 0, 211, 0.5);
    filter: brightness(1.1);
}

    .card-hover:hover img {
        transform: scale(1.15);
        box-shadow: 0 8px 16px rgba(148, 0, 211, 0.5); 
    }





/* تنسيق Global Coverage */
.GlobalCoverage {
    padding: 50px 0;
    background-color: #0f0035;
}

    .GlobalCoverage h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #1d3557;
    }

    .GlobalCoverage p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

.CoverageCard {
    background: #cccccc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

    .CoverageCard h5 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #457b9d;
    }

    .CoverageCard ul {
        list-style: none;
        padding-left: 0;
    }

        .CoverageCard ul li {
            font-size: 1rem;
            color: #555;
            margin-bottom: 0.5rem;
        }

    /* تأثيرات Scroll */
    .CoverageCard.visible {
        opacity: 1;
        transform: translateY(0);
    }

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}




/* تنسيق Partners Section */
.Partners {
    padding: 80px 0;
    background-color: #cbc5c5;
    overflow: hidden;
    border-top: 5px solid #972ef6;
    box-shadow: 0 4px 8px rgba(255, 111, 97, 0.4);
}

    .Partners h2 {
        font-size: 3rem; 
        margin-bottom: 3rem;
        color: #ff6f61;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        text-shadow: 0 0 10px rgba(255, 111, 97, 0.8), 0 0 20px rgba(255, 111, 97, 0.6);
    }

.Partners {
    padding: 80px 0;
    background-color: #cbc5c5;
    overflow: hidden;
    border-top: 5px solid #962df7;
    box-shadow: 0 4px 8px rgba(255, 111, 97, 0.4);
}

    .Partners h2 {
        font-size: 3rem;
        margin-bottom: 3rem;
        color: #ff6f61;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        text-shadow: 0 0 10px rgba(255, 111, 97, 0.8), 0 0 20px rgba(255, 111, 97, 0.6); 
    }

.partners-slider {
    max-width: 90%; 
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    animation: scroll 12s ease-in-out infinite; 
}

.partner-logo {
    flex: 0 0 auto;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .partner-logo img {
        max-width: 180px; 
        height: auto;
        transition: transform 0.3s ease, box-shadow 0.3s ease; 
    }

    .partner-logo:hover img {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.8); 
    }

@keyframes scroll {
    0% {
        transform: translateX(100%); 
    }

    50% {
        transform: translateX(0); 
    }
    100% {
        transform: translateX(-100%); 
    }
}



/* تنسيق Join Us Section */
.JoinUs {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

    .JoinUs .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.3; 
    }

    .JoinUs .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #495057;
        z-index: 0;
    }

    .JoinUs .container {
        position: relative;
        z-index: 1;
    }

    .JoinUs h2.neon-text {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #fff;
        text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea, 0 0 40px #00ffea;
        animation: neon-glow 1.5s infinite alternate;
    }

@keyframes neon-glow {
    from {
        text-shadow: 0 0 10px #00ffea, 0 0 20px #00ffea, 0 0 40px #00ffea;
    }

    to {
        text-shadow: 0 0 20px #00ffea, 0 0 40px #00ffea, 0 0 80px #00ffea;
    }
}

.JoinUs p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.JoinUs .lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ffea;
}

.JoinUs .image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 234, 0.5);
}

.JoinUs img.hover-effect {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

    .JoinUs img.hover-effect:hover {
        transform: scale(1.1);
        box-shadow: 0 0 40px rgba(0, 255, 234, 0.8);
    }

.JoinUs .btn-neon {
    background-color: transparent;
    border: 2px solid #00ffea;
    color: #00ffea;
    padding: 10px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .JoinUs .btn-neon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: radial-gradient(circle, rgba(0, 255, 234, 0.3), transparent);
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.5s ease;
        z-index: 0;
    }

    .JoinUs .btn-neon:hover {
        background-color: #00ffea;
        color: #000;
        box-shadow: 0 0 20px rgba(0, 255, 234, 0.8);
    }

        .JoinUs .btn-neon:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }

#welcomeMessage {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffffff; 
    overflow: hidden;
    border-right: 0.15em solid blueviolet;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.15em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite, color-change 3.5s linear infinite;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }

    50% {
        border-color: blueviolet;
    }
}

@keyframes color-change {
    0% {
        color:blueviolet;
    }

    50% {
        color:aliceblue;
    }

    100% {
        color:blueviolet;
    }
}

/* تنسيق Video Section */
.VideoSection {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

    .VideoSection .video-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
        transform: perspective(1000px) rotateY(10deg);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

        .VideoSection .video-container:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 0 50px rgba(138, 43, 226, 0.8); 
        }

    .VideoSection .interactive-video {
        width: 100%;
        border-radius: 20px;
        display: block;
        position: relative;
        z-index: 2;
    }

    .VideoSection h2.neon-text {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        color: #fff;
        text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2, 0 0 40px #8a2be2;
        animation: neon-glow 1.5s infinite alternate;
    }

@keyframes neon-glow {
    from {
        text-shadow: 0 0 10px #8a2be2, 0 0 20px #8a2be2, 0 0 40px #8a2be2;
    }

    to {
        text-shadow: 0 0 20px #8a2be2, 0 0 40px #8a2be2, 0 0 80px #8a2be2;
    }
}

.VideoSection p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.VideoSection .lead {
    font-size: 1.2rem;
    font-weight: bold;
    color: #8a2be2;
}

.VideoSection .btn-neon {
    background-color: transparent;
    border: 2px solid #8a2be2;
    color: #8a2be2;
    padding: 10px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .VideoSection .btn-neon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 300%;
        height: 300%;
        background: radial-gradient(circle, rgba(138, 43, 226, 0.3), transparent);
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.5s ease;
        z-index: 0;
    }

    .VideoSection .btn-neon:hover {
        background-color: #8a2be2;
        color: #000;
        box-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
    }

        .VideoSection .btn-neon:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }