@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal';
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    scrollbar-width: none;
    transition: all 0.3s ease;

}

body {
    /* background-color: #f5f5f5; */

    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

::-webkit-scrollbar {
    display: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    /* height: 200px; */
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}

header div {
    /* border: 1px solid green; */

    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 400px;
}

header a {
    font-size: 20px;
    color: #8ac14a;
    margin: 0 15px;
}

header a:hover {
    color: #9fe74c;
}

header .right_hyper {
    justify-content: flex-start;
}

header .left_hyper {
    justify-content: flex-end;
}

header .logo img {
    width: 150px;
    height: auto;
}

main {
    width: 100%;
    min-height: 100vh;
}

.landing {
    width:  100%;
    height: 100vh;
    background-image: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0.7)),url('../image/banner-about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.landing h1 {
    font-size: 48px;
    color: #9fe74c;
    margin-bottom: 20px;
}

.landing span {
    font-size: 24px;
    color: #8ac14a;
    max-width: 700px;
}

.sec_video{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 7%;
}

.sec_video .right{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.sec_video .right h3{
    color: #8ac14a;
    margin-bottom: 20px;
}
.sec_video .right h1{
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}
.sec_video .right p{
    color: #555;
    line-height: 1.6;
}

.sec_video .left{
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.sec_video .left video{
    width: 100%;
    height: auto;
}

.sec_photos{
    width: 100%;
    min-height: 700px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 50px 7%;
    margin-top: 70px;
}
.sec_photos h3{
    color: #8ac14a;
    margin-bottom: 20px;
}
.sec_photos h1{
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
}
.sec_photos p{
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    text-align: center;
    margin-bottom: 40px;
}

.sec_photos .display_photos{
    width: 100%;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

.sec_photos .display_photos div{
    width: 25%;
    height: 400px;
    display: flex   ;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    
}
.sec_photos .display_photos div h3 {
    z-index: 2;
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
}
.sec_photos .display_photos div img{
    
    height: 100%;
    transition: transform 0.5s ease;
}
.sec_photos .display_photos div img:hover{
    transform: scale(1.1);
}

.sec_banner{
    width: 100%;
    min-height: 500px;
    margin-top: 70px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../image/prd/xxxx.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 7%;

}
.sec_banner h1{
    font-size: 3rem;
    color: #fff;
    text-align: center;
}
.sec_banner p{
    color: #ddd;
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
}
.sec_banner ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 30px;
}
.sec_banner ul li{
    list-style: none;
    color: #fff;
    font-size: 1.5rem;
}

.reset_up{
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}
.reset_up i{
    font-size: 24px;
}
.reset_up:hover{
    background-color: #0056b3;
}

footer {
    width: 100%;
    background-color: wheat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer .footer-container {
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px 0;
}

footer .footer-container .footer-col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 200px;
}
footer .footer-container .footer-col img{
    width: 250px;
    height: auto;
    margin-bottom: 15px;
}
footer .footer-container .footer-col p{
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    min-width: 200px;
}
footer .footer-container .footer-col h4{
    color: #333;
    margin-bottom: 15px;
}
footer .footer-container .footer-col ul{
    display: flex;
    flex-direction: column;
}
footer .footer-container .footer-col ul li{
    margin-bottom: 10px;
}
footer .footer-container .footer-col ul li i{
    margin-right: 10px;
}

footer .footer-bottom {
    width: 100%;
    border-top: 1px solid #ccc;
    text-align: center;
    padding: 10px 0;
    color: #333;
    font-size: 14px;
}
@media (max-width: 768px) {
    header{
        flex-direction: column;
        padding: 10px 0;
        justify-content: center;
        align-items: center;
        
    }
    header .right_hyper, header .left_hyper{
        justify-content: center;
        min-width: auto;
        margin: 10px 0;
    }
    .landing h1{
        margin-top: 130px;
        font-size: 20px;
    }
    .landing span{
        font-size: 16px;
        padding: 0 20px;
    }
    .sec_video{
        flex-direction: column;
        padding: 30px 5%;
    }
    .sec_video .right, .sec_video .left{
        width: 100%;
        margin-bottom: 30px;
    }
    .sec_video .right h3{
        font-size: 1rem;
    }
    .sec_video .right h1{
        font-size: 2rem;
    }

    .sec_photos{
        padding: 30px 5%;
        
    }
    .sec_photos h3{
        font-size: 1rem;
        width: 100%;
        text-align: start;
        
    }
    .sec_photos h1{
        font-size: 2rem;
        width: 100%;
        text-align: start;
    }
    .sec_photos p{
        font-size: 16px;
        width: 100%;
        text-align: start;
    }
    .sec_photos .display_photos div{
        width: 100%;
        margin-bottom: 20px;
    }
    .sec_photos .display_photos div h3 {
        font-size: 16px;
        width: max-content;
    }
    .sec_banner{
        padding: 30px 5%;
        min-height: auto;
    }
    .sec_banner h1{
        font-size: 1.2rem;
    }
    .sec_banner p{
        font-size: 0.85rem;
    }
    .sec_banner ul{
        gap: 15px;
    }
    .sec_banner ul li{
        font-size: 0.65rem;
        text-align: center;
    }
    footer{
        flex-direction: column;
        align-items: center;
    }
    footer .footer-container{
        flex-direction: column;
        align-items: center;
    }
    footer .footer-container .footer-col{
        align-items: center;
        margin-bottom: 20px;
    }   
}