@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin:0;  
    padding:0;
    box-sizing: border-box;
}

html, body{
    width:100%;
    height:100vh;
    font-family: "Roboto";
}

header{
    width:100%;
    height:100%;
    background-color: #fff;
}

header nav{
    position: fixed;
      top: 0;
      width: 100%;
      height:100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fff;
      color: white;
      padding: 14px 20px;
      z-index: 1000;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

header nav img{
    width: 120px;
}

header nav ul{
    display: flex;
    gap:30px;
    margin-right: 40px;
    list-style: none;
    /* position: relative; */
}

header nav ul li a{
    color: #1F2937;
    text-decoration: none;
    font-size: 1.2rem;
    border: none;
    background: none;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    
  }

  header nav ul li a ul li a{
    display: none;
  }
  
  header nav ul li a::before {
    margin-left: auto;
  }
  
  header nav ul li a::after, header nav ul li a::before {
    content: '';
    width: 0%;
    height: 2px;
    background: #0056B3;
    display: block;
    transition: 0.5s;
  }
  
  header nav ul li a:hover::after, header nav ul li a:hover::before {
    width: 100%;
  }

  header nav i{
    font-size: 2rem;
    cursor: pointer;
    display: none;
    color:#000;
  }

  header nav input{
    display: none;
  }


@/media screen and (max-width:900px){
    header nav ul{
        position: fixed;
        z-index: 999;
        top:80px;
        left:-100%;
        background: #4378EE;
        backdrop-filter: blur(60px);
        height:100%;
        width:100%;
        display: block;
        margin-top: 20px;
        transition: all 1s;
    }
    header nav ul li{
        margin:40px 0;
        text-align: center;
    }
    header nav ul li a{
        color:#fff;
        font-size: 1.5rem;
    }
    header nav i{
        display: block;
    }
    #click:checked ~ ul{
        left:0;
        transition: all 0.3s;
    }
    #click:checked ~ .menu-btn i:before{
        content: '\f00d';
    }
    header nav ul li a:hover::after, header nav ul li a:hover::before {
        background-color: #fff;
      }
}

/* slider coding */

.slider {
    height: 80vh;
    position: relative;
}

.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(36, 50, 63, 0.5);
}

.slider .list .item .content {
    position: absolute;
    bottom:10%;
    right:5%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.slider .list .item .content img{
    object-fit: cover;
    margin-bottom: 20px;
    /* filter: drop-shadow(2px 2px 5px white); */
    width:40%;
    height:50%;
    border-radius: 8px;
}

.slider .list .item .content #design {
    font-size: 34px;
}

.slider .list .item .content h2 {
    font-size: 100px;
    margin: 0;
    font-weight: 600;
    color: var(--rear-bg-color);
    padding-right: 100px;
}

.slider .list .item .content p {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: 12px;
}

.slider .list .item .content button {
    padding:1rem 1.5rem;
    border-radius: 10px;
    position: absolute;
    margin-bottom: 20px; 
    background-color: #bcd7fa;
    right:35%;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
}

.slider .list .item .content button:hover{
    background-color: #60A5FA;
}

.slider .list .item .content button a{
    text-decoration: none;
    color:#2148A2;
    font-size: 1rem;
    font-weight: 600;
}


.slider .list .item.active {
    opacity: 1;
}

.arrows {
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}

.arrows button {
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: x-large;
    color: #eee;
    display: none;
    transition: 0.5s;
}

.arrows button:hover {
    background-color: #eee;
    color: #010101;
}

.thumbnail {
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}

.thumbnail::-webkit-scrollbar {
    width: 0;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    filter: brightness(0.5);
    transition: 0.5s;
    flex-shrink: 0;
    display: none;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.thumbnail .item.active {
    filter: brightness(1.5);
}

.thumbnail .item .content {
    position: absolute;
    inset: 10px auto 10px;
    padding: 10px;
}

/* about us coding */

#about{
    width:100%;
    height:100%;
    background-color: #FFFFFF;
}

#about .container{
    padding:20px;
}

#about .container h2{
    font-size: 2.6rem;
    font-weight: 600;
    text-align: center;
    color:#1F2937;
}

#about .container .info p{
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
  }


#about .container .content{
    width:100%;
    height:100%;
    display: flex;
    padding:20px 40px;  
    margin-top: 20px;
}

#about .container .content .left{
    width:50%;
    height:100%;
}

#about .container .content .left img{
    width:100%;
    background-size: cover;
    object-fit: cover;
    background-position: center;
    border-radius: 16px;
    transition: all 0.5s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#about .container .content .left img:hover{
    scale:1.02;
}

#about .container .content .right{
    width:50%;
    height:100%;
    padding:20px;
    margin-left: 20px;
}

#about .container .content .right h4{
    font-size: 1.5rem;
    font-weight: 500;

}

#about .container .content .right p{
    font-size: 1rem;
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.4;
}

#about .container .content .right p span img{
    /* font-weight: 600;
    color: #0056B3;
    font-size: 2rem;
    filter: drop-shadow(1px 1px 2px #fff);  */
    width:30%;
    height:30%;
    object-fit: cover;
    margin-right: 20px;

}

#about .container .content .right .box{
    width:100%;
    height:300px;
}

#about .container .content .right .box .points{
    width:100%;
    height:auto;
    display: flex;
    gap:10px;
    margin-top: 30px;
    transition: all 0.5s;
}

#about .container .content .right .box .points:hover{
    scale:1.02;
}

#about .container .content .right .box .points .left-1 i{
    padding:15px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    font-size: 1.5rem;
    color:#0056B3;
    background-color: #DBEAFE;
}

#about .container .content .right .box .points .right-1 h5{
    font-size: 1.2rem;
    font-weight: 400;
}

#about .container .content .right .box .points .right-1 p{
    font-size: 1rem;
    font-weight: 400;
}




#about .container .content .right button{
    width:20vw;
    height:8vh;
    padding:10px;
    margin-top: 100px;
    background-color: #2563EB;
    border: none;
    border-radius: 8px;
    transition: all 0.5s;
}

#about .container .content .right button:hover{
    background-color: #2148A2;
}

#about .container .content .right button a{
    text-decoration: none;
    color:#fff;
    font-size: 1.5rem;
}

@/media screen and (max-width:1200px){
    #about .container .content{
        flex-direction: column;
    }
    #about .container .content .left{
        width:100%;
    }
    #about .container .content .right{
        width:100%;
        margin-top: 30px;
    }
    #about .container .content .right{
        padding:0;
        margin-bottom: 150px;
    }   

    
}

@/media screen and (max-width:600px){
    #about .container .content{
        padding:0;

    }
}

/* page coding */

.page{
    width:100%;
    height:100%;
    margin-bottom: 50px;
}

.page .container{
    padding:20px 40px;
    width:100%;
    height:100%;
    display: flex;
    gap:40px;
}

.page .container .box{
    width:25%;
    height:100%;
    border: 2px solid rgb(229, 231, 235);
    text-align: center;
    border-radius: 12px;
    transition: all 0.8s;;
}

.page .container .box:hover{
    border-color: #bcd7fa;
    scale: 1.05;
}

.page .container .box h4{
    font-size: 2.4rem;
    font-weight: 600;
    color:#2563EB;
    margin-top: 10px;
}

.page .container .box p{
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1.4;
    margin-bottom: 10px;
}

@/media (max-width: 992px) {
    .page .container {
      flex-wrap: wrap;
      justify-content: center;
      padding: 20px;
    }
  
    .page .container .box {
      width: 45%; 
      margin-bottom: 20px;
    }
  }
  

  @/media (max-width: 576px) {
    .page .container {
      flex-direction: column;
      padding: 10px;
      justify-content: center;
      align-items: center;
    }
  
    .page .container .box {
      width: 80%;
      margin-bottom: 20px;
      
    }
  
    .page .container .box h4 {
      font-size: 1.8rem;
    }
  
    .page .container .box p {
      font-size: 1rem;
    }
  }
  
  /* brands coding */

  #brands{
    width:100%;
    height:100%;
    background-color: #F8F9FA;
    
  }
  
  #brands .container{
    padding:20px 40px;
    margin-bottom: 50px;
  }

  #brands .container .info h2{
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    color:#1F2937;
    margin-top: 50px;
  }

  #brands .container .info p{
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
  }

  #brands .container .content{
    width:100%;
    height:100% ;
    display: flex;
    gap:50px;
    justify-content: center;
    flex-wrap: wrap;
    padding:10px;
    margin-top: 50px;

  }

  #brands .container .content .box{
    width:30%;
    height:80vh;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: all 0.5s;
  }

  #brands .container .content .box:hover{
    scale:1.02;
  }

  #brands .container .content .box .top{
    width:100%;
    height:50%;
    padding:20px;
  }

  #brands .container .content .box .top img{
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all 0.5s;
    border-radius: 16px;
    
  }

  #brands .container .content .box .top img:hover{
    scale:1.02;
  }


  #brands .container .content .box .bottom{
    width:100%;
    height:50%;
    padding:20px;
  }

  #brands .container .content .box .bottom img{
    width: 200px;      
    height: auto;    
    object-fit: contain;
    text-align: center;
  }

  #brands .container .content .box .bottom p{
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    color: #4B5563;
  }

  #brands .container .content .box .bottom .elem{
    display: flex;
    gap:10px;
  }
  
  #brands .container .content .box .bottom .elem p{
    padding:0.5em;
    border-radius: 36px;
    background-color: #DBEAFE;
    color: #2563EB;
    font-size: 0.8rem;
  }

  #brands .container .content .box .bottom button{
    width:10vw;
    height:5vh;
    margin-top: 20px;
    background-color: #2563EB;
    border: none;
    border-radius: 8px;
    transition: all 0.5s;
}

#brands .container .content .box .bottom button:hover{
    background-color: #2148A2;
}

#brands .container .content .box .bottom button a{
    text-decoration: none;
    color:#fff;
    font-size: 1.2rem;
}

@/media screen and (max-width:1250px){
    #brands .container .content .box .bottom .elem{
        flex-wrap: wrap;
    }
}

@/media screen and (max-width:1100px){
    #brands .container .content .box{
        flex-direction: column;
        width:45%;
        height:100%;
    }
    #brands .container .content .box .bottom button{
        width:20vw;
        height:5vh;
    }   
}

@/media screen and (max-width:600px){
    #brands .container .content .box .bottom button{
        width:30vw;
        height:5vh;
    }
    #brands .container .content .box{
        width:100%;
        height:100%;

    } 
}

/* choose brands partnership coding */

#partnership{
    width:100%;
    height:100%;
    padding:20px 40px;
}

#partnership .container{
    width:100%;
    height:70%;
    background-color: #FFFFFF;
    padding:20px 40px;
    display: flex;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#partnership .container .left{
    width:50%;
    height:100%;
    padding:10px 20px;
}

#partnership .container .left h2{
    font-size: 2rem;
    font-weight: 500;
}

#partnership .container .left .box{
    width:100%;
    height:70%;
    padding:10px;
}

#partnership .container .left .box .content{
    width:100%;
    height:20%;
    display: flex;
    margin-bottom:10px;
}

#partnership .container .left .box .content .left-1{
    width:10%;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#partnership .container .left .box .content .left-1 i{
    border: 2px solid white;
    padding:10px;
    font-size: 1.5rem;
    color:#4378EE;
}

#partnership .container .left button{
    width:15em;
    height:40px;
    background-color: #2563EB;
    border: none;
    border-radius: 8px;
    transition: all 0.5s;
    padding:8px;
}

#partnership .container .left button a{
    text-decoration: none;
    color:#fff;
    font-size: 1rem;
}

#partnership .container .left button:hover{
    background-color: #2148A2;
}

#partnership .container .left .box .content .right-1{
    width:90%;
    height:100%;
}

#partnership .container .left .box .content .right-1 .top-1{
    width:100%;
    height:100%;
    padding:10px;
}   

#partnership .container .left .box .content .right-1 .top-1 h5{
    font-size: 1.2rem;
    font-weight: 500;
}

#partnership .container .left .box .content .right-1 .top-1 p{
    font-size: 1rem;
    font-weight: 400;
}

#partnership .container .right{
    width:50%;
    height:80%;
    flex-wrap: wrap;
    display: flex;
    padding:20px;
    
}

#partnership .container .right .box-1{
    width:45%;
    height:40%;
    background-color: #F3F4F6;
    padding:20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left:20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: all 0.2s;
}

#partnership .container .right .box-1:hover{
    scale:1.05;
}

#partnership .container .right .box-1 .boxs h4{
    color:#2563EB;
    font-size: 3rem;
    margin-bottom: 10px;
}

#partnership .container .right .box-1 .boxs p{
    font-size: 1rem;
    font-weight: 500;
    margin-top: 10px;
}

@/media screen and (max-width:1050px){
    #partnership .container{
        flex-direction: column;
    }
    #partnership .container .left{
        width:100%;
        height:100%;
    }
    #partnership .container .right{
        width:100%;
        height:100%;
    }
}

@/media screen and (max-width:750px){
    #partnership .container .left .box{
        padding:0;
        margin:0;
        
    }
    #partnership .container .right{
        width:100%;
        height:100%;
        padding:0;
    }   
    #partnership .container .right .box-1{
        margin-bottom:10px;
    }
}

@/media screen and (max-width:550px){
    #partnership .container .right .box-1{
        padding:20px;
        width:100%;
        margin-bottom: 10px;
    }
}

/* services coding */

#services{
    width:100%;
    height:100%;
    padding:10px 20px;
    background-color: #F9FAFB;
}

#services .container{
    padding:10px 20px;
    width:100%;      
    height:100%;
    margin-top: 20px;
}

#services .container .info{
    text-align: center;
    margin-bottom: 20px;
}

#services .container .info h2{
    font-size: 2.2rem;
    font-weight: 500;
}

#services .container .info p{
    font-size: 1.2rem;
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
}

#services .container .content{
    width:100%;
    height:100%;
    /* background-color: violet; */
    display: flex;
    padding:10px 20px;
}

#services .container .content .left{
    width:50%;
    height:100%;
    /* background-color: wheat; */
}

#services .container .content .right{
    width:50%;
    height:100%;
    /* background-color: #b82c2c; */
    padding:20px;
}

#services .container .content .right img{
    width:100%;
    height:60%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#services .container .content .right img:hover{
    scale:1.02;
}

#services .container .content .left h2{
    font-size:1.5rem;
    font-weight: 500;
    margin-top: 10px;
}

#services .container .content .left p{
    font-size: 1rem;
    font-weight: 400;
    margin-top: 20px;
    color:#5B6471;
    line-height: 1.5;
    letter-spacing: 3;
}

#services .container .content .left .box{
    width:100%;
    height:50%;
    padding-top:20px;
    /* background-color: teal; */
}

#services .container .content .left .box .points{
    width:100%;
    height:10;
    /* background-color: skyblue; */
    display: flex;
    margin-bottom: 20px;
}

#services .container .content .left .box .points .left-2{
    width:10%;

    /* background-color: #fff; */
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
}

#services .container .content .left .box .points .left-2 i{
    padding:10px;
    font-size: 1.5rem;
    color:#346EED;
    border-radius: 50%;
    background-color: #DBEAFE;
}

#services .container .content .left .box .points .right-2{
    width:90%;
    height:100%;
    /* background-color: #F2E8E8; */
    
}

#services .container .content .left .box .points .right-2 .top-1{
    width:100%;
    height:50%;
    /* background-color: seagreen; */
}

#services .container .content .left .box .points .right-2 .top-1 h5{
    font-size: 1.2rem;
    font-weight: 450;

}

#services .container .content .left .box .points .right-2 .top-1 p{
    font-size: 1rem;
    font-weight: 400;
    color:#5B6471;
}

#services .container .content .left .box .points .right-2 .bottom-1{
    width:100%;
    height:50%;
    /* background-color: rgb(0, 255, 110); */
}

@/media screen and (max-width:1000px){
    #services .container .content{
        flex-direction: column;
    }
    #services .container .content .left{
        width:100%;
        height:100%;
    }
    #services .container .content .right{
        width:100%;
        height:100%;
    }
    
}


#services .container .content .left button{
    width:12em;
    height:40px;
    background-color: #2563EB;
    border: none;
    border-radius: 8px;
    transition: all 0.5s;
    /* margin:20px 0 0 20px; */
    padding:8px;
}

#services .container .content .left button a{
    text-decoration: none;
    color:#fff;
    font-size: 1rem;
}

#services .container .content .left button:hover{
    background-color: #2148A2;
}

#services .description {
    width: 100%;
    min-height: 100%;
    /* background-color: yellow; */
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

#services .description .box {
    flex: 1 1 45%;
    max-width: 45%;
    height: auto;
    /* background-color: #b82c2c; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 12px;
    transition: all 0.5s;
}

#services .description .box:hover {
    scale: 1.02;
}

#services .description .box .top {
    width: 100%;
    height: 400px;
    padding: 20px;
}

#services .description .box .top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#services .description .box .bottom {
    width: 100%;
    padding: 20px;
}

#services .description .box .bottom h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1F2937;
}

#services .description .box .bottom p {
    font-size: 1rem;
    font-weight: 400;
    color: #4B5563;
    margin-top: 10px;
}

#services .description .box .bottom .elem {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#services .description .box .bottom .elem p {
    padding: 0.5em;
    border-radius: 36px;
    background-color: #DBEAFE;
    color: #2563EB;
    font-size: 0.8rem;
}

#services .description .box .bottom button {
    width: 12em;
    height: 40px;
    background-color: #2563EB;
    border: none;
    border-radius: 8px;
    transition: all 0.5s;
    margin-top: 20px;
    padding: 8px;
}

#services .description .box .bottom button:hover {
    background-color: #2148A2;
}

#services .description .box .bottom button a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

/* =======================
   /media QUERIES FOR RESPONSIVENESS
========================== */

@/media (max-width: 1024px) {
    #services .description {
        gap: 30px;
    }

    #services .description .box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@/media (max-width: 600px) {
    #services .description {
        padding: 20px;
    }

    #services .description .box .top {
        height: 200px;
        padding: 10px;
    }

    #services .description .box .bottom {
        padding: 10px;
    }

    #services .description .box .bottom h4 {
        font-size: 1.2rem;
    }

    #services .description .box .bottom p {
        font-size: 0.9rem;
    }

    #services .description .box .bottom button {
        width: 100%;
    }
}


  /* clients container coding */
  
  #clients .container{
    width:100%;
    height:100%;
    /* background-color: yellow; */
    padding:40px;
  }

  #clients .container h2{
    font-size: 2.6rem;
    font-weight: 500;
    color:#1F2937;
    text-align: center;
  }

  .moving-container{
    /* background-color: #0DA34E; */
    margin-top: 10vh;
    /* position: absolute; */
    bottom: 3%;
    width:100%;
    white-space: nowrap;
    padding:1.2vw;
    overflow: hidden;
    position: relative;
}

.moving-container .move{
    /* display: flex;
    align-items: center;
    gap:2vw; */
    display: inline-block;
    animation: move 40s linear infinite;
    /* gap:50px; */
}

.moving-container .move .box{
    display: inline-block;
    /* border: 1px solid red; */
    gap:10px;
    margin-right: 20px;
    padding:10px;
    border-radius: 16px;
    width:16vw;
    height:6vw;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.moving-container .move img{
    /* height:10vw; */
    width:100%;
    object-fit: contain;
    height:100%;
    /* border: 1px solid red; */
    /* margin:0 1vw; */
}

@keyframes move{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

#clients .container .moving-container .blur-left{
    height:100%;
    width:20%;
    position: absolute;
    top:0;
    left:0;
    z-index: 2;
    background: linear-gradient(to right,hsl(30, 50%, 100%),transparent);
}

#clients .container .moving-container .blur-right{
    height:100%;
    width:20%;
    position: absolute;
    top:0;
    right:0;
    z-index: 2;
    background: linear-gradient(to right, transparent,hsl(30, 50%, 100%));
}

#clients .container button{
    width:12em;
    height:40px;
    background-color: #2563EB;
    border: none;
    border-radius: 8px;
    transition: all 0.5s;
    margin-top: 20px;
    padding:8px;
    /* transition: all 0.5s; */
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

#clients .container button a{
    text-decoration: none;
    color:#fff;
    font-size: 1rem;
    font-size: 1rem;
}

/* Make box sizes responsive */
@/media (max-width: 1024px) {
    .moving-container .move .box {
      width: 25vw;
      height: 12vw;
    }
  }
  
  @/media (max-width: 768px) {
    .moving-container .move .box {
      width: 30vw;
      height: 15vw;
    }
  }
  
  @/media (max-width: 480px) {
    .moving-container .move .box {
      width: 40vw;
      height: 20vw;
      margin-right: 10px;
    }
  
    #clients .container h2 {
      font-size: 1.8rem;
    }
  
    #clients .container button {
      width: 100%;
    }
  }
  


  

/* footer coding */

footer{
    width:100%;
    height:100%;
    background-color: #262626;
    /* background-color: yellow; */
    color:#fff;
}

footer .container{
    width:100%;
    height:90%;
    /* background-color: red; */
    /* padding:80px; */
    padding:20px 40px 20px 40px;
    display: flex;
    gap:20px;
}

footer .container .boxes{
    width:50%;
    height:100%;
    /* background-color: violet; */
    padding:10px;
    /* display: flex;
    flex-direction: column; */
    /* gap:10px; */
    /* align-items: center;
    justify-content: center;
    text-align: center */
}

footer .container .boxes h4{
    font-size: 1.6rem;
    font-weight: 500;
}

footer .container .boxes p{
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 10px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color:#C8CCD2;
    transition: all 0.3s;
}



footer .container .boxes p:hover{
    color:#fff;
}

footer .container .boxes .icons{
    margin-top: 20px;
    display: flex;
    gap:15px;
    color:#C8CCD2
}

footer .container .boxes .icons a{
    text-decoration: none;
    color:#C8CCD2;
}

footer .container .boxes .icons i{
    font-size: 1.8rem;
    transition: 0.3s;
}

footer .container .boxes .icons i:hover{
    color:#fff;
}

footer .container .boxes .details a{
    display: flex;
    text-decoration: none;
    margin-left: 20px;
    
}

footer .container .boxes .details a p{
    font-size: 1.1rem;
    font-weight: 450;
}

footer .container .boxes .address{
    width:100%;
    height:8%;
    /* background-color: green; */
    display: flex;
    margin-top: 10px;
}


footer .container .boxes .address .right{
    width:15%;
    height:100%;
    /* background-color: yellowgreen; */
}

footer .container .boxes .address .right i{
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    color:#60A5FA;
}

footer .container .boxes .address .left{
    width:85%;
    height:100%;
    /* background-color: rgb(44, 66, 0); */
}

footer .container .boxes .mail{
    width:100%;
    height:15%;
    /* background-color: wheat; */
    margin-top: 20px;
}

footer .container .boxes .mail h4{
    font-size: 1rem;
    font-weight: 600;
}

footer .container .boxes .mail input{
    width: 90%;
    height: 50px;
    padding: 10px;
    border: 2px solid #4B5563;
    border-radius: 8px;
    margin-top: 10px;
    background-color: #404040;
    color:#fff;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
}   

footer .container .boxes .mail input:focus {
    /* border-color: #05173f; Blue border */
    box-shadow: 0 0 8px #2563EB80; /* Soft blue glow */
    /* background-color: #1f2937; Slightly darker on focus */
}




footer .container .boxes .mail button{
    padding:10px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    background-color: #2563EB;
    color:#fff;
    font-size: 1rem;
    transition: all 0.3s;
}

footer .container .boxes .mail button:hover{
    background-color: #2148A2;
}

@/media (max-width: 1024px) and (min-width: 768px) {
    footer .container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 30px;
    }

    footer .container .boxes {
        width: 45%;
        margin-bottom: 20px;
    }

    footer {
        height: auto;
    }
}

@/media (max-width: 767px) {
        footer .container {
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        footer .container .boxes {
            width: 100%;
            margin-bottom: 20px;
        }

        footer {
            height: auto;
        }

    footer .container .boxes .details a {
        margin-left: 0;
        flex-direction: column;
    }

    footer .container .boxes .mail input {
        width: 100%;
    }
}

footer .bottom-line {
    padding:20px 40px;
    width: 100%;
    background-color: #262626; /* Dark gray (you can change it) */
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #404040; /* Optional border for separation */
}

footer .bottom-line p {
    margin: 0;
    color: #C8CCD2; /* Text color */
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

footer .bottom-line .policy{
    display: flex;
    gap:20px;
}

footer .bottom-line .policy a{
    text-decoration: none;
    color:#C8CCD2;
    /* transition: all 0.3; */
}

footer .bottom-line .policy a p{
    color:#C8CCD2;
    font-size: 1rem;
    transition: all 0.3s;
}

footer .bottom-line .policy a p:hover{
    color:#fff;
}

@/media screen and (max-width:755px){
    footer .bottom-line {
        flex-direction: column;
    }
    footer .bottom-line .policy{
        margin-top: 10px;
    }
}

/* any update coding */

#update{
    width:100%;
    height:40vh;
    /* background-color: violet; */
    padding:40px 80px;
}

#update h2{
    font-size: 1.8rem;
    font-weight: 500;
    color:#000;
    text-align: center;
}

#update p{
    font-size: 1rem;
    font-weight: 350;
    color:#000;
    text-align: center;
    margin-top: 10px;
}

#update .container{
    width:100%;
    height:100%;
    /* background-color: yellowgreen; */
    padding:20px 40px;
    border-radius: 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#update .box{
    width:100%;
    height:80%;
    background-color: wheat;
    /* padding:20px 40px; */
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    /* align-items: center; */

}

#update .box button{
    width: 200px;
    height:60px;
    padding:20px;
    margin-left: 20px;
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #2563EB;
}

#update .box input{
    width:50%;
    height: 60px;
    border: 1px solid #969595;
    border-radius: 16px;
    padding:20px 40px;
    font-size: 1rem;
}