<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* home page */
.home-banner {
	background-image: url(../images/home/home-banner.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
}


.home-banner .container {
    position: relative;
    z-index: 1;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.gradient-bg {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 242, 254, 1) 100%);
}

.white-box {
	position: relative;
	overflow: hidden;
}

.white-box:after {
	content: url(../images/home/gard-rectangle-grad.jpg);
	position: absolute;
	bottom: -7px;
	left: -1px;
}

@media (min-width: 992px) {
	.move-box {
		left: -200px;
		bottom: 50px;
	}



	.enquiry .box-content {
		position: absolute;
		right: -200px;
		width: 550px;
		bottom: 80px;
	}

	.enquiry .box-content:after {
		content: url(../images/home/gard-rectangle-grad.jpg);
		position: absolute;
		bottom: -7px;
		left: -1px;
	}

}

@media (min-width: 1200px){
    	.gradient-bg .container-fluid .col-md-6.custom-width {
		width: 580px !important;
	}
}


.image-box-1 .position-text {
	position: absolute;
	bottom: 50px;
	right: 85px;
}

.position-text a {
	position: relative;
}

.position-text a:after {
	content: url(../images/home/white-arrow.svg);
	top: 2px;
	margin-left: 8px;
	position: absolute;
}

.image-box-2 {
	display: flex;
	align-items: center;
}

.image-box-2 .position-text {
	position: absolute;
	margin-top: -100px;
}

.image-box-3 .position-text {
	position: absolute;
	top: 40px;
	left: 25px;
}

.image-box-3 .position-text a:after {
	filter: brightness(0);
}

.image-box-1 img,
.image-box-2 img,
.image-box-3 img {
	transition: 0.5s ease-in-out;
}

.image-box-1:hover img,
.image-box-2:hover img,
.image-box-3:hover img {
	transform: scale(1.1);
	transition: 0.5s ease-in-out;
}

.image-box-1::after {
	content: url(../images/home/image-block.png);
	position: absolute;
	bottom: -8px;
	left: 0;
	transform: scaleX(1.5);
}

.image-box-3::after {
	content: url(../images/home/image-block.png);
	position: absolute;
	bottom: -8px;
	left: 0;
	transform: scaleX(1.5);
}

.services {
	background-image: unset;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/home/backgound.jpg);
	background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    z-index: 0;
    transition: transform 5s ease-in-out;
}
.services.animate::before {
    animation: transIn 3s forwards;
}

.services .container{z-index: 1; position: relative;}
@keyframes transIn {
    0% {
        transform: translateY(50%);
    }
    100% {
		transform: translateY(0%);
    }
}

.image-head-box {
	background-image: url(../images/home/media-box-image.jpg);
	height: 550px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.label-text {
	position: absolute;
	/* top: 100px; */
	right: 58px;
	transform-origin: top right;
	transform: rotate(270deg);
	width: 100%;
	background: linear-gradient(319deg, rgba(255, 78, 0, 1) 0%, rgba(98, 9, 92, 1) 51%);
}

.solutions .image-box {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}

.solutions img {
	transition: 0.5s ease-in-out;
}

.solutions .image-box:hover img {
	transform: scale(1.1);
	transition: 0.5s ease-in-out;
}

.text-orange.fw-bold.fs-16 {
	position: relative;
}

.text-orange.fw-bold.fs-16::after {
	content: url(../images/home/orange-arrow.svg);
	position: absolute;
	top: 1px;
	margin-left: 8px;
}

.faq .accordion-item {
	margin: 20px 0;
}

.accordion {
	--bs-accordion-border-color: unset !important;
}

.faq .accordion-item .accordion-button {
	border: 1px solid #62095C1A;
	border-radius: 14px !important;
	padding: 20px;
	font-size: 16px;
	line-height: 19.2px;
}

.accordion-button:focus {
	box-shadow: unset !important;
}

.faq .accordion-item .accordion-header .accordion-button:not(.collapsed) {
	background-color: #FFEEFE;
	border: 1px solid #FFEEFE !important;
	border-radius: 14px 14px 0 0 !important;
	color: #62095C !important;
}

.faq .accordion-item .accordion-body {
	background-color: #FFEEFE;
	border: 1px solid #FFEEFE !important;
	border-radius: 0 0 14px 14px;
	position: relative;
}

@media (min-width:1200px) {
	.faq .accordion-button:not(.collapsed):before {
		content: url(../images/home/accordion-line.png);
		position: absolute;
		bottom: -5px;
	}

	.faq .accordion-item .accordion-body {
		background-color: #FFEEFE;
		border: 1px solid #FFEEFE !important;
		border-radius: 0 0 14px 14px;
		position: relative;
		padding: 10px 110px 10px 20px;
	}
}

.social-icons ul {
	padding: 0;
	list-style-type: none;
}

.social-icons ul li {
	margin: 0 5px;
}

.white-dot:before {
	content: '.';
	color: #fff;
	font-size: 30px;
	position: absolute;
	left: -25px;
	top: -8px;
}

@media (max-width: 992px) {
	.label-text {
		width: 148% !important;
	}
}

.boxSwiper .position-relative.overflow-hidden {
	margin-bottom: 50px;
}

.swiper-pagination-bullet {
	background-color: #FF4E00 !important;
	opacity: 0.6 !important;
}

.swiper-pagination-bullet-active {
	background-color: #62095C !important;
	width: 40px !important;
	border-radius: 10px !important;
}

.white-box{box-shadow:0px 4px 15px 0px #00000017;}
.orange-button{padding: 10px 32px 11px 32px !important;}

/* content moderation page */
.content-moderation-banner{
	background-image: url(../images/content-moderation/content-moderation-banner.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
}

.content-moderation-banner .container {
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .content-moderation .move-box {
        left: -203px;
        bottom: 50px;
    }
}

.bg-l-purple{background-color: #FFF3FE;}
.white-box.bg-l-purple:after {
	content: url(../images/content-moderation/box-line.png);
	position: absolute;
	bottom: -7px;
	left: -1px;
	transform: scaleX(1.3);
}

.white-box-content{box-shadow: 0 4px 15px 0 #0000001F;height: 165px;}

.solutions-section{background-image: url(../images/content-moderation/solutions-banner.jpg); background-position: center;background-size: cover;background-repeat: no-repeat;}
.solutions-section .bg-grad-box{border-top: 10px solid #F24808;background: linear-gradient(90deg, rgba(255,242,254,1) 10%, rgba(255,255,255,1) 10%);}
.container-new .layout-box{box-shadow: 0px 4px 15px 0 #00000021;}
.bg-d-grad{background-image: url(../images/content-moderation/bg-gradient.png); background-position: center; background-repeat: no-repeat; background-size: cover;height: 100%;}
.solutions-sec .float-box{position: relative; margin-top: -62px !important;}

@media (max-width: 600px){
    .white-box-content{box-shadow: 0 4px 15px 0 #0000001F;height: 100% !important;}
    .p-4-5 {
    padding: 2.5rem;
}
.image-head-box {
    height: 350px !important;
    background-position: left !important;
}
}

@media (min-width:600px) and (max-width: 992px){
    .image-head-box{height: 340px !important;}
}

@media (max-width: 992px){
    .sptt-80{padding-top: 80px;}
}

.qaas-banner {
	background-image: url(../images/qaas/qaas-banner.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
}
.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-repeat: no-repeat;
    background-image: inherit;
    background-size: cover;/* Start slightly zoomed in */
    background-position: center;
    z-index: 1;
    transition: transform 5s ease-in-out;
    animation: zoomIn 3s forwards;
}

.white-long-box{background-color: #fff; box-shadow: 0 4px 15px 0 #00000017;}
.white-long-box::after{content: url(../images/qaas/gradient-long-line.png);position: absolute;bottom: -5px; left: -1px;}

@media (min-width: 992px) and (max-width: 1300px){
	.new-gradient-bg .image img{height: 850px;}
	.box-up{position: relative; margin-top: -370px!important;}
	/* .new-gradient-bg{background-color: #fff; background-position: top;
		background-repeat: no-repeat;
		background-size: cover;}
		.new-gradient-bg:before{content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-image: url(../images/qaas/new-grad-bg.jpg);
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
			z-index: 0;
			transition: transform 2s ease-in-out;}
			.new-gradient-bg.animate::before {
				animation:scaleIn 1s forwards;
			} */


}
.box-up{position: relative; margin-top: -343px;}
@keyframes scaleIn {
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}
@media (min-width: 1300px){
	
}

.qaas-solutions {
	background-image: unset;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}
.qaas-solutions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/qaas/service-qaas.jpg);
	background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    z-index: 0;
    transition: transform 5s ease-in-out;
}
.qaas-solutions.animate::before {
    animation: transIn 3s forwards;
}

.qaas-solutions .container{z-index: 1; position: relative;}

.purple-box{height: 100%;}
.bg-ll-purple{background-color: #FDEFFFCC;}

 .partner{background-image: url(../images/qaas/bg-gardient-logo.jpg);background-size: cover;
    background-position: right;
	background-repeat: no-repeat;}
@media (min-width: 992px){
	.mt-lg-7{margin-top: 4rem !important;}
}

@media (max-width: 600px){
    .qaas-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-repeat: no-repeat;
    background-image: inherit;
    background-size: cover;/* Start slightly zoomed in */
    background-position: right !important;
    z-index: 1;
    transition: transform 5s ease-in-out;
    animation: zoomIn 3s forwards;
}
}

@media (max-width: 992px){
    .box-up{position: relative; margin-top: unset !important;}
}


/* annotation page */
.annotation-banner{background-image: url(../images/annotation/annotation-banner.jpg);background-size: cover;
    background-position: right;
	background-repeat: no-repeat;}

	.partner .orange-button:hover{border: 1px solid #FF4E00 !important; }

/* trust and safety page */
.trust-banner{background-image: url(../images/trust/trust-banner.jpg);background-size: cover;
    background-position: right;
	background-repeat: no-repeat;}

.trust-safety .white-box:after {
    content: url(../images/trust/orange-line.png);
    position: absolute;
    bottom: -7px;
    left: -1px;
}

.transparent-logo:before{content: url(../images/trust/logo-transparent.png); position: absolute; top: 0; right: 0;}

/* data analytics page */

.data-banner{
	background-image: url(../images/data-analytics/data-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

@media (min-width: 992px) and (max-width: 1300px) {
    .data-gradient-bg .image img {
        height: 850px;
    }
}
@media (min-width: 1300px) and (max-width: 1440px) {
    .data-gradient-bg .image img {
        height: 850px;
    }
}

.data-analytics .box-up {
    position: relative;
    margin-top: -406px;
}

@media (min-width: 992px) and (max-width: 1300px) {
    .data-analytics .box-up {
        position: relative;
        margin-top: -435px !important;
    }
}

.data-solutions{background-image: unset;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}

.data-solutions::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/data-analytics/service-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
	transition: transform 5s ease-in-out;
}

.data-solutions.animate::before {
	animation: transIn 3s forwards;
}

@media (min-width: 992px){
	#services .p-lg-5{padding: 2.3rem !important;}
}

/* maps page */
.maps-banner{
	background-image: url(../images/maps/maps-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

.white-box.bg-white:after {
    content: url(../images/content-moderation/box-line.png);
    position: absolute;
    bottom: -7px;
    left: -1px;
    transform: scaleX(1.3);
}

@media (min-width: 992px) {
	.maps .layout-grid p{width: 84%;}
	.maps .text-end{
			margin-top: -58px;
	}
	.maps .gradient-bg .col-md-5{
		width:37% !important;
	}
    .maps .gradient-bg .move-box {
        left: -145px;
        bottom: 50px;
    }
}
.maps .white-box-content {
	box-shadow: 0 4px 15px 0 #0000001F;
	height: 190px;
}

@media (min-width: 600px) and (max-width: 992px){
	.maps .white-box-content {
		box-shadow: 0 4px 15px 0 #0000001F;
		height: 220px;
	}
}

.maps .solutions-section {
	background-image: url(../images/maps/solutions-banner.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/* content creation page */
.content-creation-banner{
	background-image: url(../images/content-creation/content-creation-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

@media (min-width: 992px) and (max-width: 1300px) {
    .content-creation .box-up {
        position: relative;
        margin-top: -520px !important;
    }
}
@media (min-width: 1300px) and (max-width: 1700px) {
    .content-creation .box-up {
        position: relative;
        margin-top: -465px !important;
    }
}

/* media page */
.media-banner{
	background-image: url(../images/media/media-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}
    .gradient-bg .image img {
        object-fit: cover ;
    }

/* research and consulting page */
.research-banner{
	background-image: url(../images/research/research-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

/* communication, media and technology page */
.communication-banner{
	background-image: url(../images/communication/communication-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

/* medical and life science page */
.medical-banner{
	background-image: url(../images/medical/medical-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

.data-services{background-image: unset;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}

.data-services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/medical/data-services.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	z-index: 0;
	transition: transform 5s ease-in-out;
}

.data-services.animate::before {
	animation: transIn 3s forwards;
}

.shadow-new{
	box-shadow: 0px 4px 15px 0px #0000001F;
}

.gradient-bg .image img{object-fit: cover;}

/* medical and life science page */
.retail-banner{
	background-image: url(../images/retail/retail-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

.retail-services{background-image: unset;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}

.retail-services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/retail/retail-service.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	z-index: 0;
	transition: transform 5s ease-in-out;
}

.retail-services.animate::before {
	animation: transIn 3s forwards;
}

.vehicles-banner{
	background-image: url(../images/vehicles/vehicles-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}


.vehicles-services{background-image: unset;
	background-color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}

.vehicles-services::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/vehicles/vehicles-services.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
	z-index: 0;
	transition: transform 5s ease-in-out;
}

.vehicles-services.animate::before {
	animation: transIn 3s forwards;
}

/* geospatial information services page */

.geospatial-banner{
	background-image: url(../images/geospatial/geospatial-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

.w-160{
    width: 160px;
}

.aboutus-banner{
	background-image: url(../images/about/about-us-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

.about .founder .content img{vertical-align: top !important;}

.csr-banner{
	background-image: url(../images/csr/csr-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

.label-text-csr {
    position: absolute;
    /* right: 58px; */
    transform-origin: top left;
    transform: rotate(270deg);
    width: 60%;
    background: linear-gradient(319deg, rgba(255, 78, 0, 1) 0%, rgba(98, 9, 92, 1) 51%);
    bottom: 30px;
}
.white-shadow-box{
	background-color: #fff;
	box-shadow: 0 4px 15px 0 #0000001F;
	padding: 17px;
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
}


.contact-form-main {
    padding: 45px;
    background: #fff;
	box-shadow: 0px 4px 15px 0px #0000001F;
}
.contact-frm label.form-label {
    font-size: 14px;
    color: #344054;
    line-height: 20px;
    font-weight: 500;
    font-family: var(--font-main);
    margin-bottom: 6px;
}
.contact-frm .form-control:focus {
    color: rgba(208, 213, 221, 1);
    border-color: unset;
    box-shadow: none;
}
.contact-frm input.form-control {
    padding: 12px 16px;
    color: #000 !important;
    font-size: 16px;
    line-height: 24px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-family: var(--font-main);

}
.mb-24{
    margin-bottom: 24px;
}
.contact-frm textarea.form-control {
    padding: 12px 16px;
    color: #000 !important;
    font-size: 16px;
    line-height: 24px;
    height: 116px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-family: var(--font-main);
}
.contact-frm button {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    background: #FF4E00;
    padding: 16px 20px;
    width: 100%;
    border: 1px solid #FF4E00;
    border-radius: 35px;
    margin-top: 8px;
    font-family: var(--font-main);
}
.contact-frm button:hover{
    background: transparent;
    color: #FF4E00;
    border: 1px solid #FF4E00;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    font-family: var(--font-main);
}
::placeholder {
    font-family: var(--font-main);
}
@media screen and (min-width:1000px){
    .contact-us-page .navbar .nav-item .nav-link {
        color: #1F1F1F;
    }
    .contact-us-page .navbar .nav-item .nav-button {
        color: #fff !important;
        background-color: #1F1F1F;
        border: 1px solid #1F1F1F;
    }
    .contact-us-page .navbar .nav-item .nav-button:hover {
        color: #fff !important;
        border: 1px solid #1F1F1F !important;
        background: #1F1F1F !important;
    }
	.contact-us-page .header .navbar img{filter: unset !important;}
	.contact-us-page .header .navbar i{color: #000 !important;}
}
@media screen and (min-width:768px) and (max-width:1080px){
    .contact-form-main {
        padding: 30px;
    }
}


.transparent-logo-contact:before{content: url(../images/csr/transparent-contact-logo.png); position: absolute; right: 0; top: 100px;}

@media (max-width: 500px)
{
	.contact-form-main {
		padding: 25px !important;
		background: #fff;
		box-shadow: 0px 4px 15px 0px #0000001F;
	}
}

@media (min-width: 1450px) and (max-width: 1700px) {
    .media .box-up {
        position: relative;
        margin-top: -438px !important;
    }
}

@media (min-width: 1300px) and (max-width: 1450px) {
    .qaas .image img {
        height: 800px;
    }
}
@media (min-width: 1400px) and (max-width: 1600px) {
    .media .image img {
        height: 800px;
    }
}

.qaas .box-up {
    position: relative;
    margin-top: -348px;
}
@media (min-width: 1700px) {
   .qaas .box-up {
        position: relative;
        margin-top: -186px !important;
    }
}

.gradient-bg h2.text-black.text-md-start.text-center{margin-bottom: 13px !important;}


/* dei pages */

.dei-banner{
	background-image: url(../images/dei/dei-banner.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}

.sky {
	background-image: url(../images/dei/sky.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}
.sky::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/dei/sky.jpg);
	background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
    z-index: 0;
    transition: transform 5s ease-in-out;
}

.sky.animate::before {
    animation: zoomIn 3s forwards;
}

.sky .container{z-index: 1; position: relative;}

.line-new{position: relative;}


.gradient-black{
	background-image: url(../images/dei/gradient-image-logo.jpg);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}

@media (max-width: 600px){
	.gradient-black{
		background-image: url(../images/dei/mob-gradient-bg.jpg);
		background-size: cover;
		background-position: right;
		background-repeat: no-repeat;
		height: 650px;
	}
}


/* talent community  */
.talent-banner{
	background-image: url(../images/talent/talent-banner.jpg);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}

.boxed-bg{
	background-image: url(../images/talent/grad-image.jpg);
	background-size: cover;
	background-position: top;
	background-repeat: no-repeat;
}

@media (max-width: 500px){
	.boxed-bg{
		background-image: url(../images/talent/gard-mob.jpg);
		background-size: cover;
		background-position: top;
		background-repeat: no-repeat;
		height: 585px;
	}
}

.talent .efforts {
	background-image: unset;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}
.talent .efforts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/talent/gradient-image.jpg);
	background-size: cover;
    background-position: right;
	background-repeat: no-repeat;
    z-index: 0;
    transition: transform 5s ease-in-out;
}
.talent .efforts.animate::before {
    animation: transIn 3s forwards;
}

/* about us page */
.gradient-circle{
	background-image: url(../images/about/about-gradient.jpg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
}

@media (min-width: 600px){
	.gradient-circle .white-box-content {
		box-shadow: 0 4px 15px 0 #0000001F;
		height: 145px;
	}
}

.about .new-bg .boxed-bg{
	background-image: url(../images/about/new-bg.jpg);
		background-size: cover;
		background-position: top;
		background-repeat: no-repeat;
		height: unset !important;
}

@media (max-width: 600px){
    .about .new-bg .boxed-bg{
	background-image: url(../images/about/new-bg.jpg);
		background-size: cover;
		background-position: top;
		background-repeat: no-repeat;
		height: 500px !important;
}
}

.why{
	background-image: url(../images/about/why-banner.jpg);
		background-size: cover;
		background-position: top;
		background-repeat: no-repeat;
}
@media (min-width: 600px){
	.fixed-btn{display: none;}
}
@media (max-width: 600px){
.fixed-btn{
	display: flex;
	width: 100%;
	position: fixed;
	text-align: center;
	bottom: 0px;
	z-index: 99;
	justify-content: center;
}

.fixed-btn .orange-button{
	width: 100%;
	display: block;
	border-radius: 0px !important;
}}


.taborange-button {
	background-color: #FF4E00 !important;
	color: #fff !important;
	border: 1px solid #FF4E00 !important;
	
	padding: 10px 32px !important;
	transition: 0.5s;
}

.taborange-button:hover {
	background-color:#62095C !important;
	border: 1px solid #62095C !important;
	transition: 0.5s;
}

@media (min-width: 600px) and (max-width: 1200px){
	.taborange-button{
		border-radius: 47px !important;
	}
}

@media (max-width: 600px){
    .mt-50{padding-bottom: 60px !important;}
}

.contact-us-page .fixed-btn{display: none !important;}
@media (max-width: 600px){
   .contact-us-page .mt-50{padding-bottom: 20px !important;}
}



.generative-banner{
	background-image: url(../images/generative-ai/generative-banner.jpg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
}

.generative .illustration-bg{
	background-image: url(../images/generative-ai/illustration-banner.jpg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		height: 540px;
}

@media (max-width: 600px){
	.generative .illustration-bg{
		background-image: url(../images/generative-ai/mob-illustration.jpg);
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
			height: 700px;
	}
	.generative .bottom-section{
			height: unset !important;
			padding-bottom: 60px !important;
	}
	.next-purple .illustration-bg{
		background-image: url(../images/next-purple/blue-bg.jpg) !important;
			background-size: cover;
			background-position: bottom;
			background-repeat: no-repeat;
			height: unset !important;
			padding-bottom: 0 !important;
			overflow: hidden;
	}
	.conversational .illustration-bg{
		background-image: url(../images/conversational-ai/blank-bg.jpg) !important;
			background-size: cover;
			background-position: bottom;
			background-repeat: no-repeat;
			height: unset !important;
			overflow: hidden;
	}
	.llm .illustration-bg{
			height: unset !important;
			overflow: hidden;
	}
	.lidar .illustration-bg{
		background-image: url(../images/lidar/mob-illustration.jpg) !important;
			background-size: cover;
			background-position: bottom;
			background-repeat: no-repeat;
			height: 700px !important;
	}
}

.w-fit{width: fit-content;}

.generative .bottom-section{
	background-image: url(../images/generative-ai/white-banner.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
		height: 600px;
}

.next-purple-banner{
	background-image: url(../images/next-purple/next-purple-banner.jpg);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
}

.next-purple .illustration-bg{
	background-image: url(../images/next-purple/illustration-banner.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
		height: 540px;
}
.next-purple .blur-box{
	border-radius: 10px;
	background: linear-gradient(239.9deg, rgba(255, 255, 255, 0.2) -8.48%, rgba(255, 255, 255, 0.06) 100%);
}
.next-purple .blur-box ul{
	list-style-type: none;
}
.next-purple .blur-box ul li a{
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
}
.next-purple .blur-box ul li{
	padding: 10px;
	margin-bottom: 2px;
	border-radius:6px;
	transition: 0.5s;
}
.next-purple .blur-box ul li:hover{
	background-color: #fff;
}
.next-purple .blur-box ul li:hover a{
	color: #630A5D;
	font-weight: 700;
}
.next-purple .blur-box ul li:hover a:after{
	left: 8px;
	visibility: visible;
	opacity: 1 !important;
}
.next-purple .blur-box ul li a:after{
	content: url(../images/next-purple/orange-arrow.svg);
	left: -10px;
	position: relative;
	visibility: hidden;
	transition: 0.5s;
	opacity: 0;
}

.next-purple .bottom-section{
	background-image: url(../images/next-purple/bottom-section-banner.jpg);
		background-size: cover;
		background-position: bottom left;
		background-repeat: no-repeat;
		height: 600px;
}

.conversational-banner{
	background-image: url(../images/conversational-ai/conversational-banner.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
}

.conversational .illustration-bg{
	background-image: url(../images/conversational-ai/illustration-banner.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
		height: 540px;
}

.conversational .bottom-section{
	background-image: url(../images/conversational-ai/bottom-section-banner.jpg);
		background-size: cover;
		background-position: bottom left;
		background-repeat: no-repeat;
		height: 600px;
}

.llm-banner{
	background-image: url(../images/llm/llm-banner.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
}

.llm .illustration-bg{
	background-image: url(../images/llm/llm-bg.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
		height: 540px;
}
.llm .bottom-section{
	background-image: url(../images/llm/bottom-section-banner.jpg);
		background-size: cover;
		background-position: center left;
		background-repeat: no-repeat;
		height: 700px;
}

.lidar-banner{
	background-image: url(../images/lidar/lidar-banner.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
}

.lidar .illustration-bg{
	background-image: url(../images/lidar/illustration.jpg);
		background-size: cover;
		background-position: bottom;
		background-repeat: no-repeat;
		height: 540px;
}

.lidar .bottom-section{
	background-image: url(../images/lidar/bottom-section.jpg);
		background-size: cover;
		background-position: bottom left;
		background-repeat: no-repeat;
		height: 600px;
}


.talent-illustration-bg {
	background-image: unset;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden !important;
	position: relative;
}
.talent-illustration-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/talent/new-illustration.jpg);
	background-size: cover;
    background-position: bottom;
	background-repeat: no-repeat;
    z-index: 0;
    transition: transform 5s ease-in-out;
}
.talent-illustration-bg.animate::before {
    animation: transIn 3s forwards;
}

.steps button{
	font-size: 20px;
	line-height: 30px;
	color: #62095C;
	font-weight: 700;
	padding: 10px 0;
	margin-bottom: 15px;
}
.steps .accordion-button:not(.collapsed){
	background-color: unset !important;
	color:#62095C !important;
	box-shadow: unset !important;
}

.steps button:before{
	content: '';
	background: linear-gradient(170deg, rgba(98,9,92,1) 28%, rgba(213,59,25,1) 100%);
	width: 100%;
	height: 4px;
    position: absolute;
    bottom: -7px;
    left: 0px;
}
.steps .accordion-button::after {
	background-image: url(../images/talent/chevron.svg) !important;
}

.lh-25-2{line-height:25.2px;}
.fs-20{font-size: 20px !important;}
.eventbox-shad{box-shadow: 0px 3.73px 13.98px 0 #0000001F !important;}

@media (min-width:600px){
	.flow-box .content:before{
		content: '';
		background: linear-gradient(180deg, rgba(98, 9, 92, 1) 46%, rgba(213, 59, 25, 1) 100%);
		position: absolute;
		height: 89%;
		width: 3px;
		left: -10px;
		top: 8px;
	}
}

.bt-border{border-bottom:1px solid #00000023;}
.pb-4-2{    padding-bottom: 2.2rem !important;}
.pt-4-2{    padding-top: 2.2rem !important;}
@media (min-width:1200px){
	.p-6{padding: 4rem !important;}
 .max-1000{max-width: 1000px !important; margin: auto !important;}
 .maxs-1000{max-width: 1000px !important; margin: 40px auto 0 auto !important;}
 .talent .boxed-bg{display: flex; align-items: center; height: 500px;}
}

section.inner--banner {
    padding-top: 130px;
    padding-bottom: 50px;
}

@media (min-width:1200px){
	.thankyou .navbar .nav-item .nav-link {
		color: #000 !important;
	}
	
	.thankyou .navbar .nav-item .nav-link i {
		color: #000 !important;
	}
	
	.thankyou .navbar .nav-item .nav-link.orange-button {
		color: #fff !important;
	}
}

.thankyou .header .navbar img {
	filter: unset !important;
}

</pre></body></html>