.back-button,.up-button{cursor:pointer;transition:opacity .3s ease-in-out}body{background-color:#04092f}.background{position:relative;height:220vh;width:100%;background-image:url(../img/software/bg.webp);background-repeat:no-repeat;background-size:100% 100%}.logo{position:absolute;left:5%;top:2%;width:10%}.back-button{position:absolute;background-color:#f24e1e;border-radius:4px;top:5%;right:10%}.back-button #i{padding:10px 15px;color:#fff;font-size:1.5rem}.header-title .title{position:absolute;top:5%;left:40%;font-weight:500;color:#fff;font-family:"Metal Gear Solid 2";font-size:6.5rem}.software-systems{position:absolute;margin-top:20%;margin-left:12%}.software-systems .card-custom{background-color:transparent!important;border:none!important;width:90%}.software-systems .card-custom img{margin-top:15%}.spicial{width:100%}.software-systems .card-title-custom{color:#ff5b00;font-family:'Keania One-Regular',Helvetica;font-size:5rem}.software-systems p{color:#fff;font-family:Poppins,Helvetica;font-weight:500;font-size:1.2rem}.up-button{display:none;background-color:#fd3900;border-radius:4px;width:50px;height:50px;position:fixed;bottom:20px;right:20px;color:#fff}.up-button:hover{background-color:#f24e1e}.up-button #to-top-button{font-size:1.5rem;margin-left:30%;margin-top:25%}@media screen and (max-width:992px){.header-title .title{top:5%;left:25%;color:#fff;font-size:5.5rem}.logo{left:5%;top:3%;width:15%}.software-systems{position:absolute;margin-top:58%;margin-left:12%}.background{height:320vh;width:100%}}@media screen and (min-width:576px)and (max-width:992px){.background{height:270vh}.header-title .title{top:3%;left:25%;color:#fff;font-size:5.5rem}.logo{left:5%;top:2%;width:15%}.back-button{top:3%}}@media screen and (max-width:576px){.header{position:absolute;top:0;left:0;right:0;bottom:0;height:60%;width:100%}.header-title .title{top:5%;left:25%;font-weight:500;font-size:4rem}.logo{left:5%;top:3%;width:15%}.background{height:390vh}}@media screen and (min-width:300px) and (max-width:450px){.header{position:absolute;top:0;left:0;right:0;bottom:0;height:60%;width:100%}.header-title .title{top:5%;left:25%;font-size:3rem}.logo{left:5%;top:3%}.background{height:340vh}}@media screen and (max-width:768px){.background{height:340vh}}
.hero-tech-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
    margin-right: 23%;
    
}

.hero-logo {
    width: 120px;   /* تصغير اللوجو */
    height: auto;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: flashing 2s infinite; /* استدعاء الانيميشن */
}

@keyframes flashing {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 8px #ff6600, 0 0 12px #ff3300;
    }
    50% {
        opacity: 0.6;
        text-shadow: 0 0 2px #ff6600;
    }
}


.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(45deg, black, #ff3300);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    min-width: 160px;
    text-align: center;
}

.hero-btn:hover {
    background: linear-gradient(45deg, #ff3300, #cc0000);
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
