/* Deferred, below-the-fold styles for homepage */

/* Stats section */
#stats-section{
	background-color: #0C1A30;
	padding: 60px 20px;
}
#stats-section > div{
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin: 0 auto;
	max-width:1250px ;
}
.stats-section-top-text{
	font-size: 16px;
	color: #FFF;
	margin: 0;
	text-align: center;
	font-variant: all-petite-caps;
	font-weight: 300;
	font-family: Verdana;
	letter-spacing: 1px;
}
.stats-section-title{
	color: #FFF;
	text-align: center;
	font-size: 27px;
	font-style: normal;
	font-weight: 700;
	margin: 0;
}
.stats-cards{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px;
}
.stat-card{
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
	justify-content: center;
}
.stat-card-counter{
	color: #FFF;
	text-align: center;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 62px;
	margin: 0;
}
.stat-card-title{
	color: #FFF;
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	margin: 0;
}
.stat-card-description{
	color: #BCBCBC;
	text-align: center;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	max-width: 250px;
	text-align: center;
}

/* Case study section */
#case-study-section{
	background-color: #0C1A30;
	padding: 60px 20px;
}
#case-study-section > div{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 60px;
	margin: 0 auto;
	max-width:1300px ;
}
.case-study-section-top-text{
	font-size: 16px;
	color: #FFF;
	margin: 0;
	text-align: center;
	font-variant: all-petite-caps;
	font-weight: 300;
	font-family: Verdana;
	letter-spacing: 1px;
}
.case-study-section-title{
	color: #FFF;
	font-size: 27px;
	font-style: normal;
	font-weight: 700;
	text-align: center;
	margin: 0;
}
.case-study-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.case-study-card {
	text-decoration: none;
  background: #FFF;
  box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  max-width: 370px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.case-study-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
.case-study-content {
  padding: 22px 32px 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  height: 100%;
}
.case-study-content > .case-study-upper-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-study-card-category {
	color: #0047AB;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px; 
	margin: 0;
}
.case-study-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-study-card-title > h2 {
	color: #131313;
	font-size: 20px;
	font-weight: 600;
	margin: 0;
}
.case-study-card-title img {
  width: 20px;
  height: 20px;
}
.case-study-card-description {
	color: #363636;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	margin: 0;
}
.case-study-card-labels {
	margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.case-study-card-labels p {
	box-shadow: 7px 4px 15px 0px rgba(0, 0, 0, 0.10);
	border-radius: 16px;
	padding: 2px 10px;
	background: #FFF;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin: 0;
}
.case-study-card-labels .label-1 { color: #6941C6; }
.case-study-card-labels .label-2 { color: #363F72; }
.case-study-card-labels .label-3 { color: #C11574; }
.case-study-view-more{
	text-decoration: none;
	cursor: pointer;
	padding: 15px 20px;
	border-radius: 10px;
	background: #1E427C;
	color: #FFF;
	font-size: 19px;
	font-weight: 600;
	text-align: center;
}

/* Small-screen tweaks */
@media (max-width: 780px) {
	#case-study-section{
		padding: 40px 20px;
	}
	#case-study-section > div{
		gap: 40px;
	}
	.case-study-card:hover {
		transform: translateY(0);
		box-shadow: none;
	}
	.case-study-content {
		padding: 14px 22px 28px 22px;
		gap: 12px;
	}
	.case-study-view-more{
		padding: 13px 16px;
		font-size: 16px;
	}
	#stats-section{
		padding: 40px 20px;
	}
	#stats-section > div{
		gap: 40px;
	}
	.stats-section-title{
		font-size: 28px;
	}
	.stats-cards{
		gap: 40px;
	}
}








