/* Start Header */
header {
    background-color: unset;
}
/* End Header */

/* Start Landing */
.landing {
    min-height: 100vh;
    background-image: url(images/earth1.jpg);
    background-size: cover;
    position: fixed; 
    left: 0;
    top: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0;
}

.landing .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparent-secondary-color);
    z-index: 1;
}

.landing #container{
    width: 100%;
    max-width: 700px;
    margin: 1em auto;
    position: absolute;
    top: 24%;
    left: 35%;
    z-index: 2;
}

.landing .flight {
    position: absolute;
    left: 33%;
    top: 25%;
    z-index: 2;
    width: 35%;
    height: 70%;
}

/* .landing #plan {
    animation: rotate 2s 1 ease-in-out;
} */

/* .landing #left, */
.landing #html-spinner {
    animation: opacity 2.5s 1 ease-in-out;
}

.landing #html-spinner img {
    width: 70%;
    height: 70%;
}
  
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 1024px) and (max-width: 1300px) {
    .landing .flight {
        left: 25%;
        width: 50%;
    }
    .landing #html-spinner img {
        position: fixed;
        left: 25%;
        width: 50%;
        height: 70%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .landing .flight {
        left: 10%;
        width: 85%;
        height: 60%;
    }

    .landing #html-spinner img {
        position: fixed;
        left: 18%;
        width: 70%;
        height: 60%;
    }
}

@media (max-width: 767px) {
    .landing .flight {
        left: 13%;
        top: 30%;
        width: 80%;
        height: 50%;
    }

    .landing #html-spinner img {
        width: 60%;
        height: 50%;
        position: fixed;
        top: 30%;
        left: 25%
    }
}
/* End Landing */

.white {
    height: 100vh;
}

/* Start About-us */
.about-us {
    min-height: 100vh;
    background-color: var(--transparent-secondary-color);
    background-image: url("images/cover1.jpg");
    background-size: cover;
    position: relative;
    opacity: 0.9;
}

.about-us .about-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparent-secondary-color);
    opacity: 1;
}

.about-us .text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    padding: 50px;
    background-color: rgba(0, 24, 35, 1);
    color: var(--main-color);
    display: flex;
    justify-content: flex-end;
}

.about-us .text .content {
    max-width: 500px;
}

@media (max-width: 767px) {
    .about-us .text {
      width: 100%;
    }
    .about-us .text .content {
      max-width: 100%;
    }
}

.about-us .text .content h2 {
    font-size: 32px;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 20px;
}

.about-us .text .content p {
    font-size: 15px;
    line-height: 2;
    color: white;
}
/* End About-us */

/* Footer Styles */
footer {
    position: relative;
    margin-top: 700px;
    width: 100%;
    background-color: rgba(0, 20, 38, 0.95);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
    color: white;
    z-index: 2;
}

footer .footer-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
}

footer .title {
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
}

footer .logo img{
    width: 70%;
    height: 50%;
    margin-bottom: 20px;
}

footer .logo p{
    font-size: 14px;
} 

footer .footer-content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
    margin-top: 30px;
}

footer .footerHUL {
    text-align: center;
    flex: 1;
    margin-right: 50px;
    min-width: 200px;
}

footer .footerHUL h3 {
    margin-bottom: 40px;
    margin-left: 25px;
    font-size: 20px;
    background: var(--main-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

footer .footerUrl li {
    list-style: none;
    margin-bottom: 50px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

footer .footerUrl li:hover,
footer a:hover {
    cursor: pointer;
    color: var(--main-color);
}

footer .right li {
    margin-bottom: 57px;
}

footer .footerUrl i {
    margin-right: 10px;
}

footer .link-active {
    color: var(--main-color);
    text-decoration: underline;
}

footer a {
    text-decoration: none;
    color: white;
}

footer i {
    color: white;
    font-size: 20px;
}

/* تحسين dropdown الفوتر لجميع الأجهزة */
footer .dropdown {
    position: relative;
    display: inline-block;
  }
  
  footer .dropbtn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
  }
  
  footer .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    left: 0;
    top: 100%;
  }
  
  footer .dropdown-content a {
    color: var(--secondary-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  footer .dropdown-content a:hover {
    background-color: var(--secondary-color);
    color: var(--main-color);
  }

  footer i img {
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    footer .dropdown .dropbtn {
        color: white;
    }
}