@font-face {
    font-family: 'MyCustomFont';
    src: url('style/Saira-Regular.ttf') format('truetype');
}
  
body {
    font-family: 'MyCustomFont', sans-serif;
}

*{  padding: 0;   margin: 0;  }

body{background-color: #181a1c;} 
.built_section {
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    
    margin-top: 60px;
    height: auto;
    overflow: hidden;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 600px;
    background-image: url('./assets/backgrounddot.png'); 
    background-size: cover;
    background-position: center ;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none; 
}

@media screen and (max-width: 2000px) {
  .overlay {
    width: 50%;
    height: 600px;
  }
}
@media screen and (max-width: 1600px) {
  .overlay {
    width: 60%;
    height: 800px;
  }
}

.built_section h1{
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 20px;
  z-index: 2;
}

.titleopening {
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 20px;
  z-index: 2;
}
.s-para {
    font-size: 20px;
    width: 500px;
    margin-bottom: 20px;
    align-items: center;  justify-content: center;  text-align: center;
}

/**/
.built-box {
    display: flex;
    justify-content: space-between; 
    gap: 20px;
	max-width: 800px;
    padding: 20px;
}

.build-sBox {
    flex: 1;
    background-color: #1e2022;
    color: white;
    text-align: center; margin-bottom: 40px;
    border-radius: 20px; border: 1px solid #6e6e6e;
    overflow: hidden;
}
.full-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media screen and (max-width: 1024px) {  
    .built_section h1{  font-size: 30px; margin-bottom: 20px;    }
    .titleopening {  font-size: 30px; margin-bottom: 20px; }
    .s-para {  font-size: 16px;  width: 450px; }
    .built-box { width: 70%;  gap: 20px; }
}
@media screen and (max-width: 920px) {  
    .built_section h1{  font-size: 28px; margin-bottom: 18px; }
    .titleopening{  font-size: 28px; margin-bottom: 18px; }
    .s-para {  font-size: 14px;  width: 430px; }
}
@media screen and (max-width: 768px) {  
    .built_section h1{  font-size: 25px; margin-bottom: 15px;    }
    .titleopening {  font-size: 25px; margin-bottom: 15px;    }
    .s-para {  font-size: 14px;  width: 400px; }
    .built-box { width: 70%;  gap: 10px; padding: 0px;}
}
@media screen and (max-width: 520px) {  
    .built_section h1{  font-size: 22px; margin-bottom: 13px;    }
    .titleopening {  font-size: 22px; margin-bottom: 13px;    }
    .s-para {  font-size: 12px;  width: 360px; }
    .built-box { width: 80%;  }
}
@media screen and (max-width: 450px) {  
    .built_section h1{  font-size: 18px; margin-bottom: 12px;    }
    .titleopening {  font-size: 18px; margin-bottom: 12px;    }
    .s-para {  font-size: 11px;  width: 330px; }
    .built-box { width: 85%; }
    .build-sBox { margin-bottom: 30px;}
}
@media screen and (max-width: 400px) {  
    .built_section h1{  font-size: 16px; margin-bottom: 10px;    }
    .titleopening {  font-size: 16px; margin-bottom: 10px;  }
    .s-para {  font-size: 10px;  width: 300px; }
    .built-box { width: 90%;  }
}
@media screen and (max-width: 340px) {  
    .built_section h1{  font-size: 14px;  }
    .titleopening {  font-size: 14px; }
    .s-para {  font-size: 10px;  width: 270px; }
    .built-box { width: 95%;  }
}

/*Services*/
.service-box {
    width: 650px;
    height:400px;
    display: flex;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #1e2022;
    border-radius: 10px;
    border: 1px solid #6e6e6e;
    z-index: 4;
}
.service-left {
    flex: 1;    display: flex;
    justify-content: center;    align-items: center;
    position: relative;
    z-index: 2;
    background-color: #1e2022;
}
.service-left img {
    position: absolute;
    width: 380px;
    left: -80px; 
    z-index: -1;
}
.service-right {
    flex: 1;
    padding: 20px;
    display: flex;   
    background-color: #1e2022;   flex-direction: column;
    justify-content: space-between; 
}
.sr-service {
    display: flex;
    flex-direction: rows;
}
.sr-num{    width: 15%;    display: flex;}
.sr-num p{    font-size: 28px;    color: rgb(12, 84, 167);}
.sr-describe {
    width: 100%; 
    flex-direction: column;    display: flex;
}
.sr-describe h3{  margin-top: 0px;  font-size: 20px;    margin-bottom: 5px;}
.sr-describe p{    font-size: 16px;    padding-left: 10px;}

@media screen and (max-width: 1024px) {  
    .service-box { width: 600px;   height:375px; padding: 20px; }
    .service-left img { width: 380px; left: -80px; }
    .service-right {  padding: 20px;   }
    .sr-num p{    font-size: 25px; }
    .sr-describe h3{    font-size: 20px;    margin-bottom: 5px;}
    .sr-describe p{    font-size: 14px;}
}
@media screen and (max-width: 920px) {  
    .service-box { width: 580px; height:350px; padding: 20px; }
    .service-left img { width: 350px; left: -80px; }
    .service-right {  padding: 20px;   }
    .sr-num p{    font-size: 22px; }
    .sr-describe h3{    font-size: 18px; }
    .sr-describe p{    font-size: 13px;}
}
@media screen and (max-width: 768px) {  
    .service-box { width: 500px; height:325px; padding: 20px; }
    .service-left img { width: 300px; left: -80px; }
    .service-right {  padding: 20px;   }
    .sr-num p{    font-size: 20px; }
    .sr-describe h3{    font-size: 16px;}
    .sr-describe p{    font-size: 12px;}
}
@media screen and (max-width: 700px) {  
    .service-box { width: 475px; height:270px; padding: 20px; }
    .service-left img { width: 275px; left: -80px; }
    .sr-num p{    font-size: 18px; }
    .sr-describe h3{    font-size: 15px;}
    .sr-describe p{    font-size: 10px;}
}
@media screen and (max-width: 650px) {  
    .service-box { width: 400px;   height:250px; padding: 20px;  margin-bottom: 20px; }
    .service-left img { width: 250px; left: -80px; }
    .service-right {  padding: 0px;   }
}
@media screen and (max-width: 560px) {  
    .service-box { width: 380px; height:250px; padding: 20px; }
    .service-left img { width: 225px; left: -60px; }
    .sr-num p{    font-size: 16px; }
    .sr-describe h3{    font-size: 14px;}
}
@media screen and (max-width: 510px) {  
    .service-box { width: 340px; height:250px; padding: 20px; }
    .service-left img { width: 200px; left: -50px; }
    .sr-num p{    font-size: 15px; }
    .sr-describe h3{    font-size: 12px;}
    .sr-describe p{    font-size: 10px;}
}
@media screen and (max-width: 460px) {  
    .service-box { width: 300px; height:250px; padding: 20px; }
    .service-left img { width: 175px; left: -50px; }
    .sr-num p{    font-size: 14px; }
    .sr-describe h3{    font-size: 10px;}
    .sr-describe p{    font-size: 9px;}
}
@media screen and (max-width: 400px) {  
    .service-box { width: 260px; height:200px; padding: 20px; }
    .service-left img { width: 150px; left: -50px; }
    .sr-num p{    font-size: 14px; }
    .sr-describe h3{    font-size: 10px;}
    .sr-describe p{    font-size: 9px;}
    .service-left {display: none; }
}
/**stream process*/
.streamprocess {
    width: 100%; height: 250px; margin-bottom: 50px;
    background-color: #131313; 
    display: flex;    align-items: center;    justify-content: center;
}

.stream-box {
    width: 1000px;
    display: flex;
    justify-content: space-between; 
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}
.stream-sBox {
    flex: 1 1 100px; /* grow, shrink, initial width */
    min-width: 50px;
    color: white;
    text-align: center;
}

.stream-sBox h3 {
    font-size: 13px;
    font-weight: 800;
    margin-top: 0px;
    margin-bottom: 0px;
}

.stream-sBox p {
    font-size: 11px;
}
.stream-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 5px;
}


@media screen and (max-width: 1100px) {  
    .streamprocess { height: 300px; margin-bottom: 50px; }
    .stream-box {  width: 500px;  }
    .stream-sBox { flex: 1 1 100px;  min-width: 50px; }
}
@media screen and (max-width: 600px) {  
    .streamprocess { height: 400px; margin-bottom: 50px;  }
    .stream-box {  width: 400px;  }
}
@media screen and (max-width: 400px) {  
    .streamprocess { height: 500px; margin-bottom: 50px;  }
}

@media screen and (max-width: 360px) {  
    .streamprocess { height: 500px; margin-bottom: 50px;  }
}

/*work**/
hr {
    width: 80%;
    max-width: 1200px;
    height: 3px;
    border-radius: 50px;
    background-color: rgb(0, 162, 255);
}

.carouselwork {
    width: 100%;
}

iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media screen and (max-width: 900px) {  
    iframe {   height: 400px;   }
}

@media screen and (max-width: 900px) {  
    iframe {   height: 380px;   }
}

@media screen and (max-width: 450px) {  
    iframe {   height: 360px;   }
}

/***last section*/
h3 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;

}
@media screen and (max-width: 450px) {  
    h3 {  font-size: 15px; }
}


/***/
.wrapper {
    width: 100%;
    overflow: hidden;
}
.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    background-color: #131313;
    gap: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}

.marquee_group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    margin-left: 20px;
    animation: scroll-x 30s linear infinite;
}

@keyframes scroll-x {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.marquee_group img {
    width: 70px;
    height: 70px;
}
