/**** Home Page Style ****/

/* Hero Section */
.hero-section {
	min-height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-section .hero-content {
	padding-top: 115px;
	display: flex;
	align-items: center;
}
.hero-section .hero_main_image{
	max-height: 80vh;
}

.hero-content h1 {
	font-size: 80px;
	font-weight: 800;
	line-height: 80px;
}

.hero-content .hero-para{
	color: #52525b;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 800;
}

.hero-btns .adepts-btn {
	font-size: 18px;
	padding: 15px 25px;
	margin-right: 5px;
}

.hero-counter{
	min-width: 204px;
  	margin-right: 24px;
	border-right: 2px solid #32267F;
	padding: 16px 0;
}
.hero-counter:last-child{
  	margin-right: 0;
	border-right: none;
}
.hero-counter .counter-no {
	font-size: 30px;
	font-weight: 800;
}
.hero-counter .counter-text {
	font-size: 15px;
	color: #18181b;
	line-height: 20px;
	margin-left: 15px;
}


/* Testimonial Section */
.testi_shadow {
	border-radius: 20px 20px 25px 25px;
	box-shadow: 0 5px 3px #00000040;
	padding: 60px 0 75px;
}

.testi-card .testimonial-img{
	border-radius: 20px 20px 25px 25px;
	box-shadow: 0 5px 3px #00000040;
	padding: 0px 15px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.testi-card .testi-stars {
	color: #2563eb;
	font-size: 14px;
}

.testi-card .testi-text{
	color: #090914;
	font-size: 16px;
	font-weight: 400;
}

.testi-card .teti-client {
	font-size: 15px;
}
.testi-card .teti-client h6 {
	color: #090914;
	font-weight: 600;
	letter-spacing: -0.2px;
}
.testi-card .teti-client small {
	color: #64748b;
}

.swiper-pagination {
	display: flex;
	justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  background: #c0c8e8;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #32267f;
  transform: scale(1.2);
}

/* Services Section */

.service-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 13px;
	box-shadow: 0 5px 3px #00000040;
}

.service-card-img {
	border-radius: 13px 13px 0 0;
	aspect-ratio: 16/9;
	object-fit: cover;
}
.service-card-body {
	padding: 30px 20px 20px;
}

.service-card-title {
	font-size: 28px;
	font-weight: 900;
}
.service-card-text {
	color: #585959;
	font-weight: 400;
	font-size: 16px;
}
.service-card-link {
	width: 100%;
	display: block;
	border-top: 1px solid #cbcbcb;
	text-align: right;
	padding-top: 16px;
	padding-right: 5px;
	color: #7f94f3;
	font-weight: 300;
	font-size: 18px;
	transition: color 0.3s ease;
}
.service-card-link:hover {
	color: #32267F;
}


/* Industries Section */

.industries-section {
	background-color: #f5f7fc;
}
.industry-card {
	border-radius: 7px;
	box-shadow: 0 5px 3px #00000040;	
}
.industry-img {
	max-width: 60px;
	background-color: #dfe4f3;
	padding: 5px;
	border-radius: 5px;
}

.industry-content h5 {
	font-size: 28px;
	font-weight: 900;
}
.industry-content p {
	color: #585959;
	font-weight: 300;
	font-size: 16px;
}

.industry-card a {
	font-size: 20px;
	text-shadow: 0px 3px 2px rgba(50, 38, 127, 0.5);
	text-decoration: none;
}

/* Team Section */

.team-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	border-radius: 10px;
	background-color: #f5f7fc;
	box-shadow: 0 5px 3px #00000040;
}

.team-card img {
	aspect-ratio: 1/1;
	object-fit: cover;
	width: 265px;
}
.team-card-name {
	font-size: 28px;
	font-weight: 900;
}
.team-card-designation {
	color: #7f94f3;
	font-weight: 300;
	font-size: 18px;
}
.team-card-text {
	color: #585959;
	font-weight: 400;
	font-size: 16px;
}

/* Latest Insights Section */

.insights-section {
	background-color: #f5f7fc;
}
.insight-card {	
	position: relative;
	border-radius: 15px;
	background-color: #32267F;
}
.insight-card-img {
	border-radius: 15px;
	aspect-ratio: 3/2;
	object-fit: cover;
}
.insight-card-cat{
	color: #7f94fe;
	font-size: 16px;
}
.insight-card-title {
	font-size: 28px;
	font-weight: 800;
}
.insight-card-text{
	font-weight: 400;
	font-size: 16px;
}
.insight-card-date{
	font-weight: 400;
	font-size: 16px;
}

/* Call to Action Section */

.cta-bg {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-radius: 2rem;
}
.cta-bg h2 {
	font-weight: 900;
	line-height: 1.4;
}
.cta-bg p {
	font-weight: 300;
	font-size: 18px;
}

@media (max-width: 1399px) {
	.hero-section .hero_main_image{
		max-height: 75vh;
	}
	
	.service-card {
		border-radius: 12px;
	}
	.service-card-img {
		border-radius: 12px 12px 0 0;
	}
	.service-card-body {
		padding: 25px 18px 18px;
	}
	.service-card-title {
		font-size: 24px;
		font-weight: 800;
	}
	.service-card-link {
		padding-top: 12px;
		font-size: 18px;
	}
	
	.industry-content h5 {
		font-size: 24px;
		font-weight: 800;
	}
	
	.team-card img {
		width: 250px;
	}
	.team-card-name {
		font-size: 24px;
		font-weight: 800;
	}
	.team-card-designation {
		font-size: 17px;
	}
	.team-card-text {
		font-size: 16px;
	}
}

@media (max-width: 1260px) {
	.hero-content h1 {
		font-size: 70px;
		line-height: 70px;
	}
	.hero-content .hero-para {
		font-size: 30px;
		line-height: 1.3;
	}
	.hero-btns .adepts-btn {
		font-size: 17px;
		padding: 12px 20px;
	}
	.hero-counter {
		min-width: 175px;
		margin-right: 20px;
		padding: 10px 0;
	}
	
	.testi_shadow {
		padding: 40px 35px 40px;
	}
	
	.service-card {
		border-radius: 11px;
	}
	.service-card-img {
		border-radius: 11px 11px 0 0;
	}
	.service-card-body {
		padding: 20px 15px 15px;
	}
	.service-card-title {
		font-size: 22px;
		font-weight: 800;
	}
	.service-card-text {
		font-size: 16px;
	}
	.service-card-link {
		padding-top: 10px;
		font-size: 17px;
	}
	
	.industry-content h5 {
		font-size: 22px;
		font-weight: 800;
	}
	.industry-content p {
		font-size: 16px;
	}
	
	.team-card img {
		width: 240px;
	}
	.team-card-name {
		font-size: 22px;
		font-weight: 800;
	}
}
@media (max-width: 1120px) {
	.hero-content h1 {
		font-size: 60px;
		line-height: 60px;
	}
	.hero-content .hero-para {
		font-size: 24px;
		line-height: 1.4;
	}
	.hero-btns .adepts-btn {
		font-size: 16px;
		padding: 10px 18px;
	}
	.hero-counter {
		min-width: 160px;
		margin-right: 16px;
		padding: 8px 0;
	}
	.hero-counter .counter-text {
		margin-left: 12px;
	}
}
@media (max-width: 991px) {
	.hero-section .hero-content {
		padding-top: 0;
		min-height: 100vh;
	}
	.hero-content h1 {
		font-size: 70px;
		line-height: 70px;
	}
	.hero-content .hero-para {
		font-size: 30px;
		line-height: 1.3;
	}
	.hero-btns .adepts-btn {
		font-size: 17px;
		padding: 12px 20px;
	}
	
	
	.service-card {
		border-radius: 13px;
	}
	.service-card-img {
		border-radius: 13px 13px 0 0;
	}
	.service-card-body {
		padding: 30px 20px 20px;
	}
	.service-card-title {
		font-size: 28px;
		font-weight: 900;
	}
	.service-card-link {
		padding-top: 16px;
		padding-right: 5px;
		font-size: 18px;
	}
	
	.industry-content h5 {
		font-size: 28px;
		font-weight: 900;
	}
	.industry-content p {
		font-size: 16px;
	}
	
	.team-card img {
		width: 265px;
	}
	.team-card-name {
		font-size: 28px;
		font-weight: 900;
	}
	.team-card-designation {
		font-size: 18px;
	}
	.team-card-text {
		font-size: 16px;
	}
	
	.insight-card-title {
		font-size: 24px;
	}
}
@media (max-width: 767px) {
	
	.service-card {
		border-radius: 11px;
	}
	.service-card-img {
		border-radius: 11px 11px 0 0;
	}
	.service-card-body {
		padding: 20px 15px 15px;
	}
	.service-card-title {
		font-size: 20px;
		font-weight: 800;
	}
	.service-card-text {
		font-size: 15px;
	}
	.service-card-link {
		padding-top: 10px;
		font-size: 16px;
	}
	
	.industry-content h5 {
		font-size: 20px;
		font-weight: 800;
	}
	.industry-content p {
		font-size: 15px;
	}
	
	.team-card img {
		width: 225px;
	}
	.team-card-name {
		font-size: 20px;
		font-weight: 800;
	}
	.team-card-designation {
		font-size: 16px;
	}
	.team-card-text {
		font-size: 15px;
	}
}
@media (max-width: 575px) {
	.hero-content h1 {
		font-size: 50px;
		line-height: 50px;
	}
	.hero-content .hero-para {
		font-size: 22px;
		line-height: 1.5;
	}
	.hero-btns .adepts-btn {
		font-size: 16px;
		padding: 10px 18px;
	}
	.hero-counter {
		min-width: 150px;
		margin-right: 15px;
		padding: 5px 0;
	}
	.hero-counter:last-child {
		min-width: 100px;
	}
	.hero-counter .counter-no {
		font-size: 22px;
		font-weight: 700;
	}
	.hero-counter .counter-text {
		font-size: 15px;
		line-height: 18px;
		margin-left: 12px;
	}
	
	
	.testi_shadow {
		padding: 25px 15px 15px;
	}
	.testi-card .testimonial-img {
		padding: 0px 10px;
	}
	
	
	.service-card {
		border-radius: 13px;
	}
	.service-card-img {
		border-radius: 13px 13px 0 0;
	}
	.service-card-body {
		padding: 30px 20px 20px;
	}
	.service-card-title {
		font-size: 28px;
		font-weight: 900;
	}
	.service-card-link {
		padding-top: 16px;
		padding-right: 5px;
		font-size: 18px;
	}
	
	.industry-content h5 {
		font-size: 28px;
		font-weight: 900;
	}
	.industry-content p {
		font-size: 16px;
	}
	
	.team-card img {
		width: 265px;
	}
	.team-card-name {
		font-size: 28px;
		font-weight: 900;
	}
	.team-card-designation {
		font-size: 18px;
	}
	.team-card-text {
		font-size: 16px;
	}
	
	.cta-bg {
		border-radius: 1rem;
	}	
	.cta-bg p {
		font-size: 17px;
	}
}
@media (max-width: 460px) {
	.hero-content h1 {
		font-size: 44px;
		line-height: 50px;
	}
	.hero-content .hero-para {
		font-size: 20px;
		line-height: 1.4;
	}
	.hero-btns .adepts-btn {
		font-size: 15px;
		padding: 8px 16px;
	}
	.hero-counter {
		flex-direction: column;
		min-width: fit-content;
		margin-right: 0px;
		padding: 5px 25px;
		align-items: start !important;
	}
	.hero-counter:first-child{
		padding: 5px 25px 5px 10px;
	}
	.hero-counter:last-child {
		padding: 5px 10px 5px 25px;
	}
	.hero-counter .counter-text {
		margin-top: 5px;
		margin-left: 0px;
		line-height: 20px;
	}
	
	
	.testi-card .testimonial-img {
		padding: 0px 4px;
		height: 75%;
	}
	
	.service-card {
		border-radius: 11px;
	}
	.service-card-img {
		border-radius: 11px 11px 0 0;
	}
	.service-card-body {
		padding: 20px 15px 15px;
	}
	.service-card-title {
		font-size: 20px;
		font-weight: 800;
	}
	.service-card-text {
		font-size: 15px;
	}
	.service-card-link {
		padding-top: 10px;
		font-size: 16px;
	}
	
	.industry-content h5 {
		font-size: 20px;
		font-weight: 800;
	}
	.industry-content p {
		font-size: 15px;
	}
	
	.team-card img {
		width: 225px;
	}
	.team-card-name {
		font-size: 20px;
		font-weight: 800;
	}
	.team-card-designation {
		font-size: 16px;
	}
	.team-card-text {
		font-size: 15px;
	}
	
	.cta-bg p {
		font-size: 16px;
	}
}
@media (max-width: 350px) {
	.hero-counter {
		padding: 5px 15px;
	}
	.hero-counter:first-child{
		padding: 5px 15px 5px 10px;
	}
	.hero-counter:last-child {
		padding: 5px 10px 5px 15px;
	}
}
@media (max-width: 325px) {
	.hero-content h1 {
		font-size: 36px;
		line-height: 40px;
	}
	.hero-content .hero-para {
		font-size: 18px;
		line-height: 1.3;
	}
}
@media (max-width: 315px) {
	.hero-btns a.btn:first-child{
		margin-bottom: 10px;
	}
}