/* Section Two - Cards (v1) */
.section-two-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 30px;
}
.section-two-card {
    flex: 1 1 0;
    min-width: 170px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px 18px;
    color: var(--main-color);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0px 0px 7px rgb(0 4 69 / 16%);
    font-weight: 500;
}
.section-two-card p {
    margin: 0;
}
.section-two-cards.section-two-cards-v2 {
    margin: 3rem 0;
}
.section-two-cards-v2 p {
    font-size: 1.15rem;
    font-weight: 700;
}
/* Section Two - Cards (v2) - with icon */
.section-two-card-icon {
	margin-bottom: 16px;
}
.section-two-card-icon {
	width: 3.5rem;
    height: 3.5rem;
	margin-right: auto;
	margin-left: auto;
}
.section-two-card-icon img {
	width: 3.5rem;
    height: 3.5rem;
	object-fit: contain;
}
/* Section Two - Columns (v3) - text columns, no card bg */
.section-two-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 30px;
}
.section-two-column {
	flex: 1 1 0;
	min-width: 200px;
	color: var(--main-color);
	text-align: left;
	line-height: 1.6;
}
.section-two-column h3,
.section-two-column h4,
.section-two-column strong {
	font-weight: 700;
	line-height: 1.3;
}

/* Section Two - Product Cards (v4) - image + title, hover reveals description + button */
.section-two-cards-v4 {
	gap: 24px;
	margin-top: 3rem;
}
.section-two-card-v4 {
	flex: 1 1 0;
	min-width: 200px;
	min-height: 29rem;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0px 0px 7px rgb(0 4 69 / 16%);
    border-radius: 0.55rem;
	background:#fff;
	transition: 0.75s ease;	
}
/* Front (default state) */
.section-two-card-v4-front {
	/* background-color: #fff; */
	padding: 24px 20px 0;
	text-align: center;
	transition: opacity 0.3s ease;
}
.section-two-card-v4-front .section-two-card-v4-image img {
	/* max-height: 160px; */
	width: auto;
	object-fit: contain;
	margin: 0 auto 0px;
	display: block;
}
.section-two-card-v4-front .section-two-card-v4-title {
	color: var(--main-color);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	/* letter-spacing: 0.5px; */
}
.section-two-card-v4-front .section-two-card-v4-title p {
	/* display: none; */
}
.section-two-card-v4-front .section-two-card-v4-title h3,
.section-two-card-v4-front .section-two-card-v4-title h4 {
	margin: 0 0 10px;
	/* font-size: 32px; */
	/* font-weight: 600; */
	/* text-transform: uppercase; */
}

/* Hover state */
.section-two-card-v4:hover {
	background-color: #8BD2C2;
	color: fff;
}
.section-two-card-v4-hover {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: ;
	border-radius: 12px;
	padding: 24px 20px 0;
	color: #fff;
	display: flex;
	flex-direction: column;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.section-two-card-v4:hover .section-two-card-v4-hover {
	opacity: 1;
}
.section-two-card-v4-hover-text {
	flex: 1;
}
.section-two-card-v4-hover-text h3,
.section-two-card-v4-hover-text h4 {
	/* font-size: 32px; */
	/* font-weight: 700; */
	margin: 0 0 10px;
	/* color: var(--main-color); */
	/* text-transform: uppercase; */
}
.section-two-card-v4-hover-text p {
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 0 12px;
	color:var(--gray);
}
.section-two-card-v4-btn {
	display: inline-block;
	background: #fff;
	color: var(--main-color);
	padding: 8px 20px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.5px;
	align-self: center;
    margin-bottom: 0.5rem;
}
.section-two-card-v4-hover-image {
	text-align: center;
}

.section-two-card-v4-hover-image img {
	height: 11.5rem;
	width: auto;
	object-fit: contain;
	display: flex;
    margin: 0 auto;
}
.section-two-card-v4 .button:hover, 
.section-two-card-v4 a.button:hover {
  background-color: var(--green);
  color: var(--white);
}
/* Section Two - Icons row (v5) */
.section-two-icons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	/* gap: 32px; */
	gap: 90px;
	margin-top: 4rem;
}
.section-two-icon img {
    height: 80px;
    width: 112px;
    object-fit: contain;
    /* opacity: 0.8; */
}
.section-two-icons.slider-on-mobile.slick-initialized.slick-slider {
	width: calc(100% + 3rem);
	margin-left: -1.5rem;
}
/* Section Two - Product gallery (v6) - title above image, no card bg */
.section-two-products {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	gap: 32px;
	margin-top: 30px;
}
.section-two-product {
	flex: 1 1 0;
	min-width: 120px;
	text-align: center;
}
.section-two-product-title {
	color: var(--main-color);
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
}
.section-two-product-title p {
	margin: 0;
}
.section-two-product-image img {
	max-height: 140px;
	width: auto;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}
.section-three.reverse.about .image {
    padding-left: 0;
}
.section-three.reverse.about .content .text {
    padding: 0 0rem 0 3rem;
}
.section-two-card-v4 .section-two-card-v4-image img {
	transition: max-height 0.75s ease;
    max-height: 23.5rem;
    width: auto;
    object-fit: contain;
    margin: 0 auto 0px;
    display: block;
}
.section-two-card-v4:hover .section-two-card-v4-image img {
    max-height: 10rem;
}


/* Responsive */
@media(min-width: 992px){
	.section-two-card-v4 .section-two-card-v4-text {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.75s ease;
	}
	.section-two-card-v4:hover .section-two-card-v4-text {
		max-height: 16rem;
		transition: max-height 0.75s ease;	
	}
	.section-two-card-v4-image {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
	}
}
@media (max-width: 1500px) {
	.section-two-card-v4-front .section-two-card-v4-image img {
		max-height: 15rem;
	}
}
@media (max-width: 991px) {
	.section-two-cards {
		gap: 12px;
	}
	.section-two-card {
		flex: 1 1 calc(33.333% - 12px);
		min-width: 140px;
	}
	.section-two-card-v4 {
		background-color: #8BD2C2;
		color: fff;
	}
	.section-two-card-v4 .section-two-card-v4-image img {
		max-height: 10rem;
	}
	.section-three.reverse.about .content .text {
		padding: 0 0rem 0 0rem;
		padding-top: 1rem;
	}

}
@media (max-width: 767px) {

	.section-two-cards-v2 p {
		font-size: 0.92rem;
	}
	
	.section-two-card-v4-btn {
		margin-bottom: 0.5rem;
	}

	.section-two-icons {
		gap: 32px;
	}

	.section-two-columns {
		gap: 0px;
	}
}
@media (max-width: 575px) {
	  .section-two-cards {
		gap: 12px;
		justify-content: center;
	  }
	 .section-two-card {
		flex: 1 1 calc(50% - 12px);
		min-width: 45%;
		flex: initial;
		width: 48%;
	  }
	.section-two-column {
		flex: 1 1 100%;
	}
	.section-two-card-v4 {
		flex: 1 1 calc(50% - 24px);
		min-width: 100%;
	}
	.section-two-icon img {
		height: 80px;
		width: 80px;
	}
}
