*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: 'Open Sans', sans-serif; */
    /* font-family: 'Roboto', sans-serif; */
    font-family: 'Urbanist', sans-serif;
}
.body-section{
    width: 100%;
    height: 100vh;
    position: relative;
}
/* .topsection{
    position: absolute;
    width: 100%;
    height: 100vh;
    background: url('../img/banner-home.jpg') no-repeat center center/cover;
    opacity: ;
} */

.topsection {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: url('../img/banner-home.jpg') no-repeat center center/cover; */
    background: url('../img/banners/light-team.png') no-repeat center center/cover;
}

.topsection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* <-- Dark opacity (60%) */
    z-index: 1;
}

/* Content inside should appear above overlay */
.topsection > * {
    position: relative;
    z-index: 2;
}

.navbar{
    z-index: 3;
    /* position: absolute; */
}
.nav-item{
    margin: 0 10px;
}
.nav-link , .navbar-brand{
    color: white !important;
}
.navbar-brand{
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 20px;
}
.navbar-brand img{
    width: 70px;
    height: 70px;
}
.nav-link{
    font-size: 1rem;
    font-weight: 500;

}
.nav-link:hover{
    color: #eb6029 !important;
}


.intro-text{
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.into-heading{
    font-size: 5rem;
    font-weight: 600;
    font-family: 'Urbanist', sans-serif;
    line-height: 1.2em;
    margin: 0px 10px 20px 10px;
    /* text-transform: uppercase; */
}
.intro-text p{
    width: 70%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 30px auto;
    font-family: 'Urbanist', sans-serif;
}

.btn-red{
    background-color: #eb6029 !important;
    border-radius: 40px;
    color: white;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
    border: none;
}
.btn-red:hover{
    background-color: #eb6029 !important;
    color: white;
}

/* About Section Start */
.aboutus{
    width: 100%;
    height: auto;
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    padding: 0 50px;
    background-color: #ffffff;
    /* gap: 50px; */
}
.about-sections{
    /* display: flex; */
    /* gap: 60px; */
    padding: 8% 0;
    border-bottom: 1px solid #393B51;
}

.about-heading{
    font-size: 2.5rem;
    font-weight: lighter;
    margin-bottom: 20px;
    color: #110b11;

    /* line-height: 1.3rem; */
}
.about-para{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #393B51;
    font-family: 'Poppins', sans-serif;
}
.btn-invert-red{
    border-radius: 40px;
    border: 1px solid #eb6029;
    color: #eb6029;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
}
.btn-invert-red:hover{
    border-radius: 40px;
    border: 1px solid #eb6029;
    color: #110b11;
    padding: 10px 25px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 20px;
}

.about-video{
    width: 100%;
    height: 400px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.about-icons{
    display: flex;
    /* justify-content: space-evenly; */
    /* gap: 20px; */
    padding: 5% 0;
}
.about-icon-box{
    display: flex;
    gap: 15px;
    align-items: center;
    /* justify-content: space-between; */
}
.about-icon{
    width: 80px;
    height: 80px;
    background-color: #f3f3f3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon{
    width: 35px;
    height: 35px;
}
.about-text{
    color: #110b11;
}
.about-text h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.about-text p{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #393B51;
}

/* About Section End */

/* Service Start */
.service{
    width: 100%;
    height: auto;
    background-color: #f3f3f3;
    padding: 5%;
}
.service-title{
    text-align: center;
    padding-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 600;
    color: #110b11;
    /* padding: 8% 0; */
}

.service-box{
    background-color: #fff;
    color: #110b11;
    border-radius: 20px;
    padding: 6%;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    /* text-align: center; */
}
.service-box-heading{
    font-size: 1.2rem;
    font-weight: lighter;
    margin-bottom: 20px;
}
.service-box-para{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #393B51;
    letter-spacing: 1px;
}
.service-icon{
    width: 30px;
    height: 30px;
    background-color: #393B51;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.service-icon i{
    color: white;
    font-size: 20px;
}
.service-points{
    font-size: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}
/* Service End */


/* Clients Start */
.clients{
    background-color: #110b11;
    width: 100%;
    height: auto;
    padding: 30px 50px;
    overflow: hidden;
}
.clients-track{
    display: flex;
    width: max-content;
    animation: clients-scroll 30s linear infinite;
}
.clients-row{
    padding: 0;
    display: flex;
    /* gap: 8rem; */
}
.client-img{
    width: 100px;
    height: 100px;
    margin: 0 4rem;
    object-fit: contain;
}
@keyframes clients-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Clients End */

/* Client Review Start */
.client-review{
    width: 100%;
    height: auto;
    padding: 8% 50px;
    text-align: center;
    background-color: #ffffff;
}
.review h2{
    font-size: 3rem;
    font-weight: lighter;
    color: #110b11;
    margin-bottom: 6%;
}
.review-card{
    background-color: #ffffff;
    /* padding: 4%; */
    border-radius: 24px;
    border: 1px solid #e6e6e6;
    margin: 10px;
}
.rating{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 8% 5%;
}
.rating h6{
    font-size: 1.4rem;
    font-weight: 600;
    color: #110b11;
}
.rating .star{
 font-size: 1.4rem;
    color: #f0ad4e;
    text-shadow: 0 0 3px rgba(240, 173, 78, 0.7);
}
.review-text{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: #393B51;
    margin: 20px 0;
    letter-spacing: 1.2px;
    padding: 0 5%;
}
.client-info{
    background-color: #f3f3f3;
    padding: 20px;
    border-radius: 0 0px 24px 24px;
    margin-top: 20px;
}
.client-info h4{
    font-size: 1.2rem;
    font-weight: 600;
    color: #110b11;
    margin-bottom: 10px;
}
.client-info p{
    font-size: 1rem;
    font-weight: 400;
    color: #393B51;
}
/* Client Review End */

/* Footer Start */
.footer{
    width: 100%;
    height: auto;
    background-color: #f3f3f3;
    padding: 5%;
    border-bottom: 1px solid #393B51;
}
.footer-sub-heading{
    font-size: 1.2rem;
    font-weight: 600;
    color: #110b11;
    margin-bottom: 20px;
}
.foot-link{
    font-size: 1rem;
    font-weight: 400;
    color: #393B51;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.foot-link:hover{
    color: #eb6029;
}
.address p{
    font-size: 1rem;
    font-weight: 400;
    color: #393B51;
    margin-bottom: 10px;
}

.footer-bott{
    padding: 20px;
    background: #f3f3f3;
}
.footer-p{
    font-size: 1.1rem;
    font-weight: 600;
    color: #110b11;
    margin: 0;
}

.footer-icon{
    /* background-color: #1877f2; */
    font-size: 18px;
    padding: 5px;
    border-radius: 50%;
    margin-right: 3px;
}
.facebook{
    background-color: #1877f2;
    color: #fff;
}
.twitter{
    background-color: #1b9df0;
    color: #fff;
}
.linkedin{
    background-color: #2867b2;
    color: #fff;
}
.youtube{
    background-color: #ff0000;
    color: #fff;
}
.instagram{
    background-color: #fe005c;
    color: #fff;
}

/* Footer End */

/* Model Start */
.icon-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #393B51;
}
.contact-info{
    text-align: center;
    margin-bottom: 30px;
}
.contact-img{
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    position: relative;
}
.contact-img::before{
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-color: #f0acac;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto 15px;
}
.contact-info h6 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #110b11;
    margin-bottom: 10px;
}
.contact-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}
.contact-question {
    text-align: center;
}
.contact-question h6 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #110b11;
    margin-bottom: 15px;
}
.contact-question p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Model End */



/* Buttons Start */
.btn-primary {
    background-color: #eb6029;
    border-color: #eb6029;
    color: #fff;
    /* padding: 10px 20px; */
    border-radius: 5px;
    /* font-weight: 600; */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background-color: #d45524;
    border-color: #d45524;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* Buttons End */

  /* Alert tip Start */
  .float-tip-success{
    position: fixed;
    width: 40%;
    padding: 5px;
    border-radius: 5px;
    background: #c1e1ff;
    border: 1px solid #85c4ff;
    right: 10px;
    top: 56px;
    z-index: 2000;
  }
  .float-tip-warning{
    position: fixed;
    width: 40%;
    padding: 5px;
    border-radius: 5px;
    background: #ffc1c1;
    border: 1px solid #f67a7a;
    right: 10px;
    top: 56px;
    z-index: 2000;
  }
  .float-span{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /* Alert tip End */


/* Pages Css Start */
.page-section {
    position: relative;
    width: 100%;
    height: 80vh;
}
.contact-section {
    position: relative;
    width: 100%;
    height: auto;
}
.abouttopsection {
    position: absolute;
    width: 100%;
    height: 80vh;
    background: url('../img/banners/office-team.png') no-repeat center center/cover;
}
.contact-banner-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../img/banner-home.jpg') no-repeat center center/cover;
}
.career-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: url('../img/banners/developer-working.png') no-repeat center center/cover; */
    background: url('../img/banners/developer-working.png') no-repeat center center/cover;
}
.contact-banner{
    position: relative;
    z-index: 3;
}
.blog-section {
    position: absolute;
    width: 100%;
    height: 80vh;
    background: url('../img/banners/dot-network.png') no-repeat center center/cover;
}
.industry-section {
    position: absolute;
    width: 100%;
    height: 80vh;
    background: url('../img/banners/light-team2.png') no-repeat center center/cover;
}

.services-banner {
    position: absolute;
    width: 100%;
    height: 80vh;
    background: url('../img/banners/light-team.png') no-repeat center center/cover;
}

.abouttopsection::before, .blog-section::before, .contact-banner-img::before, .career-banner::before, .industry-section::before, .services-banner::before   {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* <-- Dark opacity (80%) */
    z-index: 1;
}

/* Content inside should appear above overlay */
.abouttopsection > *, .blog-section > *, .industry-section > *  {
    position: relative;
    z-index: 2;
}
.page-intro {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

.page-heading {
    font-size: 3rem;
    color: #e6e6e6;
    margin-bottom: 20px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.work-flow{
    width: 100%;
    height: auto;
    padding: 0 50px;
    background-color: #110b11;
    color: #fff;
    text-align: center;
}
.work-row {
    padding-bottom: 5%;
    /* display: flex;
    justify-content: center;
    flex-wrap: wrap; */
}

.work-flow h1 {
    font-size: 2.5rem;
    padding: 5% 0;
    line-height: 1.2;
    font-weight: lighter;
    font-family: 'Arial', sans-serif;
}
.work-card{
    border: 1px solid #fff;
    padding: 5%;
    margin: 20px;
    border-radius: 30px;
    /* background: rgba(255, 255, 255, 0.1); */
}
.work-icon-div{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4% 0;
}
.work-icon {
    /* font-size: clamp(2rem, 5vw, 3rem); */
    margin-bottom: 15px;
    background-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-icon i {
    color: #eb6029;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.work-card h1 {
    padding: 4% 0;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;

}
.work-card p {
    margin: 0;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.5;
    text-align: center;
    color: #ccc;
    letter-spacing: 0.5px;
    padding: 4% 0;
}

.work-step{
    background-color: #fff;
    color: #eb6029;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 10%;
    /* border: 2px solid #d45524; */
    font-size: 1.2rem;
}

.team{
    padding: 0 5%;
    width: 100%;
    height: auto;
    background-color: #fff;
}
.team-row{
    padding-bottom: 5%;
}
.team h1{
    text-align: center;
    padding: 5% 0;
    font-size: 2rem;
    font-weight: 600;
    color: #110b11;
}
.team-card{
    /* display: flex; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    /* gap: 30px; */
    /* padding: 0 5%; */
    width: 100%;
    height: fit-content;
    background-color: #f3f3f3;
    border-radius: 30px;
}
.team-img{
    width: 100%;
    /* max-width: 250px; */
    height: 350px;
    border-radius: 30px 30px 0 0 ;
    object-fit: contain;
    margin-bottom: 15px;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}
.team-member h3{
    color: #110b11;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.team-member h6{
    color: #393B51;
    font-size: 1.2rem;
    margin-bottom: 4%;
    font-weight: 400;
    line-height: 1.4;
}
.team-member p{
    color: #393B51;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 1px;
}

.blog {
    width: 100%;
    height: auto;
    padding: 5%;
    background-color: #fff;
}
.blog-card{
    background-color: #f3f3f3;
    border-radius: 30px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    margin-bottom: 20px;
    cursor: pointer;
}
.blog-card .blog-img:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 8px 16px rgba(0,0,0,0.2); */
}
.blog-nav{
    text-decoration: none;
}
.blog-img{
    width: 100%;
    /* max-width: 250px; */
    height: 200px;
    border-radius: 30px 30px 0 0 ;
    object-fit: cover;
    margin-bottom: 15px;
}
.blog-title{
    text-align: start;
    padding: 2% 4%;
}
.blog-title h3{
    color: #110b11;
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 500;
    line-height: 1.3;
}
.blog-date{
    color: #393B51;
    font-size: 1rem;
    margin: 10px 0;
    line-height: 1.5;
    text-align: justify;
}


.contact-banner-row{
    padding: 5%;

}
.contact-label{
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 5px;
    margin-top: 10px;
    text-align: left;
    /* padding-left: 15px; */
    font-family: 'Arial', sans-serif;
}



.contact-input{
    background-color: rgb(0 0 0 / 50%);
    border: 1px solid #393B51;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1rem;
    color: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.contact-input:focus{
    border-color: #393B51;
    outline: none;
    box-shadow: 0 0 0 2px rgba(57, 59, 81, 0.1);
}


.contact-left{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}
.contact-left h1 {
    color: #ffffff;
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin: 0;
    font-weight: 600 ;
    line-height: 1.6;
    text-align: left;
}

.contact-location {
    padding: 5%;
    background-color: #fff;
}
.contact-location h1{
    margin-bottom: 5%;
    color: #110b11;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}
.location-card{
    padding: 20px;
    border-radius: 30px;
    /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    border: 1px solid #e0e0e0;
    margin-bottom: 5%;
    text-align: left;
}
.location-card h3 {
    color: #110b11;
    font-size: 1.2rem;
    margin-bottom: 4%;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.location-card p {
    color: #333;
    font-size: 1rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    line-height: 1.8;
    letter-spacing: 0.6px;
    font-weight: 400;
}

.location-iframe {
    width: 100%;
    height: 400px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;

}
.location-row h1 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #110b11;
    text-align: start;
}
.location-iframe iframe {
    border: 0;
    border-radius: 30px;
    width: 100%;
    height: inherit;
}


.career-section{
    padding: 5%;
    background-color: #fff;
}
.career-container {
    width: 60%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
}
.career-container h1{
    color: #110b11;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5%;
}

.career-container p{
    color: #333;
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
    letter-spacing: 1.5px;
    text-align: center;
}
.career-images {
    display: flex;
    /* gap: 20px; */
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    padding: 6% 0;
}
.career-img1{
    width: 100%;
    height: 550px;
    margin-bottom: 20px;
    border-radius: 30px;
    object-fit: cover;
}
.career-img2{
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: 30px;
    object-fit: cover;
}

.what-we-offer{
    background-color: #f3f3f3;
    width: 100%;
    padding: 5%;
}
.what-we-offer h1{
    color: #110b11;
    text-align: center;
    margin-bottom: 30px;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    font-family: 'Arial', sans-serif;
    line-height: 1.2;
}
.offer-row{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4% 0;
    /* text-align: center; */
}
.offer-card{
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 6%;
    border-radius: 20px;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.offer-icon{
    background-color: #f3f3f3;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto ; */
    font-size: 32px;
    /* color: #1976d2; */
}
.offer-icon i{
    font-size: 28px;
    color: #d45524;
}
.offer-card h3{
    color: #110b11;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    /* text-align: center; */
    line-height: 1.3;
    padding: 6% 0;
    letter-spacing: 1px;
}
.offer-card p{
    color: #555;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    line-height: 1.5;
    letter-spacing: 1px;
    margin: 0;
}


.hiring{
    padding: 5%;
    background-color: #fff;
    width: 100%;
}
.hiring h1{
    color: #110b11;
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    padding-bottom: 5%;
    font-weight: 600;
    line-height: 1.2;
}


.read-blog {
    width: 80%;
    margin: 0 auto;
    padding: 5%;
    background-color: #fff;
    color: #110b11;
}
.read-blog img{
    width: 500px;
    height: 500px;
}

.hiring-table-body td{
    padding: 15px;
    font-size: 1.2rem;
    color: #333;
}
/* Pages Css End  */

/* Custom model Start */
.custome-model{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.custome-model-content{
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    /* overflow-y: auto; */
    margin: auto;
    margin-top: 5%;
}
.custom-modal-header{
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-modal-body{
    background-color: #fff;
    padding: 30px;
    /* border-radius: 10px; */
    /* width: 80%; */
    /* max-width: 600px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
    position: relative;
    overflow-y: scroll;

}

/* Custom model End */

@media (max-width: 767.98px) {
    .body-section {
        height: auto;
    }

    .topsection {
        background-size: contain;
    }

    .intro-text {
        width: 90%;
        padding: 20px 0 60px;
        position: relative;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .into-heading {
        font-size: 2rem;
        margin: 0 5px 15px;
    }

    .intro-text p {
        width: 100%;
        font-size: 1rem;
        margin: 15px auto 25px;
    }

    .btn-red {
        font-size: 1.1rem;
        padding: 8px 20px;
    }

    .page-section {
        height: 60vh;
    }
    .industry-section , .services-banner, .blog-section {
        height: 60vh;
    }
    .abouttopsection{
        background-size: auto;
        height: 60vh;
    }

    .aboutus {
        padding: 0 20px;
    }

    .about-sections {
        padding: 12% 0;
    }
    .about-video{
        width: 100%;
        height: 200px;
    }
    .about-heading {
        font-size: 2rem;
    }

    .about-para {
        font-size: 1rem;
    }

    .about-icons {
        flex-direction: column;
        gap: 20px;
    }

    .about-icon-box {
        margin-bottom: 10px;
    }

    .service {
        padding: 10% 20px;
    }

    .service-title {
        font-size: 2.2rem;
        padding-bottom: 30px;
    }

    .service-box {
        padding: 8%;
        margin-bottom: 20px;
    }

    .service-box-para,
    .service-points {
        font-size: 1rem;
    }

    .clients {
        padding: 30px 20px;
    }

    .client-img {
        width: 100px;
        height: 100px;
        margin: 0 1.5rem;
    }

    .client-review {
        padding: 10% 20px;
    }

    .review h2 {
        font-size: 2.2rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .footer {
        padding: 10% 20px;
    }

    .footer-sub-heading {
        font-size: 1.3rem;
    }

    .foot-link,
    .footer-p,
    .address p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .intro-text {
        width: 80%;
    }

    .into-heading {
        font-size: 3.5rem;
    }

    .intro-text p {
        width: 80%;
        font-size: 1.3rem;
    }

    .aboutus {
        padding: 0 30px;
    }

    .service {
        padding: 5% 30px;
    }

    .client-review {
        padding: 8% 30px;
    }
}

@media (min-width: 1200px) {
    .into-heading {
        font-size: 4rem;
    }

    .intro-text p {
        font-size: 1.3rem;
    }

    .about-heading {
        font-size: 2.5rem;
    }

    .about-text h3 {
        font-size: 2.5rem;
    }

    .service-title,
    .review h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-intro {
        width: 70%;
    }
    .page-heading {
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0;
    }
}
