*{
    margin:0;
}
/* global design */
:root{
    --primary:#FFA45E;
    --secondary:linear-gradient(99deg, #FF6A3E 15.5%, #FFA45E 99.07%);
    --tertiary:#fff;
    --universe:#ccc;
    --text:#555;
    --light: #fafbf9;
    --foot:#FFEDE8;
}
a{
    text-decoration: none;
}
.main{
    font-size: 17px;
    border:1px solid var(--primary);
    outline: none;
    border-radius: 5px;
    background-color:transparent;
    color: var(--text);
    transition: .30s ease;
    padding: 20px 10px;
    width: 100%;
    font-weight: bolder;
}
.main-button{
    font-size: 17px;
    border: none;
    font-weight: bolder;
    outline: none;
    border-radius: 5px;
    background: var(--secondary) ;
    color: var(--tertiary);
    transition: .30s ease;
    padding: 20px 10px;
    width: 100%;
}
.about-button{
    font-size: 17px;
    border: none;
    font-weight: bolder;
    outline: none;
    border-radius: 5px;
    background: var(--secondary) ;
    color: var(--tertiary);
    transition: .30s ease;
    padding: 20px 10px;
    width: 50%;
}
.nav-btn:hover{
    background:var(--tertiary);
    color:var(--text);
    border: 1px solid var(--primary);
}
.main-button:hover{
    background:var(--light);
    border: 1px solid var(--primary);
    color: var(--text);
}
.about-button:hover{
    background:var(--light);
    border: 1px solid var(--primary);
    color: var(--text);
}
.main:hover{
    background:var(--secondary);
    color: var(--tertiary);
}
.nav-btn{
    font-size: 14px;
    border: none;
    outline: none;
    border-radius: 5px;
    background: var(--secondary);
    color: var(--tertiary);
    transition: .30s ease;
    padding: 10px 20px;
}
.text-main{
      color: var(--secondary);
}
.margin{
    margin: 0 4%;
}
.margin-1{
    margin: 0 6%;
}
/* end of global design */
body{
    background-color: var(--tertiary);
    font-family: sans-serif;
    
}

/* side bar section */
#sidebar {
    position: fixed;
    top: 0;
    left: -1000px;
    height: 100vh;
    background:var(--light);
    width: 20%;
    transition: left 1.3s ease;
    display: none;
    z-index: 10000;
}
#sidebar.show{
    left: 0;
}
.no-scroll {
    overflow: hidden;
}
.side-logo{
    justify-self: center;
}
.side-right{
    display:block;
    align-items: center;
}
.side-item a{
    color: var(--text);
    text-decoration: none;
}
.side-item a:hover{
    color: var(--primary);
    text-decoration: none;
}
.side-item{
    margin-bottom: 20px;
}
.side-content {
    padding: 20px;
}
/* end of side bar section */

/*======================================================== theme section ==============================================================*/
.light-dark i{
    background: linear-gradient(to right, white, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}
body.dark-mode {
    background-color: #000;
}
body.dark-mode .all-about{
    background-color: #000;
}
body.dark-mode .all-hero{
    background-color: #000;
    color: var(--light);
}
body.dark-mode .main{
    background-color:var(--light);
}
body.dark-mode .hero-left h1{
    background: linear-gradient(to right,#335DA5,#FF6A3E,#FF6A3E,#335DA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .svs-item h5{
    color: var(--light);
}
body.dark-mode .all-partner{
    background-color: #000;
}
body.dark-mode .trust p{
    background: linear-gradient(to left, #FF6A3E,#335DA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .partner img{
    filter: contrast(1%) brightness(100%) ;
}
body.dark-mode .about-right p{
    color: var(--light);
}
body.dark-mode .about-right h2{
    background: linear-gradient(to left,#335DA5,#FF6A3E,#335DA5,#FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .about-img{
    background: var(--secondary);
}
body.dark-mode .service-content h3{
    background: linear-gradient(to right,#335DA5,#FF6A3E,#335DA5,#FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .service-content p{
    color: var(--light);
}
body.dark-mode .items{
    border: 0.5px solid #FF6A3E ;
    color: var(--light);
    background: transparent;
}
body.dark-mode .items i{
    background: linear-gradient(to right,#335DA5,#FF6A3E,#FF6A3E,#335DA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .work-content h3{
    background: linear-gradient(to right,#335DA5,#FF6A3E,#335DA5,#FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .work-content p{
    color: var(--light);
}
body.dark-mode .works p{
    color: var(--light);
}
body.dark-mode .trusted-content h3{
    background: linear-gradient(to right,#335DA5,#FF6A3E,#335DA5,#FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .trusted-content p{
    color: var(--light);
}
body.dark-mode .testimonial{
    background: transparent;
    border: 1px solid;
    border-image: linear-gradient(to right, #FF6A3E 2.33%,  #335DA5 46.66%, #d7d7d7 100% ) 1;
}
body.dark-mode .name h5{
    background: linear-gradient(to right,#335DA5,#FF6A3E,#335DA5,#FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .name h6{
    color: var(--light);
}
body.dark-mode .testimony p{
    color: var(--light);
}
body.dark-mode .next {
    border: 1px solid;
    color: var(--light);
}
body.dark-mode .prev {
    border: 1px solid #FF6A3E;
    color: var(--light);
}
body.dark-mode .next {
    border: 1px solid #FF6A3E;
    color: var(--light);
}
body.dark-mode .svs-item1 {
    background: transparent;
    border: 1px solid #FF6A3E;
}
body.dark-mode .all-navbar {
    background: #000;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #FF6A3E 2.33%,  #335DA5 46.66%, #d7d7d7 100% ) 1;
}
body.dark-mode .white-logo {
    display: block;
}
body.dark-mode .black-logo {
    display:none;
}
body.dark-mode .nav-center a {
    color: var(--light);
}
body.dark-mode .light-dark i{
    background: linear-gradient(to right,#335DA5,#FF6A3E,#FF6A3E,#335DA5); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .desktop-footer{
    background: #000;
}
body.dark-mode .all-policy p{
    color: var(--light);
}
body.dark-mode .all-policy a{
    color: var(--light);
}
body.dark-mode .desktop-left a{
    color: var(--light);
}
body.dark-mode .all-footer{
    background: #000;
}
body.dark-mode .foot-left p span{
    color: var(--light);
}
body.dark-mode .foot-center h3{
    background: linear-gradient(to right,#FF6A3E, #335DA5,#FF6A3E,#335DA5); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .link-items h5{
    color: var(--light);
}
body.dark-mode .foot-right h3{
    background: linear-gradient(to right,#FF6A3E, #335DA5,#FF6A3E,#335DA5); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.dark-mode .foot-right a{
    color: var(--light);
}
body.dark-mode .right-reserved p{
    color: var(--light);
}
body.dark-mode #sidebar {
    background: #000;
}
body.dark-mode .side-item a {
    color: var(--light);
}

/*================================================= end of theme section ===========================================================*/

/* navbar section */
.navbar-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-right{
    display: flex;
    align-items: center;
    gap: 20px;
}
.white-logo{
    display: none;
}
.nav-center a{
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
}
.all-navbar{
    background-color: var(--tertiary);
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
#bars {
    cursor: pointer;
    display: none;
}
#bars span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--secondary);
    margin-bottom: 5px;
    transition: 1s ease;
}
#bars.show span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
#bars.show span:nth-child(2) {
    opacity: 0;
}
#bars.show span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* end of navbar section */

/* hero section */
.all-hero{
    background-color: var(--light);
    border-radius: 10px;
}
.hero-content{
    display: flex;
    align-items:center;
    padding: 30px 50px 0px 50px;
}
.hero-left{
    width: 100%;
}
.hero-left h1{
    margin-bottom: 10px;
    font-size:55px;
    font-weight: bolder;
    color: var(--text);
    
}
.hero-left p{
    margin-bottom: 20px;
    font-size: 20px;
}

.hero-right{
    width: 100%;
}
.hero-right img{
    width: 100%;
}
.hero-img2{
    display: none;
}
.cta-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}
.svs{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.svs-item {
    text-align:center;
}
.svs-item h5{
    font-size: 37px;
    font-weight: bolder;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}
.svs-item h6{
    font-size: 15px;
    text-align: center;
}
/* end of hero section */

/* partner section */

.partner{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
    justify-items: center;
}
.trust p{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: var(--text);
}
.all-partner{
    padding: 40px 0;
}
.partner-logo{
    display: none;
}
.partner-1 {
    display: none;
}
/* end of partner section */

/* about section */
.about-content{
    display: flex;
    align-items: center;
    gap: 30px;
}
.about-left{
    width: 90%;
}
.about-right{
    width: 110%;
    text-align: block;
}
.about-left img{
    width: 100%;
}
.all-about{
    background-color: var(--light);
    border-radius: 10px;
    padding: 30px;
}
.about-right h2{
    font-weight: bolder;
    font-size: 40px;
    background: linear-gradient(to right,#335DA5, #FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-right p{
    color:var(--text);
}
.about-img{
    background: var(--foot);
    padding: 20px 20px 0 20px;
    border-radius: 80px 80px 0 0;
}
/* end of about section */


/* service section */
.service-content{
    text-align: center;
}
.service-content p span{
    display: block
}
.service-content h3{
    font-size: 30px;
    font-weight: bolder;
    color: var(--text);
}
.service-content p{
    color: var(--text);
    font-size: 14px;
}
.all-service {
    padding: 70px 0px;
}
.items{
    display: block;
    padding: 20px;
    background-color: var(--light);
    color: var(--text);
    border-radius: 10px;
} 
.items:hover{
    display: block;
    padding: 20px;
    border-radius: 10px;
    background: var(--secondary);
    color: var(--tertiary);
}
.items h6{
    font-weight: bolder;
}
.items p{
    font-size: 13px;
}
.service-items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:10px;
}
/* end of service section */

/* how it works section */
.work-content{
    text-align: center;
}
.work-content p span{
    display: block
}
.work-content h3{
    font-size: 30px;
    font-weight: bolder;
    color: var(--text);
}
.work-content p{
    color: var(--text);
    font-size: 14px;
    margin-bottom: 50px;
}
.num{
    font-size: 25px;
    font-weight: bolder;
    padding: 7px;
    background: var(--secondary);
    color: var(--tertiary);
    width: fit-content;
    height: fit-content;
    border-radius: 100%;
}
.works h5{
    font-weight: bolder;
    background: linear-gradient(to right,#335DA5,#FF6A3E,#FF6A3E,#335DA5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.works p{
    font-size: 15px;
    color: var(--text);
}
.work-items{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    gap: 80px;
}
.work-items-1{
    width: 100%;
}
.work-items-2{
    width: 100%;
}
.work-items-2 img{
    z-index: 1;
    width: 80%;
}
.work-items-3{
    width: 100%;
}
.rotate{
    transform: rotate(-20deg);
    z-index: 1;
}
/* end of  how it works section */

/* trusted section */
.all-trusted{
    padding: 70px 0px;
}
.trusted-content{
    text-align: center;
}
.trusted-content p span{
    display: block
}
.trusted-content h3{
    font-size: 30px;
    font-weight: bolder;
    color: var(--text);
}
.testimonial{
    background-color: var(--light);
    padding: 70px;
    border-radius: 10px;
}
.person{
    display: flex;
    align-items: center;
    gap: 20px;
}
.person img{
    width: 100px;
    border-radius: 100%;
}
.name h6{
    font-size: 12px;
    color: var(--text);
}
.name h5{
    font-weight: bolder;
    color: var(--text);
}
.prev{
    padding: 10px 15px 10px 15px;
    border: 1px solid var(--universe);
    width: fit-content;
    height: fit-content;
    border-radius: 10px;
    cursor: pointer;
}
.prev:hover {
    background: var(--secondary);
    color: var(--tertiary);
    border: none;
    
}
.next{
    padding: 10px 15px 10px 15px;
    border: 1px solid var(--universe);
    width: fit-content;
    height: fit-content;
    border-radius: 10px;
    cursor: pointer;
}
.next:hover {
    background: var(--secondary);
    color: var(--tertiary);
    border: none;
}
.next-prev{
    display: block;
}
.testionial-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    height:fit-content;
}
.testimony{
    font-size: 14px;
}
.user-testimony{
    display: none;
}
.user-testimony.active{
    display: block;
}
.user {
    overflow-y: auto;
}
/* end of trusted section */

/* svs section */
.svs-item1{
    padding: 20px;
    background: var(--secondary);
    color: var(--light);
    text-align: center;
    border-radius: 20px;
}
.svs-item1 h1{
    font-size: 80px;
    font-weight: bolder;
}
.svs-item1 span{
    font-size:80px;
    font-weight: bolder;
    color: var(--light);
}
.svs-item1 h6{
    color: var(--light);
    font-size: 19px;
    
}
.svs-content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    width: 100%;
}
/*end of svs section */

/* mobile footer section */
.all-footer{
    background-color: var(--foot);
    padding: 80px 0 30px 0;
    display: none;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.foot-left span{
    /* display: block; */
    color: var(--text);
}
.link-items a{
    display: block;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 10px;
}
.link-items h5{
    font-size: 17px;
    color: var(--text);
}
.foot-center h3{
    font-weight: bold;
    color:var(--text) ;
    margin-bottom: 10px;
}
.foot-right h3{
    font-weight: bold;
    color:var(--text) ;
    margin-bottom: 15px;
}
.foot-right h5{
    display: flex;
    gap: 10px;
    font-size: 17px;
    margin-bottom: 15px;
    align-items: center;
}
.foot-right i{
    background: linear-gradient(to right,#335DA5,#FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.foot-right a{
    text-decoration: none;
    color: var(--text);
}
.right-reserved{
    display: flex;
    justify-content:left;
    font-size: 15px;
    color: var(--text);
}
/* end of mobile footer section */

/* desktop footer section */
.desktop-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}
.desktop-left{
    display: flex;
    align-items:center;
    gap: 15px;
    text-decoration: none;
}
.desktop-left a{
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: bolder;
}
.desktop-right{
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.desktop-right i{
    background: linear-gradient(to right,#335DA5,#FF6A3E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.desktop-footer{
    background-color: var(--foot);
    padding: 30px 0;
}
.line{
    width: 100%;
    height: 2px;
    background-color: var(--universe);
    margin-bottom: 40px;
}
.all-policy{
    display: flex;
    align-items: baseline;
    justify-self: center;
    gap: 20px;
    font-size: 14px;
    color: var(--text);
}
.all-policy a{
    color: var(--text);
    text-decoration:none;
}
.desktop-logo{
    display: flex;
    justify-self: center;
}
/* end of desktop footer section */

#preloader {
    display: none;
}
.all-about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.515), rgba(0,0,0,0.515)), url(../image/img-4.jpg) no-repeat center center/cover;
    padding: 80px 0;
}
.about-hero-content h1 {
    color: var(--tertiary);
    font-size: 45px;
    font-weight: 600;
    text-align: center;
}
.home-navigate a, .home-navigate span {
    color: var(--tertiary);
    font-weight: bold;
}
.home-navigate {
    color: var(--tertiary);
    font-size:14px ;
    padding: 4px 10px;
    border: 1px solid var(--tertiary);
    border-radius: 6px;
    width: fit-content;
    display: flex;
    justify-self: center;
}
.home-navigate label{
    display: flex;
    align-items: center;
    gap: 10px;
}