
/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

@font-face {
  font-family: Shabnam;
  src: url('font/Shabnam.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Optional but recommended */
}

html, body{
    margin: 0;
    padding: 0;
    font-family: Titillium Web, Shabnam;
    scroll-behavior: smooth;
    font-size:1.5vw;
}


#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(37, 37, 100);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    
}
#loading-overlay img{
    width:10vw;
}

a{
    color: inherit;
    text-decoration: none;
}
ul{
    list-style: none;
    padding: 0;
}
img{
    object-fit: cover;
}

header{
    background: rgba(148, 148, 148, 0.3); /* Semi-transparent white background */
    backdrop-filter: blur(50px); /* Apply blur effect */
    width: 90vw;
    height: 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3vw 5vw;
    color: white;
    position: fixed; /* Fix the header at the top */
    top: 0; /* Stick to the top */
    left: 0; /* Stick to the left */
    transition: transform 0.3s ease;
    font-size: 1.2vw;
    z-index: 1000;
}
header img{
    height: 3vw;
    margin: 0 2vw;
}
header nav ul{
    display: flex;
    list-style-type: none;
}

header nav ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.8vw;
    padding: 0 2vw;
    transition: border 0.3s;
    border-bottom: 0.2vw solid transparent;
}
header nav ul li a:hover{
    border-bottom-color: white;
}
header .lang-box{
    display: flex;
    align-items: center;
}
header .lang-box img{
    height: 2vw;
}
header.hide {
    transform: translateY(-200%); /* Hide the header by moving it up */
}

main{
    width: 100%;
    padding-top: 13vw;
    color: white;
    /* background-size: 150%; */
    background-size: cover;
    background-color: black;
    background-repeat: no-repeat;
    /* background-size: 300vw; */
    background-position: center;
    /* background-image: url(img/mainback.jpg); */
    /* background-image: url(img/mainback.jpeg); */
    background-image: url(img/farhood-amni-iIVLgiCR1-I-unsplash-min\ comp\ 3.jpg);
}


h1{
    font-size: 7vw;
    margin: 0 5vw;
    line-height: 7vw;
    font-weight: normal;
    margin-bottom: 3vw;
}
h1.big-h1{
    font-size: 10vw;
    line-height: 10vw;
}

span.title{
    font-size: 1.8vw;
    margin: 0 5vw;
    /*letter-spacing: 0.5vw;*/
    font-weight:lighter;
}

p{
    margin: 1vw 5vw;
}

/* main p{
    text-shadow: black 0vw 0vw 0.5vw;
} */

div.two-col{
    display: flex;
}
div.col{
    width: 50vw;
}

.white-btn, .black-btn{
    border: 0.2vw white solid;
    color: white;
    padding: 1vw 2vw;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.5s, color 0.5s ;
    margin: 1vw 5vw;
    display: flex;
    max-width: min-content;
    height: min-content;
    white-space: nowrap;
}
.white-btn:hover{
    background-color: white;
    color: black;
}
.black-btn{
    border: 0.2vw rgb(37, 37, 100) solid;
    color: rgb(37, 37, 100);
}
.black-btn:hover{
    background-color: rgb(37, 37, 100);
    color: white;
}

.col.bigger{
    width: 60vw;
}
.col.smaller{
    width: 40vw;
}
main .col.values-col{
    border: white solid 0.05vw;
    border-left: none;
    padding-top: 10vw;
    padding-bottom: 5vw;
}
.col.values-col.smaller{
    padding-top: 20vw;
}

div.spacer{
    height: 6vw;
}

.value-section.hide{
    display: none;
}

ul.values-ul{
    list-style: none;
    font-size: 2.5vw;
    margin: 0;
    padding: 0;
}
ul.values-ul li{
    display: flex;
    padding: 1vw 2vw;
    margin: 0;
    transition: border 0.5s;
    cursor: pointer;
    border-inline-end: 0.3vw solid transparent;
}
ul.values-ul li.selected{
    border-left: 0.3vw solid white;
}

ul.values-ul li:hover{
    border-left: 0.3vw solid white;
}

div.industry-sec{
    padding: 10vw 0;
    background-color: rgba(241, 241, 241, 0.376);
    border-bottom: solid grey 0.1vw;
    background-image: url(img/ind\ back\ pattern\ 01.svg);
    background-repeat: no-repeat;
    background-size: 70vw;
    background-position-x: 30vw;
    background-position-y: 40vw;
    /* background-position: 0 -10vw; */
    display: flex;
    align-items: center;
}
div.industry-sec img{
    width: 30vw;
    height: 40vw;
    object-fit: cover;
    box-shadow: rgb(208, 208, 216) 2vw 2vw 0;
    margin: 0 5vw;
    transition: box-shadow 1s;
}
div.industry-sec img:hover{
    box-shadow: rgb(131, 131, 168) 0vw 0vw 0;

}

div.slider{
    padding-top: 5vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    
}
div.slider .list{
    display: flex;
    justify-content: center;
    align-items: end;
    margin: 1.5vw 5vw;
    height: min-content;
    white-space: nowrap;
}
div.slider .two-col{
    justify-content: space-between;
    align-items: end;
}

div.list ul{
    display: flex;
    border: 0.1vw rgb(37, 37, 100) solid;
    width: 100%;
    font-size: 1.2vw;
}
div.list ul a{
    display: flex;
    padding: 1vw 2vw;
    border-bottom: solid transparent 0.3vw;
    transition: border 0.5s;
    cursor: pointer;
    color: rgb(37, 37, 100);
    opacity: 0.5;
}
div.list ul a:hover, .list ul a.selected{
    border-bottom: solid rgb(37, 37, 100) 0.3vw;
    opacity: 1;
}

.slider .main{
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    /* touch-action: pan-x; */
    scroll-behavior: smooth;
    white-space: nowrap;
    scroll-snap-type: x mandatory; /* Enforces snapping */
    margin-left: 5vw;
}
.slider .main::-webkit-scrollbar{
    display: none;
}
.slide {
    flex: 0 0 auto;
    width: 80vw;
    border: 0.1vw rgb(181, 181, 181) solid;
    display: flex;
    align-items: center;
    white-space: wrap;
    margin-right: 5vw;
    scroll-snap-align: start; /* Snap points */
}

.slide img.main-slide-img {
    width: 30vw;
    height: 35vw;
    object-fit: cover;
    transition: transform 1s, opacity 1s;
}
.slide img.main-slide-img:hover{
    transform: scale(1.1);
    opacity: 0.5;
}

.company-logo{
    height: 3vw;
    margin: 0 5vw;
}

.slide .text h1{
    font-size: 4vw;
    margin-bottom: 1vw;
}

/* slider controls and progress bar */
.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3vw 0;
}

.progress-container {
    width: 30vw;
    height: 0.2vw;
    background-color: #ddd;
    overflow: hidden;
    margin: 0 2vw;
}

.progress-bar {
    height: 100%;
    background-color: rgb(37, 37, 100);
    width: 0%;
    transition: width 0.1s ease;
}

.prev, .next {
    cursor: pointer;
    width: 5vw;
    height: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: 0.6s ease;
    border-radius: 10vw;
    user-select: none;
    background-color: rgb(37, 37, 100);
    border: none;
}

.prev:hover, .next:hover {
    opacity: 0.8;
}
.prev:disabled, .next:disabled{
    background-color: grey;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(3vw);
    transition: opacity 0.6s  ease-in-out, transform 0.6s ease-in-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

div.contact-us{
    width: 100%;
    border-top: rgba(37, 37, 100, 0.462) solid 0.1vw;
    padding: 5vw 0;
    background-size: 70vw;
    background-repeat: no-repeat;
    background-position: 50vw -5vw;
    background-image: url(img/ind\ back\ pattern\ 01.svg);
    background-position: 50vw 8vw;
    background-size: 50vw;
    background-repeat: no-repeat;
}
div.contact-us span{
    margin: 0 5vw;
    font-size: 2vw;
}


footer{
    background-color: rgb(37, 37, 100);
    color: white;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

footer .col .logo{
    width: 10vw;
    margin: 5vw;
    object-fit: contain;
}
footer .col{
    box-sizing: border-box;
    border: rgba(255, 255, 255, 0.248) 0.05vw solid;
}
footer .col{
    display: flex;
}
footer ul li{
    margin: 2vw 5vw;
    transition: opacity 0.5s;
}
footer ul li:hover{
    opacity: 0.5;
}

.main-banner{
    padding-top: 20vw;
    padding-bottom: 5vw;
    text-align: center;
    color: white;
    background: radial-gradient(circle,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 43%, rgba(0, 212, 255, 1) 100%);
    background-position: center;
    background-size:cover;
    
}
.main-banner h1{
    text-shadow: black 0 0 3vw;
}
.single-col{
    padding: 5vw 20vw;
    text-align: justify;
}
.single-col ul{
    list-style-type: disc;
    padding: 0 2vw;
}
.single-col img{
    width: 100%;
}

header .menu-icon{
    display: none;
}


form input, form button, form textarea{
    margin: 0 !important;
    width: 100%;
    padding: 1vw;
}


.value-section-container {
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari, and Opera */
.value-section-container::-webkit-scrollbar {
    display: none;
}



.mobile-menu{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(37, 37, 100);
    z-index: 100;
    padding: 20vw 5vw;
    color: white;
    visibility: hidden;
    opacity: 0;
    
    transition: visibility 0s, opacity 0.5s linear;    
    
}
.mobile-menu.visible{
    visibility: visible;
    opacity: 1;
}
.mobile-menu ul li{
    margin-top: 2vw;
}


/* MOBILE VIEW */

@media only screen and (max-width: 500px) {
    html, body{
        font-size: 5vw;
    }
    #loading-overlay img{
        width:40vw;
    }
    .two-col{
        flex-direction: column;
    }
    .two-col .col{
        width:100%;
    }
    header{
        height: 15vw;
        font-size: 3vw;
    }
    header img{
        height: 9vw;
    }
    header nav{
        display: none;
    }
    
    header .menu-icon{
        display: block;
        height: 7vw;
    }

    
    main{
        padding-top: 30vw;
    }
    h1{
        font-size: 12vw;
        line-height: 15vw;
        
    }
    h1.big-h1{
        font-size: 17vw;
        line-height: 17vw;
    }
    
    span.title{
        font-size: 4vw;
       
    }
    a.white-btn, a.black-btn{
        margin-top: 3vw;
        margin-bottom: 7vw;
        padding: 3vw;
    }
    .values-col.smaller{
        display: none;
    }
    div.industry-sec img{
        width: 90vw;
        height: 100vw;
        
        
    }
    .slide{
        flex-direction: column;
    }
    .slide img.main-slide-img{
        width: 100%;
        height: 50vw;
    }
    .slide .text h1{
        font-size: 6vw;
        margin-bottom: 0;
    }
    .slider .two-col .list{
        display: none;
    }
    .slider .two-col .title{
        width: 100%;
    }
    header .lang-box img{
        height: 6vw;
    }
    
    .company-logo{
        height: 2vw;
    }
    
    .controls .progress-container{
        width: 60vw;
        height: 0.5vw;
    }
    .controls .next, .controls .prev{
        width: 10vw ;
        height: 10vw;
    }
    .controls{
        margin: 7vw 0;
    }
    
    div.contact-us span{
        font-size: 7vw;
    }
    
    footer .col .logo{
        width: 30vw;
        object-fit: contain;
    }
    
    .main-banner{
        padding-top: 30vw;
    }
    .single-col{
        padding: 7vw 10vw;
    }
    .value-section.hide{
        display:block;
    }
    .value-section-container{
        display: flex;
        overflow-y: hidden;
        overflow-x: scroll;
        justify-content: start;
        scroll-snap-type: x mandatory; /* Enforces snapping */
        margin: 0 5vw;
        
    }
    .value-section-container .value-section{
        width: 80vw;
        border: white solid 0.1vw;
        margin: 0 2vw;
        scroll-snap-align: start; /* Snap points */
        flex-shrink: 0; 
        padding: 3vw 0;
        
    }
}











