@font-face {
  font-family: "Poppins Bold";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins Regular";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
    url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins SemiBold";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

** {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins Regular", sans-serif;
	overflow-x:hidden !important;
}
:root {
  --heading_color: #0e0d41;
  --background-color: #eef6fe;
  --text-color: #0f0f0f;
  --black-color: #000000;
  --button-color: #0065b3;
  --border-color: #d8e9f7;
  --text-white: #ffff;
  --secondary-button: #2c4a7d;
  --footer-color: #04042b;
}
a {
  text-decoration: none;
}
section {
  padding: 80px 20px;
}
h1 {
	font-size: 36px;
	line-height: 1.2;
	color: var(--text-white);
	font-family: "Poppins Medium";
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 12px;
	text-align: center;
}
.bio_left h2 {
	margin-top: 0px;
	margin-bottom: 18px;
}
h2 {
	font-size: 36px;
	line-height: 1.2;
	color: var(--heading_color);
	font-family: "Poppins Medium";
	/* margin: 0px; */
	margin: 10px 0px 25px 0px;
	font-weight: normal;
}
h3 {
  font-size: 22px;
  color: var(--heading_color);
  font-family: "Poppins Medium";
  margin: 0px;
  padding-bottom: 13px;
  font-weight: normal;
}
h5 {
  font-size: 18px;
  color: var(--heading_color);
  font-family: "Poppins Medium";
  margin: 0px;
  font-weight: normal;
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-color);
  margin: 0px;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.header_sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}
.main_logo img {
  width: 156px;
}
.main_menu ul {
	list-style: none;
	display: flex;
	gap: 35px;
}
.main_menu li a {
	color: var(--heading_color);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	position: relative;
	width: fit-content;
	padding-bottom: 2px;
}
.main_btn img {
	width: 24px;
	margin-top: 3px;
}
.main_btn p {
  color: var(--heading_color);
}
.main_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main_header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
}
 .main_menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--heading_color);
  transition: width 0.3s ease;
}
.main_menu li a:hover::before {
  transform-origin: right;
  transform: scaleX(1);
  width: 100%;
}
.video_container {
	/* max-width: 1700px; */
	max-width: 1320px;
	display: flex;
	justify-content: center;
	padding: 36px 40px 40px 40px;
	background-color: #100b45;
	margin: auto;
	position: relative;
	flex-direction: column;
	gap:28px;
}
.banner_content p {
	color: var(--text-white);
	text-align: center;
}
video {
  width: 100%;
  object-fit: cover;
}

.video-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-title {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.bio_right img {
  width: 100%;
}
.bio_section {
	background: var(--background-color);
	padding-top: 70px !important;
}
.bio_right {
  width: 34%;
}
.bio_left {
  width: 60%;
}
.bio_main {
  display: flex;
  justify-content: space-between;
}

.bio_left ul li {
  color: var(--text-color);
  font-weight: 600;
  font-family: "Poppins SemiBold";
}
.bio_left p {
	color: var(--black-color);
	line-height: 32px;
}
.text_highlight {
  color: var(--text-color);
  font-weight: 600;
  font-family: "Poppins SemiBold";
}
/* .text_gap {
  padding-top: 25px;
} */
.bio_left ul {
	margin: 0px;
	padding: 0px;
	padding-left: 25px;
}
.button {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--button-color);
	border-radius: 100px;
	border: 4px solid var(--border-color);
	font-size: 16px;
	line-height: 24px;
	color: var(--text-white);
	font-family: "Poppins Medium";
	padding: 12px 33px;
	position: relative;
	font-weight: normal;
	transition: all 0.3s ease;
}
.main-btn {
  display: flex;
  margin-top: 25px;
}
.arrow.img {
  width: 16px;
}
.about_sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.small_heading {
	color: var(--heading_color);
	text-transform: uppercase;
	font-family: "Poppins Medium";
	margin-bottom: 5px !important;
}
.about_text {
  max-width: 62%;
}
.main_about {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	align-items: center;
	flex-direction: column;
	gap: 50px;
}
.about_left {
  width: 38%;
}
.about_left img {
  width: 100%;
}
.about_right {
  width: 59%;
}
.about_right ul {
	margin: 0px;
	padding: 0px;
	padding-left: 25px;
}
.about_gap {
  padding-top: 25px;
}
.about_paragraph {
  padding-top: 15px;
}
.about_paragraph:first-child {
	padding-top: 0px !important;
}
.about_content {
  padding-top: 25px;
}
.main_social img {
  width: 24px;
}
.main_social {
	border-radius: 100px;
	border: 2px solid var(--border-color);
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #0e0d41, #0b6299);
	padding: 8px 27px;
	gap: 15px;
	position: absolute;
	top: -22px;
}
.social_link {
  display: flex;
  justify-content: center;
  position: relative;
}
.casestudy_text {
  max-width: 60%;
}
.contact_section {
	background-image: url("https://tech-demo.co.in/wp/salesproz/wp-content/uploads/2025/04/Frame-29-scaled.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	max-width: 1368px;
	margin: auto;
	padding-left:20px !important;
	padding-right:20px !important;
}
.main_contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main_contact h2 {
  color: var(--text-white) !important;
  text-align: center;
  font-size: 40px;
  line-height: 40px;
  font-family: "Poppins Regular" !important;
}
.main_contact p {
  color: var(--text-white);
  max-width: 55%;
  margin: auto;
  text-align: center;
}
.contact_button {
  display: flex;
  justify-content: center;
  margin: auto;
  margin-top: 40px;
  border: 4px solid rgb(rgba(255, 255, 255, 0.22)) !important;
}
.result_content {
  max-width: 68%;
  margin: auto;
  color: var(--black-color);
}
.contact_button .button {
	background: var(--text-white) !important;
	color: var(--secondary-button);
	transition: all 0.3s ease;
}
.casestudy_image img {
  width: 100%;
}
.casestudy_image img {
  width: 100%;
}
.result_right {
  width: 48%;
}
.result_left {
  width: 48%;
  padding-right: 66px;
}

.result_main {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
}
.result_right img {
  width: 100%;
}
.casestudy_image {
	max-width: 642px;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}
.result_button {
	display: flex;
/* 	width: 48%; */
	align-items: center;
	flex-direction: column;
}
.result_section {
	padding-bottom: 0px;
}
.result_button .up_arrow {
	width: 100% !important;
	max-width: 40px;
	margin-left: 45%;
}
.result_section .about_sub .result_content {
	display:none;
}
.result_button .button {
	/* margin-top: -35px; */
	margin-left: 10px;
	margin-top: 6px;
}
footer {
  background: var(--footer-color);
  padding: 60px 0px;
}
.footer_sub span {
	color: var(--text-white);
	font-size: 28px;
	font-weight: 300;
	cursor: pointer;
}
.footer_highlight {
  font-family: "Poppins Medium" !important;
}
.main_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_menu ul {
	list-style: none;
	display: flex;
	gap: 30px;
	padding: 0px;
}
.footer_menu li a {
	color: var(--text-white);
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: none;
	/* padding: 0px 24px; */
	position: relative;
}
.footer_icon img {
  width: 24px;
}
.footer_icon {
  display: flex;
  gap: 10px;
}
.footer_icon p {
  color: var(--text-white);
}
.footer-second {
  display: flex;
  justify-content: space-between;
}
.footer_copyright {
	color: var(--text-white);
	color: rgb(255,255,255,0.8);
}
.footer_social img {
  width: 24px;
}
.footer_social {
  display: flex;
  gap: 25px;
}

.footer-second {
	display: flex;
	justify-content: space-between;
	padding-top: 5px;
}
.footer_menu li:last-child a {
  padding-right: 0px !important;
}
.footer_line {
	height: 1px;
	border-top: 1px solid rgb(255, 255, 255, 0.5);
	max-width: 590px;
}
.footer_menu {
  /* width: 43%; */
  width: fit-content;
}
.footer_sub {
  /* width: 13%; */
  width: fit-content;
}
.footer_border {
  width: 39%;
}

.slides {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.slider {
  position: relative;
  overflow: hidden;
/*   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

/* Video Styling */
video {
	width: 100%;
	display: block;
	aspect-ratio: 1.8/1;
}

/* Video Banner Styling */
/* .video-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
} */

/* .play-button {
  width: 100px;
  height: 100px;
  background-color: #0065b3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.play-button:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  margin-left: 5px;
} */

/* .play-button:hover {
  transform: scale(1.1);
} */

/* Hide Class */
.hidden {
  display: none;
}
.client_section video {
    aspect-ratio: 2/1.2;
/*   height: 317px !important; */
  padding: 0px 25px !important;
}

.slides .slick_prev {
  width: 20px !important;
}
.slides .slick_prev.slick-arrow {
	position: absolute !important;
	top: 45%;
	left: 65px;
	z-index: 99;
	background: #0065b3;
	padding: 15px;
	border-radius: 100%;
	cursor: pointer;
}
.slides .slick_next {
  width: 20px !important;
}

.slides .slick_next.slick-arrow img {
  width: 20px;
}
.slides .slick_next.slick-arrow {
	position: absolute;
	top: 45%;
	right: 34px;
	background: #0065b3;
	padding: 15px;
	border-radius: 100%;
	cursor: pointer;
}

.slides .slick-slide {
  height: auto !important;
}
.testimonial_boxes {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 25px;
	/* width: ; */
	margin-left: 15px;
}
.testimonial_boxes img {
	width: 40px;
}
.testimonial_name {
  font-family: "Poppins Medium";
  font-size: 18px;
}
.testimonial_box {
  background-color: var(--text-white);
  padding: 35px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0px 15px !important;
}
.testimonial .slick-slide {
  display: none;
  float: left;
  height: auto;
  min-height: 1px;
}
.testimonial_user p {
	font-size: 14px !important;
	color: grey;
	line-height: 1.2;
}
.testimonial_section {
	background: linear-gradient(180deg, #fdfdff, #eff4fe);
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
}
.testimonial .slick_prev {
  width: 25px !important;
}
.testimonial .slick_prev.slick-arrow {
  position: absolute !important;
  top: 31%;
  left: 46px;
  z-index: 99;
  background: #0065b3;
  padding: 12px;
  border-radius: 100%;
  cursor:pointer;
}
/* .testimonial .slick_next {
  width: 25px !important;
} */

.testimonial .slick_next.slick-arrow img {
  width: 25px;
}
.testimonial .slick_next.slick-arrow {
	position: absolute;
	top: 31%;
	right: 46px;
	background: #0065b3;
	padding: 12px;
	border-radius: 100%;
	cursor: pointer;
}
.testimonial_sub::before {
  background-image: url("https://tech-demo.co.in/wp/salesproz/wp-content/uploads/2025/04/quote21.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  height: 30px;
  width: 30px;
  content: "";
  top: 1%;
  left: 19px;
  z-index: 5;
}
.testimonial_sub {
  position: relative;
}
/* .testimonial_sub::after {
	content: "";
	height: 35px;
	width: 35px;
	top: 0%;
	left: 15px;
	position: absolute;
	z-index: 1;
	background: linear-gradient(145deg, rgba(234, 240, 253, 1) 1%, rgba(255, 255, 255, 1) 100%);
} */

.footer_menu li a:first-child {
	padding-left: 0px;
}
.button:hover {
	background: #044c84;
}
.contact_button .button:hover {
	/* background: rgb(255,255,255,0.8) !important; */
	background: #e9f2fb !important;
}
 .footer_menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color:rgb(255,255,255,0.8);
  transition: width 0.3s ease;
}
.footer_menu li a:hover::before {
  width: 100%;
}
.footer_menu li a:hover::before {
  transform-origin: right;
  transform: scaleX(1);
}
/* .slick-initialized .slick-slide {
	display: block;
	width: 520px !important;
} */
.video_main {
	background: linear-gradient(180deg, #fff 50%, #eef6fe 50%);
}
#marketing-video {
	/* height: 733px; */
	aspect-ratio: 2;
}
.mobile_menu {
	display: none;
}
.mobile_btn {
	display: none;
}
.sidemenu_btn {
	display: none;
}
.Sidenav {
	display: none;
}
.client_section {
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 30px !important;
	padding-bottom: 40px;
}
.client_section iframe {
	width: 100% !important;
	aspect-ratio: 2/1.2 !important;
}
.client_section .slick-track {
	display: flex;
	gap: 25px;
} 
.main-btn img {
	width: 16px;
}
.contact_button img {
	width: 16px;
}
.result_button img {
	width: 16px;
}
.video_container iframe {
	width: 100% !important;
	aspect-ratio: 1/0.5 !important;
}
.casestudy_image iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 1.9/0.9;
}
.result_right iframe {
	width: 100%;
}
.main_logo {
	cursor: pointer;
}

.slide-item {
    position: relative;
    cursor: pointer;
/*     padding: 0 10px; */
}

.slide-item img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 0, 0.7);
    border-radius: 50%;
    background:rgb(0, 101, 179,0.8);
}

.play-button:before {

.result_right iframe {
	max-width: 642px;
}    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
}

/* Modal Styles */
.youtube-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}
.modal-content {
	position: relative;
	margin: auto;
	width: 95%;
	max-width: 900px;
/* 	/ height: 100%; / */
	display: grid;
	align-items: center;
}
.close-modal {
	position: absolute;
	top: -40px;
	right: 0;
	color: white;
	font-size: 35px;
	font-weight: bold;
	cursor: pointer;
}

#youtube-player-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

#youtube-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-wrapper {
	width: 100%;
}
/* .video_container video {
	aspect-ratio: 2/1;
} */
.video_container video {
	aspect-ratio: 1.8/1;
}
.result_right iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 1.9/0.9;
}
.result_left p {
	color: var(--black-color);
}
.youtube-modal.show {
	display: flex !important;
	align-items: center;
	justify-content: center;
}
.slider_testing .slick-slide {
	margin: 0px 15px;
}
/* .subscribe_content h5 {
	margin-bottom: 15px !important;
} */
p a{
	position:relative;
}
p a::before{
	content: '';
  	position: absolute;
  	bottom: 0;
  	left: 0;
  	width: 100%;
  	height: 2px;
  	background-color: var(--heading_color);
  	transition:
	width 0.3s ease;
}
p a:hover::before {
  width: 0;
}
.slider_testing {
	padding: 0px 0px 50px !important;
}
.subscribe_section {
	padding-top: 0px !important;
}
.slider_testing .slick-slider {
	margin-top: 0px !important;
}
.subscribe_content p, p a {
	color: var(--black-color);
}
.subscribe_left {
	width: 48%;
/* 	padding-right: 66px; */
}
.center_arrow {
    max-width: 300px;
    padding: 0 20px;
}
.images_section {
	padding-top: 0px !important;
}
.images_container img {
	max-width: fit-content;
	width: 100%;
}
.images_container {
	display: flex;
	gap: 20px !important;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.image_row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.case_study p {
	width: 80%;
	margin: auto;
}
.case_study_content p, .images_container .case_study p {
	font-size: 18px;
}
.case_study {
	padding-bottom: 30px;
}
.subscribe_content {
	display:flex;
	align-items: center;
}
.bio_left ul li {
	line-height: 24px;
}
.arrow_container {
	display: flex;
	justify-content: center;
}
.arrow_container img {
	margin-left: -200px;
}
.about_sub h2 {
	margin: 0px !important;
	margin-bottom: 15px !important;
}
.subscribe_button .button {
	max-width: fit-content;
}
.subscribe_button {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
.subscribe_button img {
	width: 16px;
}
#resources .result_right video {
	aspect-ratio: unset !important;
	object-fit: contain;
}