*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.flex{
    display: flex;
}
.center{
    justify-content: center;
}
.text-center{
    text-align: center;
}
.text-muted{
    color: rgba(95, 95, 95 );
}

.row{
    display: flex;
}

.col-6{
    flex: 0 0 50%
}

.position-relative{
    position: relative
}

.d-none{
    display: none
}

.container{
    max-width: 1140px
}

h1 {
  font-size: 2em
}

/* header */
.hero-section{
    position: relative;
}

.header{
    background-image: linear-gradient(95deg, rgb(0 0 0) 12%, rgb(24 24 24), rgb(4 4 4));
    width: 100%;
    height: 100%;
    z-index: -1;
    /*clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);*/
}

#top-bar .main-bar-social-btns{
    list-style: none;
    display: flex;
    margin-left: 10px;
}

#top-bar .main-bar-social-btns > li > a{
    display: inline-block;
    padding: 6px 12px;
    margin: 0px 10px;
    color: #ffffff;
    background: #1e1e1e;
    border-radius: 25px;
}

.fixed-topbar .main-bar-social-btns > li > a{
    border: 1px solid #f7f7f7;
    margin: 0px 8px;
    color: #4b4b4b;
}

#top-bar .main-bar-social-btns > li > a > i{
    font-size: 16px;
}

.main-bar .main-bar-right{
    display: flex; 
    color: #fff;
}

#mobile-menu-bar{
    display: none;
    position: fixed;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    width: 75%;
    z-index: 999;
    box-shadow: 9px 2px 9px -3px rgba(35, 35, 35,0.75);
    -webkit-box-shadow: 9px 2px 9px -3px rgba(35, 35, 35,0.75);
    -moz-box-shadow: 9px 2px 9px -3px rgba(35, 35, 35,0.75);
}

.fixed-topbar .main-bar-right{
    display: none;
}

#footer-social-btns{
    list-style: none;
    display: flex;
    gap: 10px;
}

#footer-social-btns > li > a{
    display: inline-block;
    padding: 8px 14px;
    color: #fff;
    background: #252525;
    border-radius: 25px;
    font-size: 14px;
}

#global-scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  border-radius: 50%;
  right: 30px;
  bottom: -15px;
  z-index: 99999;
  background-color: #f57100;
  width: 50px;
  height: 50px;
  transition: all 0.4s;
  font-size: 22px;
  box-shadow: 1px 8px 9px -5px rgb(16 16 16 / 79%);
  -webkit-box-shadow: 1px 8px 9px -5px rgb(16 16 16 / 79%);
  -moz-box-shadow: 1px 8px 9px -5px rgb(16 16 16 / 79%);
  border: none
}

#global-scroll-top i {
  color: #232323;
  padding: 14px 16px;
}

#global-scroll-top:hover {
  background-color: #000;
  color: #fff;
}

#global-scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}

.hero-bg-bubbles{
    z-index: 1
}
.hero-bg-bubbles li{
    content: '';
    width: 100px;
    height: 100px;
    background-color: transparent;
    position: absolute;
    bottom: 30%;
    list-style: none;
    opacity: 0;
    animation: bg-animate 10s linear infinite;
}
.hero-bg-bubbles li:nth-child(1){
    left: 4%;
    bottom: 32px;
    width: 50px;
    animation-delay: 1s;
    
    background: #c3c3c3;
    height: 50px;
    border: none;
    
}
.hero-bg-bubbles li:nth-child(2) {
    left: 42%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
    bottom: 0;
    border: none;
    background: #c3c3c3;
}

.hero-bg-bubbles li:nth-child(3) {
    left: 64%;
    top: 279px;
    width: 40px;
    height: 40px;
    background: #c3c3c3;
    animation-delay: 3s;
}
.hero-bg-bubbles li:nth-child(4){
    left: 75%;
    animation-delay: 0s;
    top: 179px;
    width: 40px;
    height: 40px;
    background: #c3c3c3;
    border: none;
}
.hero-bg-bubbles li:nth-child(5){
    left: 85%;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
    bottom: 250PX;
    border: none;
    background: #c3c3c3;
   
}
.hero-bg-bubbles li:nth-child(6){
    left: 25%;
    width: 70px;
    height: 70px;
    background-color:  #c3c3c3;
    animation-delay: 3s;
    border: none;

   
}
.hero-bg-bubbles li:nth-child(7){
    left: 8%;
    width: 70px;
    height: 70px;
    background-color: #c3c3c3;
    animation-delay: 0s;

   
}

@keyframes bg-animate {
    0%{
        /* transform: rotate(360deg) scale(10) translateY(-1400px); */
        opacity: 1;
    }
    100%{
        transform:translateY(-500px) rotate(360deg);
        
    }
}

#top-bar{
    background-color: #f57100;
    color: #fff;
    background-image: linear-gradient(95deg, rgb(0 0 0) 12%, rgb(4 4 4), rgb(53 53 53));
}

#top-bar .container{
    width: 85%;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    padding: 8px 0px;
}

#top-bar .contact-details .contact-details-item{
    color: #e3e3e3;
    margin-right: 25px;
    font-size: 14px
}

.header .main-bar{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: sticky;
    background: #fff;
    padding: 10px 0;
}
.header .fixed-topbar{
    width: 100%;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    position: fixed;
    top: 0;
    background: #fff;
    -webkit-box-shadow: -1px 33px 41px -23px rgba(0,0,0,0.42);
    -moz-box-shadow: -1px 33px 41px -23px rgba(0,0,0,0.42);
    box-shadow: -1px 33px 41px -23px rgba(0,0,0,0.42);
}
.header .main-bar .nav-bar ul li,
.header .fixed-topbar .nav-bar ul li{
    list-style: none;
    margin: 0px 15px;      
}

.header .main-bar .nav-bar ul li a,
.header .fixed-topbar .nav-bar ul li a{
    text-decoration: none;
    list-style: none;
    color: #4a4a4a;
    font-size: 14px
}
.header .main-bar .nav-bar ul li a.active,
.header .fixed-topbar .nav-bar ul li a.active{
    color: #ffffff;
    font-weight: 500;
    background-color: #f57100;
    padding: 12px 20px;
    border-radius: 8px;
}
.header .fixed-topbar .nav-bar ul li a {
    color: #0c093e;
    font-size: 14px
}
.header .main-bar .btn button,
.header .fixed-topbar .btn button{
    padding: 3px 20px;
    border: none;
    color: #4e4949;
    border-radius: 15px;
    background-color: white;
    font-weight: 600;
    font-size: 15px;
}

.header .main-bar .logo img{
    object-fit: contain;
}

.header .fixed-topbar .logo img{
    object-fit: contain;
}

.header .main-bar .expand-btn,
.header .fixed-topbar .expand-btn{
    display: none;
}

.header .main-bar .expand-btn button,
.header .fixed-topbar .expand-btn button{
    background: none;
    border: none;
}

.header .hero-section .container{
    height: 100%;
    justify-content: flex-start;
    align-items: center;
    z-index: 2;
    width: 85%;
    margin: 20px auto 0
}

.header .hero-section .left-side{
    color: white;
    width: 50%;
}
.header .hero-section .features-section {
    align-items: center;
    margin-top: 17px;
    margin-bottom: 25px;
    justify-content: space-between;
}
.header .hero-section .features-section i{
    font-size: 17px;
    color: #ffffff
}
.header .hero-section .left-side h1{
    color: white;
    font-size: 2.5rem;
}
.header .hero-section .left-side h2{
    color: #8f8f8f;
    padding-bottom: 13px;
    font-size: 18px;
    font-weight: 200;
}
.header .hero-section .left-side p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #b1b0b0;
    line-height: 1.4rem;
}
.header .hero-section .separator{
    border-bottom: 1px solid rgb(30 30 30);
    width: 150px;
    margin-right: auto;
    margin-top: 20px;
}
.header .hero-section .left-side .features-section{
    padding-top: 10px
}
.header .hero-section .left-side .features-section .hero-feature {
    color: #7b7b7b;
    font-size: 14px;
    font-weight: 600;
    background: #080808;
    padding: 20px;
    border-radius: 30px;
}
.header .hero-section .left-side .hero-btn{
    padding: 16px 32px;
    border-radius: 5px;
    color: white;
    margin: 17px 0 10px 0;
    background-color: #f57100;
    border: 2px solid #f57100;
    font-size: 13px;
    box-shadow: 0px 3px 5px 1px rgb(20 20 20 / 21%);
    text-transform: uppercase;
}
.header .hero-section .right-side{
    width: 50%;
    height: 100%
}
.hero-img .main-img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-img .wheel-img{
    width: 5%;
    height: 96px;
    right: 169px;
    bottom: 0px;
    z-index: 1;
    position: absolute;
    object-fit: contain;
    ANIMATION: wheel 10s linear infinite;
}
@keyframes wheel{
    100%{
        transform: rotate(360deg);
    }
}
.hero-img .whee-img {
    width: 3%;
    height: 80px;
    right: 141px;
    bottom: 62px;
    z-index: 1;
    position: absolute;
    object-fit: contain;
    ANIMATION: whee 10s linear infinite;
}
@keyframes whee{
    100%{
        transform: rotate(-360deg);

    }
}
    
/* services */
#services {
    background: url("../../images/background/bg-6.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#services .container{
    text-align: center;
    margin: auto;
    padding: 100px 0px 85px;
    width: 75%;
}
#services .title p{
    text-transform: uppercase;
    color: #8c8c8c;
    font-size: 16px;
    font-weight: 500;
}
#services .title h1{
    color: #333131;
    font-size: 30px
}
.bor-shadow{
    border-bottom: 3px solid rgb(255 131 2);
    width: 100px;
    margin: 20px auto;

}
#services .services-col{
    margin: 85px 0 50px;
    justify-content: space-between;
    gap: 5%
}
#services .col-1{
    text-align: center;
    width: 45%;
    padding: 35px 25px;
    background-image: linear-gradient(150deg, rgb(0 0 0) 12%, rgb(24 24 24), rgb(4 4 4));
    border-radius: 39px;
}
#services .col-1 .services-count{
    position: absolute;
    top: -30px;
    left: 5%;
    background: #ff7600;
    border-radius: 50%;
    color: #fdfeff;
    font-size: 30px;
    font-weight: 700;
    width: 60px;
    height: 60px;
    place-content: center;
    border: 3px solid #ececec;
}
#services .col-1 .services-title{
    justify-content: space-evenly;
    color: #fff;
    margin-bottom: 12px;
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}
#services .col-1 .icon-services img{
    width: 40px;
    height: 40px;
}

#services .col-1 h3{
    color: #e9e7e7;
    padding: 25px 0px 10px;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 900;
}
#services .col-1 p{
    color: rgb(200 200 200);
    font-size: 12px;
    text-align: center;
    line-height: 1.2rem;
}
#services .web-technologies-images{
    flex-wrap: wrap;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-evenly;
    margin-top: 15px;
}
#services .web-technologies-images .img-col{
    flex: 0 0 40%;
    margin: 10px 0;
    background-color: #272727;
    padding: 5px;
    border-radius: 10px;
}

.update-section 
{
    height: 240px;
    margin: auto;
    background-image: linear-gradient(184deg, rgb(3 52 103) 12%, rgb(8 64 123), rgb(16 72 131));
    position: relative;
}
.update-section .cols {
    align-items: center;
    height: 100%;
    justify-content: space-evenly;
}
.update-section .col-1 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 60%;
}
.update-section .col-1 .box-1{
    position: relative;
    width: 30%;
    height: 147px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: transparent;
    overflow: hidden;
    border-radius: 10px;
}
.update-section .col-1 .box-1::before{
    content: '';
    position: absolute;
    width: 80px;
    height: 180%;
    background: linear-gradient(#f3f3f3,#f3f3f3);
    animation: animate 8s linear infinite;

}
.update-section .col-1 .box-1::after{
    content: '';
    position: absolute;
    background-image: linear-gradient(280deg, rgb(5 2 46) 12%,rgb(203, 197, 234),rgb(13 9 64)12%);
    /* background-image: linear-gradient(360deg, rgb(5 2 46) 12%,rgb(54 36 145),rgb(13 9 64)86%); */
    inset: 4px;
    border-radius: 7px;
}
@keyframes animate
{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.update-section .col-1 .box-1 h1{
    color: #fff;
    font-size: 30px;
    position: relative;
    z-index: 10;
}
.update-section .col-1 .box-1 p{
    color: #a4a4a4;
    font-size: 14px;
    position: relative;
    z-index: 10;
}
.update-section .col-2 h1{
    color: #fff;
    z-index: 999;
    font-size: 28px;
    margin-bottom: 15px;

}
.update-section .col-2 p{
    color: #f9f9f9;
    z-index: 999;
    font-size: 13px;
}
.update-section .col-2 input{
    height: 35px;
    width: 70%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border: none;
    margin-top: 20px;
    padding-left: 20px;
    font-size: 11px
}
.update-section .col-2 .update-icon {
    background-color: white;
    display: inline-block;
    padding: 4px 15px 7.5px 8px;
    margin-top: 20px;
    align-items: center;
    margin-left: -10px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.update-section .col-2 .update-icon i{
    color: rgb(29 17 95);
    font-size: 20px;
}
.update-section .shadow-img {
    position: absolute;
    right: 78px;
    top: 20px;
    width: 50px;
    height: 50px;
    opacity: 0.2;
    animation: cross 5s linear infinite;
    z-index: 2;
}
.update-section .x-img {
    position: absolute;
    right: 60px;
    bottom: 34px;
    width: 95px;
    height: 90px;
    opacity: 1;
    animation: cross 5s linear infinite;
    z-index: 3;
}

@keyframes cross{
    10%{
        transform: scale(0.2);
    }
    10%{
        transform: rotate(360deg);
    }
}
/* about us */

#about-us{
    background-image: url("../../images/background/bg-7.jpg");
    background-size: cover;
    background-position: top;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -2;
    background-attachment: fixed;
}
#about-us .overlay{
    background: #000000d9;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
#about-us .about-us-container{
    width: 90%;    
    margin: auto;
    padding: 80px 0;
    align-items: center;
}
#about-us .about-img{
    width: 50%;
}
#about-us .about-img img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 50px;
    box-shadow: -4px 10px 46px 0px rgb(245 245 245 / 38%);
    -webkit-box-shadow: -4px 10px 46px 0px rgb(245 245 245 / 38%);
    -moz-box-shadow: -4px 10px 46px 0px rgb(245 245 245 / 38%);
}

#about-us .about-desc{
    width: 50%;
    padding-left: 50px;
}
#about-us .about-desc h1{
    color: rgb(163 163 163);
    font-size: 20px;
    font-weight: unset;
    line-height: 1.2;
}
#about-us .about-desc .heading{
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
}
#about-us .about-desc .heading span{
    color: #ffb100;
}
#about-us .about-desc .bor-shadow{
    margin: 20px auto 0 0;
}
#about-us .about-desc p{
    color: #ffffff;
    font-size: 13px;
    line-height: 1.8;
    margin: 22px 0 5px 0;
}
#about-us .about-desc .about-icons{
    align-items: center ;
    margin-top: 20px;
    color: #b9b7b7;
    text-transform: uppercase;
}
#about-us .about-desc .about-icons-2{
    padding: 5px 0px;
    align-items: center;
    color: #b9b7b7;
    text-transform: uppercase;
}
#about-us .about-desc .about-icons i,
#about-us .about-desc .about-icons-2 i{
    margin-right: 18px;
    color: #ff8302;
    font-size: 20px;
}
#about-us .about-desc .about-icons p,
#about-us .about-desc .about-icons-2 p{
    font-size: 18px;
    color: rgb(153, 153, 153)
}
#about-us .about-desc .about-us-btn{
    background-color: #ff7600;
    padding: 13px 33px;
    text-transform: capitalize;
    color: #e1e1e1;
    font-size: 14px;
    font-weight: 500;
    border-radius: 23px;
    margin-top: 35px;
    border: 2px solid #ff9900;
}
/* portfolio */

#portfolio{
    padding-bottom: 100px;
    padding-top: 80px;
    background-image: url("../../images/background/bg-new.jpg");
}

#portfolio .container{
    margin-left: auto;
    margin-right: auto;
}

#portfolio .title{
    text-align: center;
}

#portfolio .title p{
    text-transform: uppercase;
    color: #8c8c8c;
    font-size: 16px;
    font-weight: 500;
}

#portfolio .title h1 {
    color: rgb(5, 5, 48);
    font-size: 42px;
}

#portfolio .portfolio-container{
    position: relative;
    margin-top: 50px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

#portfolio .portfolio-container .portfolio-img,
#portfolio .portfolio-container .portfolio-desc{
    flex: 0 0 50%;
}

#portfolio .portfolio-container .portfolio-desc{
    padding: 35px;
    border-radius: 30px;
    align-items: center;
    background-image: linear-gradient(95deg, rgb(0 0 0) 12%, rgb(24 24 24), rgb(4 4 4));
    box-shadow: -4px 10px 46px 0px rgba(0, 0, 0, 0.45);
    -webkit-box-shadow: -4px 10px 46px 0px rgb(0 0 0 / 45%);
    -moz-box-shadow: -4px 10px 46px 0px rgba(0, 0, 0, 0.45);
}

#portfolio .portfolio-container .portfolio-img{
    text-align: center
}
 
#portfolio .portfolio-container .portfolio-desc .heading{
    padding-bottom: 5px;
    font-size: 20px;
    color: #fffefd;
    text-transform: uppercase;
}

#portfolio .portfolio-container .portfolio-desc .portfolio-details{
    padding: 15px;
    border-left: 1px solid #252424;
    margin-left: 15px;
    padding-left: 22px;
}

#portfolio .portfolio-container .portfolio-desc .portfolio-details .bor-shadow {
    margin: 3px auto 15px 0;
}

#portfolio .portfolio-container .portfolio-desc .portfolio-details .intro{
    font-size: 14px; 
    color: #bfbfbf;
    line-height: 1.2rem;
}

#portfolio .portfolio-container .portfolio-desc .portfolio-details a{
    background-color: #065fa9;
    display: inline-block;
    padding: 12px 30px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
}

#portfolio-arrow-1{
    width: 240px;
    position: absolute;
    top: 188px;
    left: 42%;
    height: 140px;
    z-index: -1;
}

#portfolio-arrow-2{
    width: 260px;
    position: absolute;
    top: 510px;
    left: 34%;
    height: 140px;
    z-index: -1;
}

/* old portfolio
#portfolio{
    width: 95%;
    margin: auto;
    background-color: #e2e0e0;
    height: 650px;

}
#portfolio .portfolio{
    height: 100%;
    width: 94%;
    margin: auto;
    padding: 40px 0;
    display: flex;
}
.swiper-css-mode>.swiper-wrapper>.swiper-slide{
    display: flex;
}

#portfolio .left-side {
    width: 40%;
    height: 100%;
    position: relative;   
    padding-right: 20px;
}
#portfolio .left-side h1{
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    color:#fff;
    padding: 14px 0;
    
}
#portfolio .left-side .top-linear-img{
    width: 100%;
    height: 40%;
    background: linear-gradient(182deg, #505050, #000000f7);

}
#portfolio .left-side .center-content{
    position: absolute;
    top: 109px;
    left: 105px;
    width: 309px;
    height: 330px;
    background-color: white;
}
#portfolio .left-side .center-content .main-img{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#portfolio .left-side .center-content .main-img .overlay{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: -7px;
    left: -10px;
    background-image: linear-gradient(171deg, rgb(171 171 171),rgb(8 8 8),rgb(162 162 162));
}
#portfolio .left-side .center-content .main-img img{
    height: 100%;
    width: 100%;
    z-index: 1;
    position: absolute;
}
#portfolio .left-side .bottom-img{
    background-color: white;
    height: 60%;
}
#portfolio .left-side .bottom-img .bottom-linear{
    content: '';
    width: 309px;
    height: 207px;
    position: absolute;
    bottom: 29px;
    right: 20px;
    background-color: #000000;
    opacity: 0.6;
    z-index: 2;
}

#portfolio .left-side .top-dot{
    
    position: absolute;
    top: 158px;
    right: 50px;
}
#portfolio .left-side .top-dot li,#portfolio .left-side .bottom-dot li{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(161deg, #111111c2 , #e9e9e9);
    list-style: none;
    margin-top: 20px;
    
}
#portfolio .left-side .bottom-dot{
    position: absolute;
    bottom: 30px;
    left: 50px;
}
#portfolio .right-side {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 60%;
    justify-content: space-between;
    align-content: space-between;
}
#portfolio .right-side .card{
    width: 389px;
    height: 176px;
    background-color: white;
    margin-bottom: 20px;
}
#portfolio .right-side .card img{
    width: 100%;
    height: 100%;
} */
/* Team members */
.team-sec-container{
    text-align: center;
    width: 80%;
    margin: auto;
    margin-top: 80px;
}
#team-sec .title p{
    text-transform: uppercase;
    color: #8c8c8c;
    font-size: 17px;
    font-weight: 500;
}
#team-sec .title h1{
    color: rgb(5, 5, 48);
    font-size: 30px;
    margin-top: 10px;
}
#team-sec .cards{
    display: flex;
    justify-content: space-evenly;
    
}
#team-sec .cards .card{
    width: 34%;
    margin: 20px 0;
}
#team-sec .cards .img{
    width: 100%;
    height: 250px;
    border-radius: 50%;
    text-align: center;
}
#team-sec .cards img{
    width: 80%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
#team-sec .cards .card p{
    font-size: 19px;
    font-weight: bold;
    color: #3e3e3e;
    margin-top: 10px;
}
#team-sec .cards .card .team-role {
    font-size: 14px;
    color: #a7a4a4;
}
/* Review */
#homepage-review{
    padding-bottom: 100px;
    padding-top: 80px;
    background-image: url("../../images/background/bg-6.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.homepage-review-container{
    text-align: center;
    width: 70%;
    margin: auto;
    margin-top: 100px;
}

#homepage-review .title p{
    text-transform: uppercase;
    color: #8c8c8c;
    font-size: 16px;
    font-weight: 500;
}
#homepage-review .title h1{
    color: rgb(5, 5, 48);
    font-size: 35px
}

#homepage-review .review-slider{
    color: #ffffff;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 25px;
    background-image: linear-gradient(95deg, rgb(0 0 0) 12%, rgb(24 24 24), rgb(4 4 4));
    box-shadow: -4px 10px 46px 0px rgba(0, 0, 0, 0.45);
    -webkit-box-shadow: -4px 10px 46px 0px rgb(0 0 0 / 45%);
    -moz-box-shadow: -4px 10px 46px 0px rgba(0, 0, 0, 0.45);
    margin-top: 55px;
}

#homepage-review .homepage-review-container {
    margin-top: 50px;
}
#homepage-review .homepage-review-container .stars {
    margin-top: 5px;
}
#homepage-review .homepage-review-container .stars img{
    width: 20px;
    height: 20px;
}
#homepage-review .homepage-review-container h3{
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
}
#homepage-review .homepage-review-container h3 span{
    color: #f96800
}
#homepage-review .homepage-review-container .review-desc p{
    margin-top: 20px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    color: #a59e9e;
    line-height: 1.7;
    font-size: 15px;
    width: 95%;
}
#homepage-review .homepage-review-container .review-desc p i.fa.fa-quote-left,
#homepage-review .homepage-review-container .review-desc p i.fa.fa-quote-right {
    color: #ffffff;
    font-size: 20px;
}
#homepage-review .homepage-review-container hr{
    width: 30%;
    margin: auto;
    border: 1px solid #f3f3f3;
}
#homepage-review .homepage-review-container .profile-detail{
    margin-top: 50px;
}
#homepage-review .homepage-review-container .profile-detail img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 15px #ff5e00d6;
    margin-bottom: 10px;
}
#homepage-review .homepage-review-container .profile-detail .client-name{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 7px;
}
#homepage-review .homepage-review-container .profile-detail .client-name span{
    color: #f57100;
}
#homepage-review .homepage-review-container .profile-detail p{
    font-size: 13px;
}

#homepage-review .slider-buttons{
    margin-top: 25px;
}

#homepage-review .slider-button{
    background: transparent;
    border: 1px solid #e1e0e0;
    padding: 12px 20px;
    border-radius: 50%;
    font-size: 17px;
}


/* Statistic */

.Statistic {
    min-height: 500px;
    position: relative;
}
.statistic-image{
    flex: 0 0 40%;
}
.statistic-desc{
    background: rgb(0 0 0);
    flex: 0 0 60%;
}
.Statistic .statistic-img{
    width: 100%;
    height: 100%;
    position: relative;
    background-position: top;
    background-size: cover;
    background-image: url("../../images/founder.jpg");
}
.founder-right-upper{
    background: rgb(18 18 18);
    padding: 25px 55px;
}
.statistic-right-bottom{
    padding: 40px 55px;
}
.founder-right-upper .name{ 
    text-transform: uppercase;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}
.founder-right-upper .name .f-name{
    font-size: 32px;
    color: #f96800;
    font-weight: 600;
    text-transform: uppercase;
}
.Statistic .statistic-desc .text .signature{ 
    font-family: "Qwitcher Grypen", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    color: #ffffff;
}
.Statistic .statistic-desc h2{
    font-size: 23px;
    line-height: 1.3;
    color: rgb(173 173 173);
    font-weight: 400;
}
.Statistic .statistic-desc .text{
    font-size: 15px;
    line-height: 1.4;
    color: rgb(167 165 165);
}

.Statistic .statistic-desc .text .desc{
    border-bottom: 2px solid #1c1c1c;
    padding-bottom: 22px;
}

.Statistic .statistic-desc .btn{
    padding: 10px 32px;
    border-radius: 25px;
    color: white;
    margin: 15px 0 10px 0;
    background-color: #f57100;
    border: 2px solid #f96800;
    font-size: 12px;
    box-shadow: 0px 3px 5px 1px rgb(20 20 20 / 21%);
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}
.Statistic .statistic-desc .statistic-design {
    display: flex;
    width: 100%;
    margin-top: 40px;
    left: 0;
}

.Statistic .statistic-desc .statistic-design .design{
    color: rgb(255 255 255);
    font-size: 20px;
    font-weight: 600;
    padding: 25px 20px;
    border: none;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    
}
.Statistic .statistic-desc .statistic-design .design .over-lay{
    content: '';
    width: 114%;
    height: 114%;
    top: -7px;
    left: -8px;
    border-radius: 50%;
    position: absolute;
    border: 8px solid rgb(96 166 9);
    border-top: 8px solid rgb(192 192 192);
}

.Statistic .statistic-desc .statistic-design .design-2{
    margin-left: 35px;
}

/* faq */
.faq {
    min-height: 500px;
    position: relative;
    background: rgb(0 0 0);
    overflow: hidden
}

.faq-desc{
    flex: 0 0 100%;
    margin-left: auto;
    margin-right: auto;
}

.faq-right-upper{
    background: rgb(18 18 18);
    padding: 25px 0px
}
.faq-right-upper .container,
.faq-right-bottom .container{
    margin-left: auto;
    margin-right: auto;
}
.faq-right-bottom{
    padding: 40px 0;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.faq-right-upper .container{
    gap: 21px;
    width: 75%;
    justify-content: center;
    align-items: center;
}

.faq .fa-question{
    color: #ffffff;
    font-size: 35px;
    border: 3px solid #ef9d22;
    padding: 20px 25px;
    border-radius: 50%;
    background: #ff6a00;

}
.faq .faq-title span{ 
    text-transform: uppercase;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
}
.faq .faq-title{
    font-size: 20px;
    color: #f96800;
    font-weight: 700;
    text-transform: uppercase;
}
.faq .faq-desc h2{
    font-size: 23px;
    line-height: 1.3;
    color: rgb(173 173 173);
    font-weight: 400;
}

.faq .faq-right-bottom .accordion-item .accordion-header{
    color: #ffffff;
    background: #232222;
    padding: 20px 15px;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.faq .faq-right-bottom .accordion-item{
    margin-bottom: 25px;
}

.faq .faq-right-bottom .accordion-item .accordion-header .expand-btn{
    color: #d3d3d3;
    font-size: 23px;
    border: none;
    background: none;
}

.faq .faq-right-bottom .accordion-item .accordion-header .expand-btn i{
    color: #f57100
}

.faq .faq-right-bottom .accordion-item .accordion-body{
    background: #1e1e1e;
    padding: 30px 15px;
    color: #a5a5a5;
    line-height: 1.3rem;
    font-size: 0.94rem;
}

.faq .faq-right-bottom .accordion-item.active .accordion-body{
    display: block !important;
}

/* contact-us */

#contact-us{
    padding-top: 50px;
    padding-bottom: 50px;
    background-image: url("../../images/background/bg-6.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -6;
    position: relative;
}
#contact-us .container{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0;
    background-image: url("../../images/background/bg-7.jpg");
    justify-content: space-around;
    align-items: center;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: -2;
    background-attachment: fixed;
    border-radius: 25px;
}
#contact-us .container .overlay{
    background: #000000db;
    z-index: -1;
    position: absolute;
    inset: 0;
    border-radius: 25px;
}
#contact-us .left-side{
    width: 50%;
}

#contact-us .right-side{
    width: 33%;
}
#contact-us .left-side .title p{
    text-transform: uppercase;
    color: #939393;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

#contact-us .left-side h2{
    font-size: 27px;
    line-height: 1.3;
    color: rgb(241 241 241);
    font-weight: 800;
    text-align: center;
}

#contact-us .left-side input{
    width: 100%;
    margin-top: 25px;
    border-radius: 4px;
    border: 2px solid rgb(151 151 151);
    padding: 12px 20px;
    font-size: 12px;
    background: transparent;
}

#contact-us .left-side input::placeholder,
#contact-us .left-side textarea::placeholder{
    color: #c3c3c3;
}

#contact-us .left-side .phone-input{
    margin-left: 30px;
    font-size: 12px
}
#contact-us .left-side .form-desc{
    color: rgb(153 155 159);
    margin: 10px 0;
    font-size: 14px;
}

#contact-us .left-side textarea{
    width: 100%;
    margin-top: 25px;
    border-radius: 4px;
    border: 2px solid rgb(151 151 151);
    padding: 12px 15px;
    font-size: 12px;
    background: transparent
}

#contact-us .left-side .contact-btn{
    background-color: #ff5e00;
    border: none;
    padding: 15px 25px;
    text-transform: capitalize;
    color: #e7e7e7;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

#contact-us .left-side .contact-btn:hover{
    cursor: pointer;
    background-color: #101010;
}

#contact-us .right-side .right-side-container{
    padding: 25px 30px 30px 30px;
    background-color: #000000a6;
}

#contact-us .right-side .top-box .row{
    margin-top: 10px;
}
#contact-us .right-side .top-box .col .logo,
#contact-us .right-side .right-side-container .book-call-section .logo{
    align-items: center;
    margin-top: 20px;
    color: #fafbf8;
}
#contact-us .right-side i{
    color: #f96800
}
#contact-us .right-side .top-box .col h4{
    font-size: 14px;
    color: #070740;
    margin-left: 20px;
}

#contact-us .right-side .top-box p{
    font-size: 12px;
    margin-left: 10px;
    color: rgb(197 195 195);
}
#contact-us .right-side .right-side-container .book-call-section .discovery-call-text{
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #fafbf8;
    text-align: center;
}
#contact-us .right-side .right-side-container .book-call-section .discovery-call-text span{
    color: rgb(245 113 0);
}
#contact-us .right-side .right-side-container .book-call-section .discovery-call-text-desc{
    font-size: 12px;
    color: rgb(197 195 195);
    margin-top: 20px;
}
#contact-us .right-side .right-side-container .book-call-section p{
    font-size: 12px;
    margin-left: 10px;
    color: rgb(197 195 195);
}
#contact-us .right-side .meeting-servives-logo .logo img{
    height: 100%;
    object-fit: contain;
}

#contact-us .right-side .meeting-servives-logo{
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#contact-us .right-side .right-side-container .contact-btn{
    background-color: transparent;
    border: 1px solid #ffffff;
    padding: 14px 18px;
    text-transform: uppercase;
    margin-top: 20px;
    border-radius: 25px;
    color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
}

#contact-us .right-side .main-img {
    width: 100%;
    height: 100%
}

#contact-us .right-side .main-img img{
    width: 100%;
    height: 75%;
    object-fit: contain;
    display: inline-block;
}

/* Career Page */
#careers-page-jobs-section-container{
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

#careers-why-you-join-us {
    padding: 4rem 1.5rem;
    background-color: #f3f3f3;
}

#careers-why-you-join-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

#careers-why-you-join-us .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    #careers-why-you-join-us .grid {
        grid-template-columns: 1fr 1fr;
    }
}

#careers-why-you-join-us .content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#careers-why-you-join-us .main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
}

@media (max-width: 768px) {
    #careers-why-you-join-us .main-title {
        font-size: 2rem;
    }
}

#careers-why-you-join-us .description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.75;
}

#careers-why-you-join-us .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    #careers-why-you-join-us .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

#careers-why-you-join-us .benefit-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

#careers-why-you-join-us .icon-container {
    width: 3rem;
    height: 3rem;
    background-color: #f3e8ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#careers-why-you-join-us .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #7c3aed;
}

#careers-why-you-join-us .benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

#careers-why-you-join-us .benefit-description {
    color: #6b7280;
    line-height: 1.75;
}

#careers-why-you-join-us .image-container {
    position: relative;
}

@media (min-width: 1024px) {
    #careers-why-you-join-us .image-container {
        padding-left: 2rem;
    }
}

#careers-why-you-join-us .placeholder-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#careers-why-you-join-us placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

#careers-why-you-join-us .placeholder-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

#careers-why-you-join-us .placeholder-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Icons */
#careers-why-you-join-us .dollar-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#careers-why-you-join-us .scale-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#careers-why-you-join-us .trending-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#careers-why-you-join-us .shield-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#careers-why-you-join-us .camera-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#careers-why-you-join-us .benefit-card:hover .icon-container {
    background-color: #e0e7ff;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

#careers-why-you-join-us .placeholder-image:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

#careers-why-you-join-us .benefit-card:nth-child(1) { animation-delay: 0.1s; }
#careers-why-you-join-us .benefit-card:nth-child(2) { animation-delay: 0.2s; }
#careers-why-you-join-us .benefit-card:nth-child(3) { animation-delay: 0.3s; }
#careers-why-you-join-us .benefit-card:nth-child(4) { animation-delay: 0.4s; }

#careers-page-jobs-section-container .left-side{
    flex: 0 0 40%;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    text-align: center;
}

#careers-page-jobs-section-container .left-side .submit-cv{
    background: #fff;
    padding: 25px 20px;
    color: rgb(5, 5, 48);
    font-weight: 700;
    border-radius: 10px
}

#careers-page-jobs-section-container .left-side .submit-cv button{
    padding: 18px 10px;
    width: 65%;
    background-color: #f57100;
    border: none;
    color: #fff;
    border-radius: 35px;
    text-transform: capitalize;
    display: block;
    margin: 15px auto;
    font-size: 12px;
}

#careers-page-jobs-section-container .left-side .submit-cv button:hover{
    background: #0f0f0f;
    cursor: pointer;
}

#careers-page-jobs-section-container .right-side{
    flex: 0 0 60%;
}

#careers-page-jobs-section-container .right-side h2{
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

#careers-page-jobs-section-container .right-side .job-box{
    background: linear-gradient(226deg, #212121 0%, #000000 100%);
    padding: 25px 35px;
    margin: 10px 0px;
    border-radius: 10px
}

#careers-page-jobs-section-container .right-side .job-box .job-title{
    color: #fff;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 12px;
}

#careers-page-jobs-section-container .right-side .job-box .job-meta-info{
    font-size: 13px;
    display: flex;
    gap: 7px;
    margin: 5px 0px 15px;
    color: rgb(224 224 224);
}

#careers-page-jobs-section-container .right-side .job-box .job-meta-info i{
    color: #ff9b00;
}

#careers-page-jobs-section-container .right-side .job-box .job-details{
    font-size: 12px;
    color: #898585;
    line-height: 1.3rem;
}

#careers-page-jobs-section-container .right-side .job-box .job-details p > a{
    color: #e1e1e1;
}

/* Contact Us Page */
.contact-us-page-breadcrumb-section {    
    text-align: left;
    padding-top: 20px;
}

.contact-us-page-breadcrumb {
    font-size: 14px;
    color: #757575;
}

.contact-us-page-breadcrumb a {
    text-decoration: none;
    color: #757575;
}

.contact-us-page-breadcrumb-section h1 {
    font-size: 30px;
    margin-top: 80px;
    color: #b3b3b3;
    font-weight: 500;
}

.contact-us-page-work-with-us {
    display: flex;
    padding: 40px;
    background: linear-gradient(135deg, #121212, #000000);
    color: white;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.contact-us-page-work-with-us .text-container {
    width: 50%;
    padding-right: 20px;
}

.contact-us-page-work-with-us .work-with-us-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-us-page-work-with-us .main-heading {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
  margin-top: 15px;
  line-height: 4.5rem;
  text-transform: capitalize;
}

.contact-us-page-work-with-us .main-heading span {
  color: #ff5500;
}

.contact-us-page-work-with-us .sub-heading {
  font-size: 1.25rem;
  color: #656565;
}

.contact-us-page-work-with-us .text-container .about-us-btn-container {
    flex-shrink: 0;
}

.contact-us-page-work-with-us .text-container .about-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f95303 0%, #ff8025 50%, #ff5500 100%);
    color: #f3f3f3;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    margin-top: 50px;
}

.contact-us-page-work-with-us .text-container .about-us-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-us-page-work-with-us .text-container .about-us-btn:hover::before {
    left: 100%;
}

.contact-us-page-work-with-us .text-container .about-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 40%);
}

.contact-us-page-work-with-us .text-container .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-us-page-work-with-us .text-container .about-us-btn:hover .arrow-icon {
    transform: translateX(4px);
}

.contact-us-page-work-with-us .form-container {
  background: linear-gradient(135deg, #f95303 0%, #ff8025 50%, #ff5500 100%);
  padding: 50px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 50%;
  max-width: 400px;
  margin-left: 40px;
}

.contact-us-page-work-with-us .form-container i{
    display: block;
    text-align: center;
    font-size: 3.8rem;
    color: #1e1e1e;
}


.contact-us-page-work-with-us h2 {
  text-align: center;
  margin-bottom: 14px;
  font-size: 26px;
  color: #fff;
  border-bottom: 1px solid #e34c00;
  padding-bottom: 7px;
  text-transform: uppercase;
}

.contact-us-page-work-with-us .form-container p{
    margin-bottom: 20px;
    text-align: center;
    color: #efefef;
    line-height: 1.3rem;
    font-size: 0.9rem;
}

.contact-us-page-work-with-us .contact-us-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-us-page-work-with-us input, textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-us-page-work-with-us textarea {
  resize: none;
}

.contact-us-page-work-with-us input[type="file"] {
  border: none;
}

.contact-us-page-work-with-us .captcha {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-us-page-work-with-us .checkbox-label {
  color: #efefef;
  font-size: 0.9rem;
}

.contact-us-page-work-with-us button.submit-btn {
  background-color: #181717;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
}

.contact-us-page-work-with-us button.submit-btn:hover {
  background-color: #0277b4;
}

#contact-us-page-details-section-container{
    display: flex;
    justify-content: center;
    padding: 70px 20px
}

#contact-us-page-details-section-container .contacts h2 {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 40px;
    color: #252525;
    text-transform: capitalize;
}

#contact-us-page-details-section-container .contacts h2 span {
    color: #ff5500;
}

#contact-us-page-details-section-container .contacts .contact-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

#contact-us-page-details-section-container .contacts .contact-card {
    text-align: center;
    max-width: 250px;
    border-right: 1px solid #e3e3e3;
    padding-right: 40px;
}

#contact-us-page-details-section-container .contacts .contact-card:last-child {
    border-right: none
}

#contact-us-page-details-section-container .contacts .flag {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

#contact-us-page-details-section-container .contacts .country {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #454545;
  font-weight: 600;
}

#contact-us-page-details-section-container .contacts .address {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 15px;
}

#contact-us-page-details-section-container .contacts .phone {
  font-size: 1rem;
  font-weight: 400;
  color: #797979;
  margin-bottom: 10px;
  margin-top: 13px;
}

.contact-us-page-career-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}
.contact-us-page-career-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 178, 172, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-us-page-career-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-us-page-career-section .career-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.contact-us-page-career-section .career-content {
    flex: 1;
}

.contact-us-page-career-section .career-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-us-page-career-section .career-highlight {
    color: #f77400;
}

.contact-us-page-career-section .career-subtitle {
    font-size: 1.3rem;
    color: #797979;
    font-weight: 200;
}

.contact-us-page-career-section .career-cta {
    flex-shrink: 0;
}

.contact-us-page-career-section .job-openings-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f95303 0%, #ff8025 50%, #ff5500 100%);
    color: #f3f3f3;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.contact-us-page-career-section .job-openings-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-us-page-career-section .job-openings-btn:hover::before {
    left: 100%;
}

.contact-us-page-career-section .job-openings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 40%);
}

.contact-us-page-career-section .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-us-page-career-section .job-openings-btn:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .contact-us-page-career-section .career-section {
        padding: 60px 20px;
    }

    .contact-us-page-career-section .career-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .contact-us-page-career-section .career-title {
        font-size: 2.5rem;
    }

    .contact-us-page-career-section .career-subtitle {
        font-size: 1.1rem;
    }

    .contact-us-page-career-section .job-openings-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-us-page-career-section .career-title {
        font-size: 2rem;
    }

    .contact-us-page-career-section .career-subtitle {
        font-size: 1rem;
    }
}

/* About Us Page */
.about-us-our-story-section {
    background: linear-gradient(226deg, #212121 0%, #000000 100%);
    padding: 50px 0px;
    min-height: 110vh;
    display: flex;
    align-items: center;
    position: relative;
}

.about-us-page-breadcrumb-section {    
    text-align: left;
    padding-top: 20px;
}

.about-us-page-breadcrumb {
    font-size: 14px;
    color: #5b5b5b;
}

.about-us-page-breadcrumb span {
    color: #ebebeb;
}

.about-us-page-breadcrumb a {
    text-decoration: none;
    color: #5b5b5b;
}

.about-us-story-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 85%;
}

.about-us-our-story-section .story-content {
    color: white;
}

.about-us-our-story-section .story-title {
    font-size: 2.7rem;
    font-weight: 700;
    margin: 30px 0px;
    color: #ededed;
    margin-top: 35px;
    border-bottom: 1px solid #1e1e1e;
    padding-bottom: 15px;
}

.about-us-our-story-section .story-title i{
    color: #ff8400;
    background: #161616;
    padding: 5px 12px;
    border-radius: 7px;
}

.about-us-our-story-section .story-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #939393;
}

.about-us-our-story-section .statistics-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #0e0e0e;
    padding: 35px 60px;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgb(227 227 227 / 8%);
}

.about-us-our-story-section .stat-item {
    text-align: center;
    position: relative;
}

.about-us-our-story-section .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background-color: #2d2d2d;
}

.about-us-our-story-section .stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.about-us-our-story-section .stat-label {
    font-size: 0.95rem;
    color: #414141;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .about-us-our-story-section .statistics-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 40px;
    }

    .about-us-our-story-section .stat-item:not(:last-child)::after {
        display: none;
    }

    .about-us-our-story-section .stat-item:not(:last-child) {
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 20px;
    }

    .about-us-our-story-section .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-us-our-story-section .statistics-container {
        padding: 25px 30px;
    }

    .about-us-our-story-section .stat-number {
        font-size: 2rem;
    }

    .about-us-our-story-section .stat-label {
        font-size: 0.9rem;
    }
}

.about-us-our-story-section .hero-right-section{
    padding-left: 70px;
    padding-top: 135px;
}

.about-us-our-story-section .main-image-container{
    position: relative;
}

.about-us-our-story-section .main-image-container .story-img-1{
    object-fit: cover;
    border-radius: 5%;
}

.about-us-our-story-section .main-image-container .story-img-2{
    border-radius: 10%;
    position: absolute;
    bottom: -50px;
    right: -65px;
    object-fit: cover;
    border: 10px solid #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-us-story-container {
        gap: 60px;
    }

    .about-us-our-story-section .story-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {
    .about-us-our-story-section {
        padding: 60px 30px;
    }

    .about-us-story-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-us-our-story-section .story-title {
        font-size: 3rem;
    }

    .about-us-our-story-section .team-grid {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-us-our-story-section {
        padding: 40px 20px;
    }

    .about-us-our-story-section .story-title {
        font-size: 2.5rem;
    }

    .about-us-our-story-section .story-text {
        font-size: 1rem;
    }

    .about-us-our-story-section .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-us-our-story-section .story-title {
        font-size: 2rem;
    }

    .about-us-our-story-section .team-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

.about-us-page-career-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}
.about-us-page-career-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(56, 178, 172, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-us-page-career-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-us-page-career-section .career-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-us-page-career-section .career-content {
    flex: 1;
}

.about-us-page-career-section .career-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.1;
}

.about-us-page-career-section .career-highlight {
    color: #f77400;
}

.about-us-page-career-section .career-subtitle {
    font-size: 1.3rem;
    color: #797979;
    font-weight: 200;
}

.about-us-page-career-section .career-cta {
    flex-shrink: 0;
}

.about-us-page-career-section .job-openings-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f95303 0%, #ff8025 50%, #ff5500 100%);
    color: #f3f3f3;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.about-us-page-career-section .job-openings-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.about-us-page-career-section .job-openings-btn:hover::before {
    left: 100%;
}

.about-us-page-career-section .job-openings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgb(0 0 0 / 40%);
}

.about-us-page-career-section .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.about-us-page-career-section .job-openings-btn:hover .arrow-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .about-us-page-career-section .career-section {
        padding: 60px 20px;
    }

    .about-us-page-career-section .career-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-us-page-career-section .career-title {
        font-size: 2.5rem;
    }

    .about-us-page-career-section .career-subtitle {
        font-size: 1.1rem;
    }

    .about-us-page-career-section .job-openings-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-us-page-career-section .career-title {
        font-size: 2rem;
    }

    .about-us-page-career-section .career-subtitle {
        font-size: 1rem;
    }
}

.about-us-core-values-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-core-values-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.2;
}

.about-us-core-values-section-sub-heading{
    color: #898989;
    font-size: 1rem;
    margin-bottom: 55px;
    line-height: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
    text-align: center;
}

.about-us-core-values-section .core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-us-core-values-section .core-values-card {
    background: #f1f1f1;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-us-core-values-section .core-values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d1d5db;
}

.about-us-core-values-section .core-values-content {
    flex: 1;
}

.about-us-core-values-section .core-values-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
}

.about-us-core-values-section .core-values-icon {
    width: 50px;
    height: 50px;
    margin-left: 20px;
    flex-shrink: 0;
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff8f04 0%, #b22008 100%);
    text-align: center;
}

.about-us-core-values-section .core-values-icon i{
    color: #fdfdfd;
    font-size: 1.5rem;
    padding-top: 3px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-us-core-values-section {
        padding: 60px 30px;
    }

    .about-us-core-values-section .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-us-core-values-section .section-title {
        font-size: 2.5rem;
    }

    .about-us-core-values-section .core-values-card {
        padding: 30px 25px;
    }

    .about-us-core-values-section .core-values-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .about-us-core-values-section .core-values-section {
        padding: 40px 20px;
    }

    .about-us-core-values-section .core-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-us-core-values-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .about-us-core-values-section .core-values-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-us-core-values-section .core-values-icon {
        margin-left: 0;
        width: 50px;
        height: 50px;
    }

    .about-us-core-values-section .core-values-title {
        font-size: 1.2rem;
    }
}

.about-us-page-industry-experience {
    background: linear-gradient(226deg, #212121 0%, #000000 100%);
    min-height: 80vh;
    padding: 85px 20px 35px;
    position: relative;
    overflow: hidden;
}

.about-us-page-industry-experience .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-us-page-industry-experience .section-header {
    text-align: center;
    margin-bottom: 20px;
}

.about-us-page-industry-experience .section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-us-page-industry-experience .section-header h2::after {
    display: block;
    content: '';
    border: 1px solid #1c1c1c;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
}

.about-us-page-industry-experience .highlight-number {
    color: #ff6000;
    font-size: 3.2rem;
}

.about-us-page-industry-experience .section-header p {
    font-size: 1.5rem;
    color: #515151;
    font-weight: 300;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.about-us-page-industry-experience .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    align-items: center;
}

.about-us-page-industry-experience .text-content {
    color: white;
    padding-top: 5px;
}

.about-us-page-industry-experience .text-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ababab;
}

.about-us-page-industry-experience .cta-button {
    background: linear-gradient(135deg, #ff8f04 0%, #f53900 100%);
    color: #ffffff;
    padding: 14px 30px;
    text-transform: capitalize;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.about-us-page-industry-experience .cta-button:hover {
    transform: translateY(-2px);
}

.about-us-page-industry-experience .arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about-us-page-industry-experience .cta-button:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-us-page-industry-experience {
        padding: 60px 20px;
    }

    .about-us-page-industry-experience .section-header h2 {
        font-size: 2.5rem;
    }

    .about-us-page-industry-experience .section-header p {
        font-size: 1.5rem;
    }

    .about-us-page-industry-experience .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-us-page-industry-experience .text-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-us-page-industry-experience .section-header h2 {
        font-size: 2rem;
    }

    .about-us-page-industry-experience .section-header p {
        font-size: 1.2rem;
    }
}

.about-us-page-industries-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-us-page-industries-section .fa-hotel{
    display: block;
    text-align: center;
    color: #fb720c;
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-us-page-industries-section .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-top: 15px;
}

.about-us-page-industries-section .section-title::after {
    display: block;
    content: '';
    width: 150px;
    border: 1px solid #f3efef;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

.industries-section-sub-heading{
    color: #898989;
    font-size: 1rem;
    margin-bottom: 55px;
    line-height: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    width: 65%;
    text-align: center;
}

.about-us-page-industries-section .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 20px;
}

.about-us-page-industries-section .industry-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-us-page-industries-section .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: all 0.3s ease;
}

.about-us-page-industries-section .industry-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.about-us-page-industries-section .industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-us-page-industries-section .card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.about-us-page-industries-section .industry-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-us-page-industries-section .arrow-icon {
    width: 24px;
    height: 24px;
    background: #f57100;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-us-page-industries-section .industry-card:hover .arrow-icon {
    background: #f57100;
    transform: scale(1.1);
}

.about-us-page-industries-section .arrow-icon::after {
    content: '→';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Grid Layout Positioning */
.about-us-page-industries-section .realestate {
    grid-column: 1;
    grid-row: 1 / 3;
    background-image: url('../../images/about-us/industries/realestate.jpg');
}

.about-us-page-industries-section .healthcare {
    grid-column: 2;
    grid-row: 1 / 2;
    background-image: url('../../images/about-us/industries/healthcare.jpg');
}

.about-us-page-industries-section .education {
    grid-column: 3;
    grid-row: 1 / 3;
    background-image: url('../../images/about-us/industries/education.jpg');
}

.about-us-page-industries-section .legal {
    grid-column: 4;
    grid-row: 1 / 2;
    background-image: url('../../images/about-us/industries/legal.jpg');
}

.about-us-page-industries-section .fintech {
    grid-column: 1;
    grid-row: 3 / 4;
    background-image: url('../../images/about-us/industries/fintech.jpg');
}

.about-us-page-industries-section .automotive {
    grid-column: 2;
    grid-row: 2 / 4;
    background-image: url('../../images/about-us/industries/automative.jpg');
}

.about-us-page-industries-section .transportation {
    grid-column: 3;
    grid-row: 3 / 4;
    background-image: url('../../images/about-us/industries/transportation.jpg');
}

.about-us-page-industries-section .construction {
    grid-column: 4;
    grid-row: 2 / 4;
    background-image: url('../../images/about-us/industries/construction.jpg');
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-us-page-industries-section {
        padding: 60px 30px;
    }

    .about-us-page-industries-section .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, 180px);
        height: auto;
    }

    .about-us-page-industries-section .realestate {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .about-us-page-industries-section .healthcare {
        grid-column: 2;
        grid-row: 1;
    }

    .about-us-page-industries-section .education {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .about-us-page-industries-section .legal {
        grid-column: 2;
        grid-row: 2;
    }

    .about-us-page-industries-section .fintech {
        grid-column: 1;
        grid-row: 3;
    }

    .about-us-page-industries-section .automotive {
        grid-column: 2;
        grid-row: 3;
    }

    .about-us-page-industries-section .transportation {
        grid-column: 3;
        grid-row: 3;
    }

    .about-us-page-industries-section .construction {
        grid-column: 1;
        grid-row: 4;
    }
}

@media (max-width: 768px) {
    .about-us-page-industries-section  {
        padding: 40px 20px;
    }

    .about-us-page-industries-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .about-us-page-industries-section .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 160px);
        gap: 15px;
    }

    .about-us-page-industries-section .industry-title {
        font-size: 1.3rem;
    }

    .about-us-page-industries-section .card-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    /* Reset grid positions for mobile */
    .about-us-page-industries-section .realestate { grid-column: 1; grid-row: 1; }
    .about-us-page-industries-section .healthcare { grid-column: 2; grid-row: 1; }
    .about-us-page-industries-section .education { grid-column: 1; grid-row: 2; }
    .about-us-page-industries-section .legal { grid-column: 2; grid-row: 2; }
    .about-us-page-industries-section .fintech { grid-column: 1; grid-row: 3; }
    .about-us-page-industries-section .automotive { grid-column: 2; grid-row: 3; }
    .about-us-page-industries-section .transportation { grid-column: 1; grid-row: 4; }
    .about-us-page-industries-section .construction { grid-column: 2; grid-row: 4; }
}

@media (max-width: 480px) {
    .about-us-page-industries-section .section-title {
        font-size: 2rem;
    }

    .about-us-page-industries-section .industries-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 140px);
    }

    .about-us-page-industries-section .industry-title {
        font-size: 1.2rem;
    }

    /* Single column layout */
    .about-us-page-industries-section .realestate, .about-us-page-industries-section .healthcare, .about-us-page-industries-section .education, .about-us-page-industries-section .legal,
    .about-us-page-industries-section .fintech, .about-us-page-industries-section .automotive, .about-us-page-industries-section .transportation, .about-us-page-industries-section .construction {
        grid-column: 1;
    }

    .about-us-page-industries-section .realestate { grid-row: 1; }
    .about-us-page-industries-section .healthcare { grid-row: 2; }
    .about-us-page-industries-section .education { grid-row: 3; }
    .about-us-page-industries-section .legal { grid-row: 4; }
    .about-us-page-industries-section .fintech { grid-row: 5; }
    .about-us-page-industries-section .automotive { grid-row: 6; }
    .about-us-page-industries-section .transportation { grid-row: 7; }
    .about-us-page-industries-section .construction { grid-row: 8; }
}

#our-partners .container{
    padding: 35px 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#our-partners .container .partner-logos {
    width: 80%;
    margin: auto;
    margin-top: 50px;
}

#our-partners .title{
    color: #1a1a1a;
    font-size: 28px;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 7px;
}

#our-partners .partner-logo{
    flex: 0 0 25%;
    background: #fbfbfb;
    padding: 22px 0px;
    border: 1px solid #edeeef;
}
/* Thank You Submission */
#thank-you-submission-page-section{
    display: flex;
    align-items: center;
    height: 40vh;
    text-align: center;
    justify-content: center;
    background: rgb(0 0 0);
}

#thank-you-submission-page-section h2{
    color: #dddddd;
    font-size: 2rem;
}

/* footer */

footer{
    width: 100%;
    background-color: rgb(24 24 24)
}

.footer {
    width: 85%;
    height: 100%;
    margin: auto;
    padding-top: 120px;
    justify-content: space-evenly;
    padding: 35px 0px 0px;
}
.footer .col-1{
    flex: 0 0 35% !important;
    padding: 15px 8px;
}
.footer .col{
    flex: 0 0 23%;
    padding: 15px 8px;
}

footer .col-2 i{
    color: #afafaf;
}

.footer .col .bor-shadow{
    margin: 10px 0 auto 0;
    width: 45px;
}

footer .footer .headings{
    color: rgb(255, 255, 255);
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
}
footer .footer ul{
    color: #adadad;
    font-size: 16px;
    margin: 30px 0px;
    letter-spacing: 0.6px;
}
footer .footer ul > li{
    list-style-type: none;
    margin: 11px 4px;
    font-size: 12px;
    color: #c9c9c9;
    line-height: 1.7rem;
    letter-spacing: 0.6px;
}
.footer .col-1 .icons{
    margin-top: 0px
}
.footer .col-1 .img-1{
    margin-left: 0;
}

footer .footer-nav{
    width: 100%;
}
footer .footer-nav .footer-bar{
    width: 80%;
    height: 100px;
    margin: auto;
    position: relative;
}
footer .footer-bar .col{
    justify-content: space-between;
    width: 100%;
    margin: auto;
    height: 100%;
    align-items: center;
    
}    
    

footer .footer-nav .over-lay{
    content: '';
    width: 100%;
    height: 100px;
    background-color: #0e0e0e;
    position: absolute;
    z-index: 1
}
footer .footer-bar .col{
    position: absolute;
    z-index: 999;
    width: 100%;
    margin: auto;
    justify-content: space-between;


}

footer .footer-bar .right-reserved-text,
footer .footer-bar .headings{
    color: rgb(215, 215, 215);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}
footer .footer-bar p{
    font-size: 0.8rem;
    color: #7e7a7a;
    margin-top: 1px;
    z-index: 999;

}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    .header .main-bar .nav-bar ul li a, 
    .header .fixed-topbar .nav-bar ul li a {
        font-size: 12px;
    }

    .header .main-bar .nav-bar ul li, 
    .header .fixed-topbar .nav-bar ul li {
        margin: 0px 6px;
    }

    .header .main-bar .logo img {
        width: 165px;
        height: 65px;
    }

    .header .main-bar .nav-bar ul li a.active, 
    .header .fixed-topbar .nav-bar ul li a.active {
        padding: 10px 22px
    }

    #top-bar .contact-details .contact-details-item {
        margin-right: 13px;
        font-size: 11px;
    }

    #top-bar .main-bar-social-btns > li > a > i {
        font-size: 14px;
    }

    #top-bar #main-bar-social-btns > li > a {
        margin: 0px 6px    
    }

    .header .hero-section .left-side h2 {
        font-size: 16px
    }

    .header .hero-section .left-side .features-section .hero-feature {
        font-size: 11px;
    }

    .header .hero-section .left-side .features-section .hero-feature i {
        font-size: 13px;
    }

    .header .hero-section .left-side .hero-btn {
        font-size: 12px
    }

    #services .container {
        padding: 70px 0px 60px;
        width: 85%;
    }

    #services .col-1{
        width: 48%;
    }

    #services .web-technologies-images .img-col {
        flex: 0 0 42%;
        margin: 10px 3px;
        flex: 0 0 45%;
        padding: 5px
    }

    #services .web-technologies-images {
        width: 52%
    }

    #about-us .about-desc .heading {
        font-size: 30px
    }

    #about-us .about-desc h1 {
        font-size: 16px
    }

    #about-us .about-desc .about-icons,
    #about-us .about-desc .about-icons-2 {
        font-size: 15px;
    }

    #about-us .about-desc .about-us-btn{
        font-size: 13px;
    }

    #portfolio .portfolio-container .portfolio-img img {
        width: 300px;
    }

    #portfolio .portfolio-container .portfolio-desc {
        padding: 12px;
    }

    #portfolio .portfolio-container .portfolio-desc .portfolio-logo img {
        width: 85px;
        height: 85px;
    }

    #portfolio .portfolio-container .portfolio-desc .heading {
        font-size: 18px
    }

    #portfolio .portfolio-container .portfolio-desc .portfolio-details .intro{
        font-size: 12px
    }

    #portfolio .portfolio-container .portfolio-desc .portfolio-details {        
        margin-left: 12px;
        padding-left: 12px;
    }

    .faq .fa-question {
        font-size: 25px
    }

    .faq .faq-title span {
        font-size: 26px
    }

    .faq .faq-title {
        font-size: 17px    
    }

    .faq .faq-desc h2 {
        font-size: 16px
    }

    .faq .faq-right-bottom .accordion-item .accordion-header {
        padding: 14px 15px;
        font-size: 14px
    }

    .faq .faq-right-bottom .accordion-item .accordion-header .expand-btn {
        font-size: 18px
    }

    .faq .faq-right-bottom .accordion-item .accordion-body{
        font-size: 13px;
        padding: 20px 15px;
    }

    #homepage-review .homepage-review-container h3 {
        font-size: 20px;
    }

    #homepage-review .homepage-review-container .review-desc p {
        margin-top: 20px;
        margin-bottom: 40px;
        font-size: 13px;
    }

    #homepage-review .homepage-review-container .profile-details .company-designation{
        font-size: 0.6rem;
    }

    #homepage-review .homepage-review-container .stars img {
        width: 16px;
        height: 16px;
    }

    #contact-us .left-side .title p{
        font-size: 14px;
    }

    #contact-us .left-side h2 {
        font-size: 24px
    }

    #contact-us .left-side input {
        padding: 9px 20px;
        font-size: 11px
    }

    #contact-us .left-side .phone-input {
        font-size: 11px;
    }

    #contact-us .left-side textarea {
        font-size: 11px;
    }

    #contact-us .left-side .form-desc {
        font-size: 12px;
    }

    #contact-us .left-side .contact-btn {
        padding: 13px 20px;
        font-size: 12px
    }

    #contact-us .right-side .right-side-container .book-call-section .discovery-call-text {
        font-size: 15px    
    }

    #contact-us .right-side .right-side-container .book-call-section .discovery-call-text-desc {
        font-size: 11px
    }

    #contact-us .right-side .right-side-container .contact-btn {
        padding: 12px 14px;
        font-size: 12px;    
    }

    #contact-us .right-side .right-side-container .book-call-section p{
        font-size: 11px;
    }

    #our-partners .title {
        font-size: 23px
    }

    #our-partners .partner-logo{
        padding: 20px 0;
    }

    .partner-logo img {
        width: 100px;
        height: 66px;
        object-fit: contain;
    }

    footer .col-1 .logo img{
        width: 145px;
    }

    footer .col-1 p{
        font-size: 12px;
    }

    #footer-social-btns > li > a {
        padding: 6px 12px;
        font-size: 13px;
    }

    footer .footer ul > li {
        font-size: 10px;
        margin: 11px 0px;
    }

    footer .footer h4 {
        font-size: 16px
    }

    footer .footer-bar h4 {
        font-size: 13px
    }

    footer .footer-bar h4 span {
        font-size: 15px
    }

    footer .footer-bar p {
        font-size: 0.7rem
    }

    #global-scroll-top{
        font-size: 15px;
        width: 40px;
        height: 40px;
    }

    #global-scroll-top i {
        padding: 13px 14px;
    }
}

@media (max-width: 480px) {
    #top-bar .container {
        display: block;
        width: 95%;
    }

    #top-bar .contact-details .contact-details-item {
        font-size: 11px;
        text-align: center;
        flex: 0 0 33.333334%;
        margin-right: unset;
    }

    #top-bar .contact-details .contact-details-item i {
        display: block;
        font-size: 14px;
    }

    #top-bar .main-bar-social-btns{
        display: none;
    }

    .header .main-bar {        
        padding: 17px 0;
    }

    .header .main-bar .logo img {
        width: 160px;
        height: 60px;
    }

    .header .main-bar .nav-bar,
    .header .fixed-topbar .nav-bar{
        display: none;
    }

    .header .main-bar .expand-btn,
    .header .fixed-topbar .expand-btn{
        display: block;
    }

    .header .main-bar .expand-btn i,
    .header .fixed-topbar .expand-btn i{
        color: #040404;
        font-size: 22px;
    }

    #mobile-menu-bar .menu-top-bar{
        justify-content: space-between;
        align-items: center;
        background: #f3f3f3;
        padding: 15px 20px;
    }

    #mobile-menu-bar .menu-top-bar .logo{
        margin-top: 12px;
    }

    #mobile-menu-bar .menu-top-bar .logo img{
        object-fit: contain
    }

    #mobile-menu-bar .menu-top-bar .close-btn a{
        display: flex;
        background: #ff6000;
        width: 28px;
        height: 28px;
        justify-content: center;
        align-items: center;
        color: transparent;
        border-radius: 25px;
    }

    #mobile-menu-bar .menu-top-bar .close-btn i{
        color: #ffffff;
        font-size: 13px;
    }

    #mobile-menu-bar .navbar {
        margin-top: 20px;
    }

    #mobile-menu-bar .navbar ul > li {
        padding: 20px 25px;
        border-bottom: 1px solid #e7e5e5;
    }

    #mobile-menu-bar .navbar ul > li:last-child{
        border-bottom: none;
    }

    #mobile-menu-bar .navbar ul > li > a {
        color: #434343;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
    }

    #mobile-menu-bar .main-bar-social-btns {
        list-style: none;
        display: flex;
        justify-content: center;
        margin-top: 55px;
        background: #1c1c1c;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        padding: 8px 0px;
        border-radius: 30px;
    }

    #mobile-menu-bar .main-bar-social-btns > li > a{
        display: inline-block;
        padding: 10px 14px;
        margin: 0px 10px;
        color: #121212;
        background: #ff4400;
        border-radius: 25px;
    }

    #mobile-menu-bar .main-bar-social-btns > li > a > i{
        font-size: 17px;
        color: #f1f1f1;
    }

    .header .hero-section .container{
        display: block;
    }

    .header .hero-section .left-side,
    .header .hero-section .right-side {
        width: 100%;
    }

    .header .hero-section {
        width: 80%;
        margin: 60px auto 0;
    }

    .header .hero-section .left-side .features-section{
        gap: 5px
    }

    .header .hero-section .left-side h1 {
        font-size: 29px;
    }

    .header .hero-section .left-side h2 {
        font-size: 16px
    }

    .header .hero-section .left-side .features-section .hero-feature {
        font-size: 12px;
        text-align: center;
        border-right: 1px solid #252323;
    }

    .header .hero-section .left-side .features-section .hero-feature:last-child {
        border-right: none;
    }

    .header .hero-section .features-section i{
        display: block;
    }

    .header .hero-section .left-side .hero-btn {
        padding: 10px 20px;
        font-size: 12px
    }

    .hero-img .main-img {
        height: 425px;
    }

    #services .container{
        width: 90%;
    }

    #services .services-col{
        display: block !important;
    }

    #services .col-1 {
        width: 100%;
        margin-bottom: 45px;
    }

    #services .services-col {
        margin: 55px 0 50px
    }

    #services .web-technologies-images{
        width: 55%
    }

    #services .web-technologies-images .img-col {
        padding: 8px;
        flex: 0 0 45%;
        margin: 5px 2px;
    }

    #about-us .about-us-container {
        display: block !important;
    }

    #about-us .about-img,
    #about-us .about-desc {
        width: 100%;
    }

    #about-us .about-desc {
        padding-left: 10px;
        margin-top: 35px;
    }

    #about-us .about-desc .heading {
        font-size: 33px
    }

    #about-us .about-desc h1 {
        font-size: 17px
    }

    #about-us .about-desc .about-icons,
    #about-us .about-desc .about-icons-2 {
        font-size: 14px;
    }

    #about-us .about-desc .about-icons i, #about-us .about-desc .about-icons-2 i {
        font-size: 16px;
    }

    #about-us .about-desc .about-us-btn {
        padding: 13px 33px;
        font-size: 13px
    }

    #about-us .about-img img {
        height: 270px;
        border-radius: 15px
    }

    #portfolio .portfolio-container .portfolio-item{
        display: block !important;
        margin-block: 50px !important;
    }

    #portfolio .portfolio-container .portfolio-img img {
        width: 300px;
    }

    #portfolio .portfolio-container .portfolio-desc {
        padding: 12px;
        border-radius: 15px;
        margin-top: 20px;
    }

    #portfolio .portfolio-container .portfolio-desc .portfolio-logo img {
        width: 75px;
        height: 75px;
    }

    #portfolio .portfolio-container .portfolio-desc .heading {
        font-size: 16px
    }

    #portfolio .portfolio-container .portfolio-desc .portfolio-details .intro{
        font-size: 12px
    }

    #portfolio .portfolio-container .portfolio-desc .portfolio-details {        
        margin-left: 15px;
        padding-left: 16px;
    }

    .faq .faq-title span {
        font-size: 19px
    }

    .faq .faq-title {
        font-size: 13px    
    }

    .faq .fa-question {
        font-size: 20px;
        padding: 16px 20px    
    }

    .faq .faq-desc h2 {
        font-size: 12px
    }

    .faq .faq-right-bottom .accordion-item .accordion-header {
        padding: 14px 15px;
        font-size: 12px
    }

    .faq .faq-right-bottom .accordion-item .accordion-header .expand-btn {
        font-size: 14px
    }

    .faq .faq-right-bottom .accordion-item .accordion-body{
        font-size: 12px;
        padding: 20px 15px;
    }

    .homepage-review-container {
        width: 80%
    }

    #homepage-review .title h1{
        font-size: 28px
    }

    #homepage-review .title p {
        font-size: 14px
    }

    #homepage-review .review-slider{
        border-radius: 15px;
    }

    #homepage-review .homepage-review-container h3 {
        font-size: 18px
    }

    #homepage-review .homepage-review-container .profile-detail p {
        font-size: 11px;
    }

    #homepage-review .homepage-review-container .review-desc p {
        margin-top: 20px;
        margin-bottom: 40px;
        font-size: 12px;
    }

    #homepage-review .homepage-review-container .profile-details .company-designation{
        font-size: 0.6rem;
    }

    #homepage-review .homepage-review-container .stars img {
        width: 14px;
        height: 14px;
    }

    #homepage-review .homepage-review-container .review-desc p i.fa.fa-quote-left, 
    #homepage-review .homepage-review-container .review-desc p i.fa.fa-quote-right {
        font-size: 16px;
    }

    #contact-us .left-side,
    #contact-us .right-side {
        width: 100%;
    }

    #contact-us .container{
        display: block;
        padding: 50px 20px;
    }

    #contact-us .left-side .title p{
        font-size: 14px;
    }

    #contact-us .left-side h2 {
        font-size: 22px
    }

    #contact-us .left-side input {
        padding: 9px 16px;
        font-size: 11px
    }

    #contact-us .left-side .phone-input {
        font-size: 11px;
    }

    #contact-us .left-side textarea {
        font-size: 11px;
    }

    #contact-us .left-side .form-desc {
        font-size: 12px;
    }

    #contact-us .left-side .contact-btn {
        padding: 13px 22px;
        font-size: 11px
    }

    #contact-us .right-side{
        margin-top: 30px;
    }

    #contact-us .right-side .right-side-container .book-call-section .discovery-call-text {
        font-size: 18px    
    }

    #contact-us .right-side .right-side-container .book-call-section .discovery-call-text-desc {
        font-size: 11px
    }

    #contact-us .right-side .right-side-container .contact-btn {
        padding: 12px 14px;
        font-size: 12px;    
    }

    #contact-us .right-side .right-side-container .book-call-section p{
        font-size: 11px;
    }

    #our-partners .title {
        width: 75%;
        font-size: 25px; 
    }

    #our-partners .container .partner-logos {
        display: block;
        width: 50%;
    }

    #our-partners .partner-logo{
        padding: 20px 0;
    }

    .partner-logo img {
        width: 100px;
        height: 66px;
        object-fit: contain;
    }

    .footer{
        display: block !important;
    }

    .footer .col {
        flex: 0 0 100% !important
    }

    footer .col-1 .logo img{
        width: 185px;
    }

    footer .col-1 p{
        font-size: 13px;
    }

    #footer-social-btns > li > a {
        padding: 6px 12px;
        font-size: 13px;
    }

    footer .footer ul {
        margin: 5px 0px
    }

    footer .footer ul > li {
        font-size: 13px;
        margin: 14px 0px;
    }

    footer .footer h4 {
        font-size: 18px
    }

    footer .footer-nav .over-lay {
        height: 200px    
    }

    footer .footer-bar h4 {
        font-size: 13px
    }

    footer .footer-bar h4 span {
        font-size: 15px
    }

    footer .footer-bar .col{
        display: block;
    }

    footer .footer-bar .col .col-1{
        margin-bottom: 20px;
        text-align: center;
    }

    footer .footer-bar p {
        font-size: 0.7rem
    }

    footer .footer-nav .footer-bar{
        padding: 20px 0;
    }
}










