.reap-industry-page {
	background: #fff;
	color: var(--primary-blue);
}

.industry-hero {
	background:
		linear-gradient(135deg, rgba(13, 45, 69, 0.96), rgba(13, 45, 69, 0.88)),
		linear-gradient(135deg, rgba(255, 105, 97, 0.18), rgba(253, 248, 239, 0.2));
	padding: 95px 0;
	color: #fff;
	position: relative;
	overflow: hidden;
}

.industry-hero::after {
	content: "";
	position: absolute;
	width: 360px;
	height: 360px;
	background: var(--dark-pink);
	opacity: 0.14;
	border-radius: 50%;
	right: -120px;
	top: -100px;
}

.industry-hero-content {
	max-width: 820px;
	position: relative;
	z-index: 2;
}

.industry-eyebrow {
	display: inline-block;
	background: rgba(255, 105, 97, 0.18);
	color: #fff;
	padding: 9px 18px;
	border-radius: 40px;
	font-size: 14px;
	margin-bottom: 20px;
}

.industry-hero h1 {
	font-size: 52px;
	line-height: 1.1;
	font-weight: 700;
	margin-bottom: 22px;
}

.industry-hero p {
	font-size: 19px;
	line-height: 1.7;
	max-width: 760px;
	opacity: 0.95;
}

.industry-hero-actions {
	display: flex;
	gap: 15px;
	margin-top: 32px;
	flex-wrap: wrap;
}

.reap-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 40px;
	font-weight: 600;
	transition: 0.3s ease;
}

.reap-btn-primary {
	background: var(--dark-pink);
	color: #fff;
}

.reap-btn-primary:hover {
	background: #fff;
	color: var(--primary-blue);
}

.reap-btn-outline {
	border: 1px solid rgba(255,255,255,0.45);
	color: #fff;
}

.reap-btn-outline:hover {
	background: #fff;
	color: var(--primary-blue);
}



.industry-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 55px;
	position: relative;
	z-index: 2;
}

.industry-hero-image {
	position: relative;
}

.industry-hero-image img {
	width: 100%;
	height: 460px;
	object-fit: cover;
	border-radius: 28px;
	display: block;
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.industry-hero-image::before {
	content: "";
	position: absolute;
	inset: 18px -18px -18px 18px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 28px;
	z-index: -1;
}

/* Tablet */
@media (max-width: 991px) {
	.industry-hero {
		padding: 75px 0;
	}

	.industry-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.industry-hero-content {
		max-width: 100%;
	}

	.industry-hero h1 {
		font-size: 42px;
	}

	.industry-hero-image img {
		height: 380px;
	}
}

/* Mobile */
@media (max-width: 575px) {
	.industry-hero {
		padding: 60px 0;
	}

	.industry-hero h1 {
		font-size: 34px;
	}

	.industry-hero p {
		font-size: 16px;
	}

	.industry-hero-actions {
		flex-direction: column;
	}

	.reap-btn {
		width: 100%;
	}

	.industry-hero-image img {
		height: 280px;
		border-radius: 20px;
	}

	.industry-hero-image::before {
		display: none;
	}
}



.industry-section {
	padding: 80px 0;
}

.industry-section.light {
	background: var(--background-light);
}

.section-head {
	/* max-width: 780px; */
	margin-bottom: 40px;
}

.section-head span {
	color: var(--dark-pink);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.7px;
}

.section-head h2 {
	font-size: 38px;
	line-height: 1.2;
	color: var(--primary-blue);
	margin: 12px 0 18px;
	font-weight: 700;
}

.section-head p,
.industry-text p {
	color: #496173;
	line-height: 1.8;
	margin-bottom: 18px;
}

.industry-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

/* First row (3 cards) */
.industry-card:nth-child(1) {
	grid-column: 1 / 3;
}
.industry-card:nth-child(2) {
	grid-column: 3 / 5;
}
.industry-card:nth-child(3) {
	grid-column: 5 / 7;
}

/* Second row (centered 2 cards) */
.industry-card:nth-child(4) {
	grid-column: 2 / 4;
}
.industry-card:nth-child(5) {
	grid-column: 4 / 6;
}

.industry-card {
	background: #fff;
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 14px 35px var(--shadow-light);
	border: 1px solid rgba(13, 45, 69, 0.08);
	transition: 0.3s ease;
}

.industry-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px var(--shadow-strong);
}

.industry-card h3 {
	font-size: 23px;
	color: var(--primary-blue);
	margin-bottom: 14px;
	font-weight: 700;
}

.industry-card p {
	color: #526b7c;
	line-height: 1.75;
	margin: 0;
}





.process-wrap {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
}

/* First row: 3 cards */
.process-box:nth-child(1) {
	grid-column: 1 / 3;
}

.process-box:nth-child(2) {
	grid-column: 3 / 5;
}

.process-box:nth-child(3) {
	grid-column: 5 / 7;
}

/* Second row: 2 cards centered */
.process-box:nth-child(4) {
	grid-column: 2 / 4;
}

.process-box:nth-child(5) {
	grid-column: 4 / 6;
}

.process-box {
	width: 100%;
	max-width: none;
	background: #fff;
	border-radius: 22px;
	padding: 26px 22px;
	box-shadow: 0 12px 32px var(--shadow-light);
	border-top: 4px solid var(--dark-pink);
}


.process-number {
	width: 42px;
	height: 42px;
	background: var(--primary-blue);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 18px;
}

.process-box h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: var(--primary-blue);
}

.process-box p {
	font-size: 15px;
	color: #526b7c;
	line-height: 1.65;
}

.roles-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.role-box {
	background: #fff;
	border-radius: 22px;
	padding: 28px;
	box-shadow: 0 12px 32px var(--shadow-light);
}

.role-box h3 {
	font-size: 21px;
	color: var(--primary-blue);
	margin-bottom: 15px;
}

.role-box p {
	color: #526b7c;
	line-height: 1.8;
	margin: 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.stat-box {
	background: var(--primary-blue);
	color: #fff;
	border-radius: 24px;
	padding: 34px;
	position: relative;
	overflow: hidden;
}

.stat-box::after {
	content: "";
	position: absolute;
	width: 90px;
	height: 90px;
	background: var(--dark-pink);
	border-radius: 50%;
	right: -25px;
	bottom: -25px;
	opacity: 0.35;
}

.stat-box h3 {
	font-size: 38px;
	margin-bottom: 12px;
	color: #fff;
}

.stat-box p {
	color: rgba(255,255,255,0.85);
	line-height: 1.7;
	margin: 0;
}




@media screen and (max-width: 992px) {



    	.process-wrap {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-box:nth-child(1),
	.process-box:nth-child(2),
	.process-box:nth-child(3),
	.process-box:nth-child(4),
	.process-box:nth-child(5) {
		grid-column: auto;
	}
}

@media screen and (max-width: 768px) {
	.process-wrap {
		grid-template-columns: 1fr;
	}





       	.industry-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.industry-card:nth-child(1),
	.industry-card:nth-child(2),
	.industry-card:nth-child(3),
	.industry-card:nth-child(4),
	.industry-card:nth-child(5) {
		grid-column: auto;
	}
}

@media screen and (max-width: 768px) {
	.industry-grid {
		grid-template-columns: 1fr;
	}



}






@media screen and (max-width: 576px) {
	.process-wrap {
		grid-template-columns: 1fr;
	}

	/* .process-wrap,
	.roles-grid {
		grid-template-columns: repeat(2, 1fr);
	} */

	.stats-grid,
	.industry-grid {
		grid-template-columns: 1fr;
	}

	.industry-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media screen and (max-width: 768px) {
	.industry-hero {
		padding: 70px 0;
	}

	.industry-hero h1 {
		font-size: 34px;
	}

	.industry-hero p {
		font-size: 17px;
	}

	.section-head h2 {
		font-size: 30px;
	}

	.process-wrap,
	.roles-grid {
		grid-template-columns: 1fr;
	}

	.industry-section {
		padding: 60px 0;
	}

	.industry-cta {
		padding: 35px 25px;
	}

	.industry-cta h2 {
		font-size: 28px;
	}
}





.food-intro-section {
    background: #fff;
    position: relative;
}

.food-intro-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: start;
}

.food-intro-head {
    position: sticky;
    top: 100px;
}

.food-intro-content {
    display: grid;
    gap: 22px;
}

.food-intro-card {
    background: #fff;
    border: 1px solid rgba(13, 45, 69, 0.08);
    border-radius: 24px;
    padding: 30px 32px;
    box-shadow: 0 14px 35px var(--shadow-light);
    position: relative;
}

.food-intro-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 5px;
    height: 48px;
    background: var(--dark-pink);
    border-radius: 0 8px 8px 0;
}

.food-intro-card p,
.food-intro-highlight p {
    color: #526b7c;
    line-height: 1.85;
    margin: 0;
}

.food-intro-highlight {
    background: var(--primary-blue);
    border-radius: 26px;
    padding: 34px;
    box-shadow: 0 18px 42px var(--shadow-strong);
}

.food-intro-highlight p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

@media screen and (max-width: 992px) {
    .food-intro-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .food-intro-head {
        position: static;
    }
}

@media screen and (max-width: 768px) {
    .food-intro-card {
        padding: 26px 24px;
    }

    .food-intro-highlight {
        padding: 28px 24px;
    }
}







/*faq section start*/
.healthcare-faq {
  padding: 110px 0;
  background: var(--background-light);
}

.healthcare-faq__container {
  max-width: 900px;
  margin: 0 auto;
}

.healthcare-faq__title {
  margin: 0 0 40px;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-blue);
}


/* FAQ list */

.healthcare-faq__list {
  display: grid;
  gap: 18px;
}


/* FAQ item */

.healthcare-faq__item {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(13,45,69,0.08);
  box-shadow: 0 14px 40px rgba(13,45,69,0.08);
  padding: 22px 26px;
  transition: box-shadow .25s ease;
}

.healthcare-faq__item:hover {
  box-shadow: 0 18px 48px rgba(13,45,69,0.12);
}


/* question */

.healthcare-faq__question {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}


/* remove default arrow */

.healthcare-faq__question::-webkit-details-marker {
  display: none;
}


/* custom indicator */

.healthcare-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-pink);
  transition: transform .2s ease;
}

.healthcare-faq__item[open] .healthcare-faq__question::after {
  transform: rotate(45deg);
}


/* answer */

.healthcare-faq__answer {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.9;
  color: #425466;
}


/* responsive */

@media (max-width: 991px) {

  .healthcare-faq {
    padding: 85px 0;
  }

  .healthcare-faq__title {
    font-size: 34px;
  }

}

@media (max-width: 767px) {

  .healthcare-faq {
    padding: 65px 0;
  }

  .healthcare-faq__title {
    font-size: 28px;
  }

  .healthcare-faq__question {
    font-size: 18px;
  }

  .healthcare-faq__answer {
    font-size: 16px;
  }

}
/*faq section end*/