/* Sprinzen Agrotech */

/*   ROOT VARIABLES */

:root {
	/* Fonts for the Sprinzen Agrotech   */
	--font-body: "Inter", system-ui, -apple-system, sans-serif;
	--font-heading: "Poppins", sans-serif;
	--font-nav: "Poppins", sans-serif;

	/* BRAND COLORS (Picked it From Logo) */

	--primary-color: #0f4c81;
	--secondary-color: #6bbf2a;
	--background-color: #ffffff;
	--background-soft: #f6f8fa;
	--text-primary: #0f172a;
	/* --text-secondary: #5f6368; */
	--text-secondary: #4B5563;
	--border-color: rgba(0, 0, 0, 0.08);

	/* Effects  */
	--transition: all 0.3s ease;
}

/* Global's*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--background-color);
	color: var(--text-secondary);
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

/*  Global Typography */
h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	color: var(--text-primary);
	margin: 0;
}

h1 {
	font-size: 64px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -1px;
}

h2 {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 700;
}

h3 {
	font-size: 22px;
	font-weight: 600;
}

p {
	font-size: 18px;
	line-height: 1.7;
	margin: 0;
}

/* Link Url's*/
a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-color);
}

/*Layout global */
.section {
	padding: 100px 0;
}

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

.section-alt {
	background: var(--background-soft);
}

/* Button Global Styling */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 12px 26px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 8px;

	border: none;
	cursor: pointer;

	transition: all 0.25s ease;
}

/* Primary  Buttons*/

.btn-primary {
	background: var(--secondary-color);
	color: #fff;
}

.btn-primary:hover {
	background: #5aa822;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(107, 191, 42, 0.25);
}

/* Outline Buttons*/
.btn-outline {
	background: transparent;
	border: 1.5px solid var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: #fff;
	transform: translateY(-2px);
}

/* Soft Button */
.btn-soft {
	background: rgba(107, 191, 42, 0.1);
	color: var(--secondary-color);
}

.btn-soft:hover {
	background: var(--secondary-color);
	color: #fff;
}

.btn:focus-visible {
	outline: 2px solid var(--secondary-color);
	outline-offset: 2px;
}

/* Bug Fix: Bootstrap Button Click - Blue issue  */

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus:active {
	background: var(--secondary-color) !important;
	border: none !important;
	box-shadow: none !important;
}

.btn-primary:hover {
	background: #5aa822 !important;
}

/* Remove all default button states */
.btn,
.btn:focus,
.btn:active,
.btn:focus:active {
	outline: none !important;
	box-shadow: none !important;
}

/*  Page Header  */
.page-header {
	position: relative;
	padding: 120px 0 70px;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
	overflow: hidden;
}

.page-header::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -80px;
	width: 250px;
	height: 250px;
	background: rgba(107, 191, 42, 0.08);
	border-radius: 50%;
}

.page-header::after {
	content: "";
	position: absolute;
	bottom: -60px;
	left: -80px;
	width: 300px;
	height: 300px;
	background: rgba(15, 76, 129, 0.06);
	border-radius: 50%;
}

/* CONTENT */
.page-header-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

/* TITLE */
.page-header h1 {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-primary);
}

/* BREADCRUMB */
.breadcrumb {
	margin-top: 12px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.breadcrumb a {
	color: var(--text-secondary);
	transition: var(--transition);
}

.breadcrumb a:hover {
	color: var(--primary-color);
}

.breadcrumb span {
	color: var(--text-secondary);
}

.breadcrumb .active {
	color: var(--primary-color);
	font-weight: 600;
}

/*  RESPONSIVE */
@media (max-width: 576px) {
	.page-header {
		padding: 100px 0 50px;
	}

	.page-header h1 {
		font-size: 30px;
	}
}

/*  Bug fix page moving left-righ*/

html,
body {
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

.row {
	margin-left: 0;
	margin-right: 0;
}

/*   NAVBAR STRUCTURE*/

.header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid var(--border-color);
	z-index: 999;
	padding: 18px 0;
	transition: var(--transition);
}

/* Scroll Effect */
.header.scrolled {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
}

.header.shrink {
	padding: 10px 0;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
}

.logo-img {
	height: 60px;
	width: auto;
}

/* Naviation desktop */

.nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav-list {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-link {
	font-family: var(--font-nav);
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.3px;
	color: var(--text-primary);
	position: relative;
	transition: var(--transition);
}

.nav-link:hover {
	color: var(--primary-color);
}

.nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 2px;
	background: var(--secondary-color);
	transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link.active {
	color: var(--primary-color);
}

/* Right side */
.nav-phone {
	font-weight: 600;
	font-size: 14px;
	color: var(--primary-color);
	border-bottom: 2px solid var(--secondary-color);
	padding-bottom: 2px;
}

/*  BUTTON*/
.btn {
	display: inline-block;
	padding: 10px 22px;
	font-size: 14px;
	font-weight: 600;
	border-radius: 6px;
	transition: var(--transition);
	text-decoration: none;
}

.btn-primary {
	background: var(--secondary-color);
	color: #fff;
}

.btn-primary:hover {
	background: #5aa822;
	transform: translateY(-2px);
}

/*MOBILE TOGGLE */
.mobile-toggle {
	width: 28px;
	height: 20px;
	border: none;
	background: none;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	margin-right: 5px;
}

/*mobile-toggle*/
.mobile-toggle {
	width: 28px;
	height: 20px;
	position: relative;
	border: none;
	background: none;
	cursor: pointer;
}

.mobile-toggle span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--text-primary);
	transition: 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
	top: 0;
}

.mobile-toggle span:nth-child(2) {
	top: 9px;
}

.mobile-toggle span:nth-child(3) {
	bottom: 0;
}

/* Cross icon*/
.mobile-toggle.active span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
	top: 9px;
	bottom: auto;
	transform: rotate(-45deg);
}


/* Mobile Menu (I have added full Screen ) */
.mobile-menu {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: calc(100vh - 70px);
	background: #fff;
	overflow-y: auto;
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition: 0.35s ease;
}

.mobile-menu.active {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* Menu List */
.mobile-menu ul {
	list-style: none;
	padding: 25px 20px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* Menu Items */
.mobile-menu li {
	border-bottom: 3px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 14px;
	opacity: 0;
	transform: translateY(10px);
}

/* stagger Aimation */
.mobile-menu.active li {
	opacity: 1;
	transform: translateY(0);
	transition: 0.3s ease;
}

.mobile-menu.active li:nth-child(1) {
	transition-delay: 0.05s;
}

.mobile-menu.active li:nth-child(2) {
	transition-delay: 0.1s;
}

.mobile-menu.active li:nth-child(3) {
	transition-delay: 0.15s;
}

.mobile-menu.active li:nth-child(4) {
	transition-delay: 0.2s;
}

.mobile-menu.active li:nth-child(5) {
	transition-delay: 0.25s;
}

/* menu Links */
.mobile-menu a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: bolder;
	color: var(--text-primary);
}

/* Cta for Mobile menu */
.mobile-cta {
	padding: 20px;
	text-align: left;
}

/* .mobile-cta .phone {
  display: block;
  margin-bottom: 12px;
  font-weight: bolder;
  font-size: 18px;
  color: var(--primary-color);
} */

.mobile-cta .btn {
	display: block !important;
	width: 100%;
}

/*Bug Fix Mobile Menu scroll - Body Lock */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}


/*Mobile resposive */

/* Tablet */
@media (max-width: 992px) {

	.nav {
		display: none !important;
	}

	.nav-phone {
		display: none;
	}

	.header .btn {
		display: none;
	}

	.logo-img {
		height: 50px;
	}

}

/* Mobile */
@media (max-width: 576px) {

	.logo-img {
		height: 44px;
	}

	.mobile-menu a {
		font-size: 16px;
	}

	.mobile-menu ul {
		gap: 16px;
	}

}

/*CTA mobile */
.mobile-cta {
	text-align: center;
}

/* PHONE LINK */
.mobile-cta .phone {
	display: inline-block;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 700;
	color: var(--primary-color);
	padding: 8px 14px;
	border-radius: 30px;
	background: rgba(15, 76, 129, 0.08);
	border: 1px solid rgba(15, 76, 129, 0.15);
	transition: 0.3s ease;
}

.mobile-cta .phone:hover {
	background: var(--primary-color);
	color: #fff;
}

.mobile-cta .btn {
	display: block;
	width: 100%;
}

/*Body lock */
body.menu-open {
	overflow: hidden;
}

/*Hero Section (Only 1 Image)*/

.hero {
	position: relative;
	min-height: calc(100vh - 90px);
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 60px 0;
}

/* BACKGROUND IMAGE*/
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	/* subtle depth */
	transform: scale(1.05);
}

/*  OVERLAY */
/* .hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(100deg,
			rgba(15, 76, 129, 0.85) 0%,
			rgba(15, 76, 129, 0.65) 40%,
			rgba(15, 76, 129, 0.35) 70%,
			rgba(15, 76, 129, 0.15) 100%);
} */

/* =========================
   HERO OVERLAY (ENHANCED)
========================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    /* soft dark base for readability */
    linear-gradient(
      100deg,
      rgba(15, 76, 129, 0.88) 0%,
      rgba(15, 76, 129, 0.75) 35%,
      rgba(15, 76, 129, 0.45) 65%,
      rgba(15, 76, 129, 0.18) 100%
    ),

    /* subtle vignette for depth */
    radial-gradient(
      circle at 20% 40%,
      rgba(0, 0, 0, 0.15),
      transparent 60%
    );
}

/*  CONTENT LAYER (FIX) */
.hero .container {
	position: relative;
	z-index: 3;
}

/*  CONTENT*/
.hero-content {
	max-width: 680px;
	color: #fff;
}

/* HEADING */
.hero-content h1 {
	margin-top: 80px;
	font-size: 58px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	letter-spacing: -0.5px;
}

.hero-content h1 span {
	color: var(--secondary-color);
}

/* TEXT */
.hero-content p {
	margin-top: 20px;
	font-size: 22px;
	line-height: 1.5;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	max-width: 560px;
}

/*   BUTTONS */
.hero-buttons {
	margin-top: 32px;
	display: flex;
	gap: 16px;
}

/* PRIMARY */
.hero .btn-primary {
	background: var(--secondary-color);
	color: #fff;
}

.hero .btn-primary:hover {
	background: #5aa822;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(107, 191, 42, 0.25);
}

/* OUTLINE (WHITE) */
.hero .btn-outline {
	border: 1.5px solid #fff;
	color: #fff;
	backdrop-filter: blur(4px);
}

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

.btn {
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.15);
	opacity: 0;
	transition: 0.3s ease;
}

.btn:hover::after {
	opacity: 1;
}

/* Resposive */

/* Tablet */
@media (max-width: 992px) {
	.hero {
		min-height: auto;
		padding: 120px 0 80px;
	}

	.hero-content {
		text-align: center;
		margin: 0 auto;
	}

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

	.hero-buttons {
		justify-content: center;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.hero-content h1 {
		font-size: 32px;
	}

	.hero-content p {
		font-size: 15px;
	}

	.hero-buttons {
		flex-direction: column;
		gap: 12px;
	}

	.hero-buttons .btn {
		width: 100%;
	}
}

/*Footer*/
.footer {
	background: #ffffff;
	padding: 80px 0 30px;
	border-top: 1px solid var(--border-color);
}

/* GRID */
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
	gap: 40px;
}

/* LOGO */
.footer-logo {
	height: 80px;
	margin-bottom: 15px;
}

/* TEXT */
.footer-brand p {
	font-size: 15px;
	line-height: 1.7;
}

/* TITLES */
.footer-col h4 {
	position: relative;
	font-weight: 700;
	margin-bottom: 20px;
}

.footer-col h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 32px;
	height: 3px;
	background: var(--secondary-color);
}

/* LINKS */
.footer-col ul {
	list-style: none;
	padding: 0;
}

.footer-col li {
	margin-bottom: 12px;
}

.footer-col a {
	font-size: 14px;
	color: var(--text-secondary);
	display: inline-block;
	transition: var(--transition);
}

.footer-col a:hover {
	color: var(--primary-color);
	transform: translateX(4px);
}

/* SOCIAL */
.footer-social {
	margin-top: 20px;
	display: flex;
	gap: 30px;
}

.footer-social img {
	width: 30px;
	opacity: 0.7;
	transition: 0.3s;
}

.footer-social img:hover {
	opacity: 1;
	transform: translateY(-2px);
}

/* DIVIDER */
.footer-divider {
	height: 1px;
	background: var(--border-color);
	margin: 40px 0 20px;
}


.footer-seo {
	margin-top: 20px;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	gap: 14px;
	font-size: 13px;
	font-weight: 500;
	color: #111;
}

/* separator */
.footer-seo span {
	position: relative;
	padding-right: 10px;
}

.footer-seo span:not(:last-child)::after {
	content: "•";
	position: absolute;
	right: 0;
	color: #999;
}

.footer-seo span {
	position: relative;
	padding-right: 10px;
}

.footer-seo {
	letter-spacing: 0.2px;
}

/* subtle separator */
.footer-seo span:not(:last-child)::after {
	content: "•";
	position: absolute;
	right: 0;
	color: #999;
}

/*  Divider  */
.footer-divider.thin {
	height: 1px;
	background: var(--border-color);
	margin-top: 20px;
}

/* BOTTOM */
.footer-bottom {
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/* Back to top */
.back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	cursor: pointer;
	opacity: 0;
	transform: translateY(20px);
	transition: 0.3s;
}

.back-to-top.show {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 992px) {
	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 576px) {
	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		text-align: center;
		justify-content: center;
	}
}

/* =========================
   ABOUT SECTION
========================= */

.about {
  background: #fff;
}

/* TAG */
.section-tag {
  display: inline-block;
  margin-bottom: 10px;

  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
}

/* HEADING */
.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.about-content h2 span {
  color: var(--primary-color);
}

/* INTRO */
.about-intro {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* HIGHLIGHTS */
.about-highlights {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.highlight-item h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.highlight-item p {
  font-size: 14px;
  color: var(--text-secondary);
}


/* =========================
   ABOUT IMAGE
========================= */

.about-image {
  position: relative;
}

/* IMAGE */
.about-image img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 12px;

  /* 🔥 subtle premium shadow */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


/* About section -Home page*/

.about-card {
  position: absolute;
  bottom: 20px;
  left: 20px;

  max-width: 380px;
  padding: 20px 22px;

  border-radius: 10px;
  background: #f8fbf9;

  border-left: 5px solid var(--primary-color);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.about-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #b23b32;
  margin-bottom: 8px;
}

/* TAGLINE */
.about-card p:first-of-type {
  margin: 6px 0;

  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.2;

  color: #1aa14a;
}

/* SUB TEXT */
.about-card p:last-of-type {
  margin-top: 6px;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;

  color: #b23b32;
}



/* FLOAT CARD */
/* .about-card {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: #fff;
	padding: 16px 18px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-card h4 {
	font-size: 16px;
	font-weight: 700;
}

.about-card p {
	font-size: 13px;
	color: var(--text-secondary);
} */

/* float Card design changed as per Client requirement*/
/* .about-card {
	position: absolute;
	bottom: 20px;
	left: 20px;
	padding: 18px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, #f3f9f4, #ffffff);
	border-left: 4px solid var(--primary-color);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	max-width: 260px;
}

.about-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 6px;
} */

/* TAGLINE (Grow with Balance) */
/* .about-card p:first-of-type {
	font-size: 15px;
	font-weight: 700;
	color: var(--primary-color);
	margin: 4px 0;
}

.about-card p:last-of-type {
	font-size: 13px;
	color: var(--text-secondary);
	margin: 2px 0;
	line-height: 1.5;
}

.about-cta {
	margin-top: 25px;
}

@media (max-width: 992px) {
	.about-content {
		text-align: center;
	}

	.about-highlights {
		justify-content: center;
	}

	.about-image {
		margin-top: 40px;
	}

	.about-card {
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 576px) {
	.about-content h2 {
		font-size: 30px;
	}

	.about-highlights {
		flex-direction: column;
		gap: 15px;
	}
}
@media (max-width: 576px) {

  .about-card {
    position: static;           
    transform: none;           
    margin: 15px auto 0;        
    max-width: 90%;           
    padding: 14px 16px;         
  }

} */


/* Tablet */
@media (max-width: 992px) {

  .about-content {
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-card {
    left: 50%;
    transform: translateX(-50%);
  }

}


/* Mobile */
@media (max-width: 576px) {

  .about-content h2 {
    font-size: 30px;
  }

  .about-highlights {
    flex-direction: column;
    gap: 15px;
  }

  .about-image {
    margin-top: 25px;
    padding: 0 10px;
  }

  .about-image img {
    border-radius: 10px;
  }

  .about-card {
    position: static;
    transform: none;

    margin: 15px auto 0;
    max-width: 90%;
    padding: 16px;
  }

  .about-card h4 {
    font-size: 16px;
  }

  .about-card p:first-of-type {
    font-size: 20px;
  }

  .about-card p:last-of-type {
    font-size: 13px;
  }

}


.approach {
	background: var(--background-soft);
}

/*  Section Global  */
.section-header {
	position: relative;
	max-width: 750px;
	margin: 0 auto 70px;
	text-align: center;
	padding-top: 10px;
}

.section-tag {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-color);
	padding: 6px 14px;
	border-radius: 20px;
	background: rgba(15, 76, 129, 0.08);
}

.section-header h2 {
	position: relative;
	font-size: 44px;
	font-weight: 700;
	margin-top: 14px;
	display: inline-block;
	z-index: 1;
}

.section-header h2::before {
	content: "Our Approach";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 90px;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.04);
	white-space: nowrap;
	z-index: -1;
}

.section-header p {
	margin-top: 12px;
	font-size: 16px;
	color: var(--text-secondary);
}


.approach-steps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

/* Approach card - Changed as per Client requirement */
.approach-card {
	background: #f8fbf9; 
	padding: 34px;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	transition: 0.35s ease;
	position: relative;
	overflow: hidden;
}

/* subtle top accent line */
.approach-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary-color);
	opacity: 0.8;
}

/* hover effect */
.approach-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
	border-color: rgba(0, 0, 0, 0.08);
}



/* STEP BADGE */
.step-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	color:  #f8fbf9;
	background: var(--primary-color);
	padding: 5px 12px;
	border-radius: 30px;
	margin-bottom: 10px;
}

/* TITLE */
.approach-card h3 {
	font-size: 24px;
	margin-top: 10px;
	font-weight: 700;
}

/* SUBTITLE */
.step-sub {
	font-size: 13px;
	color: var(--secondary-color);
	margin-bottom: 14px;
}

/* TEXT */
.approach-card p {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 10px;
}

/* Nutrients  */
.nutrients {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 15px;
}

.nutrients span {
	font-size: 12px;
	font-weight: 600;
	padding: 6px 10px;
	background: rgba(107, 191, 42, 0.08);
	color: var(--secondary-color);
	border-radius: 6px;
}

/* BENEFITS GRID */
.approach-benefits {
	margin-top: 50px;
	padding-bottom: 30px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* BENEFIT ITEM */
.benefit-item {
	background: linear-gradient(145deg, #f8fbf9, #ffffff);
	border-radius: 12px;
	padding: 16px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;

	/* left accent */
	border-left: 4px solid var(--primary-color);

	/* subtle border */
	border: 3px solid rgba(0, 0, 0, 0.05);

	/* smooth feel */
	transition: 0.35s ease;
	position: relative;
}

/* hover effect */
.benefit-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
	border-left-color: var(--secondary-color);
}

/* subtle inner glow (very light, premium touch) */
.benefit-item::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 12px;
	background: radial-gradient(circle at top left, rgba(0, 128, 0, 0.05), transparent 60%);
	pointer-events: none;
}


/* Tablet */
@media (max-width: 992px) {
	.approach-steps {
		grid-template-columns: 1fr;
	}

	.approach-benefits {
		grid-template-columns: 1fr 1fr;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.section-header h2 {
		font-size: 30px;
	}

	.section-header h2::before {
		font-size: 50px;
	}

	.approach-benefits {
		grid-template-columns: 1fr;
	}
}

/*  CTA Home page   */
.cta {
	padding: 80px 0;
}

/* BOX */
.cta-box {
	text-align: center;
	padding: 60px 40px;
	border-radius: 16px;

	background: linear-gradient(135deg,
			rgba(15, 76, 129, 0.95),
			rgba(107, 191, 42, 0.9));

	color: #fff;
}

.cta-box h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/*Highlight key words (if wrap in span) */
.cta-box h2 span {
	color: #ffffff;
	position: relative;
}

/* TEXT */
.cta-box p {
	margin-top: 15px;
	font-size: 16px;

	color: rgba(255, 255, 255, 0.85);
}

/* BUTTONS */
.cta-buttons {
	margin-top: 28px;
	display: flex;
	justify-content: center;
	gap: 16px;
}

.cta .btn-primary {
	background: #fff;
	color: var(--primary-color);
	font-weight: 600;
}

.cta .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* OUTLINE BUTTON */
.cta .btn-outline {
	border: 1.5px solid rgba(255, 255, 255, 0.9);
	color: #fff;
}

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


@media (max-width: 576px) {
	.cta-box {
		padding: 40px 20px;
	}

	.cta-box h2 {
		font-size: 26px;
	}

	.cta-buttons {
		flex-direction: column;
	}

	.cta-buttons .btn {
		width: 100%;
	}
}

/* About page */

.about-page-content h2,
.about-innovation h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
}

/* second line color */
.about-page-content h2 span,
.about-innovation h2 span {
	color: var(--primary-color);
}

.about-page-content p {
	margin-top: 15px;
	font-size: 16px;
	line-height: 1.7;
}

.about-page-highlight {
	background: var(--background-soft);
	padding: 30px;
	border-radius: 12px;
	border-left: 4px solid var(--secondary-color);
}

.about-page-highlight p {
	font-size: 15px;
	margin-bottom: 12px;
}

/*  Innovation section  */
.about-innovation h2 {
	font-size: 34px;
	font-weight: 700;
	padding-top: 10px;
}

.innovation-intro {
	max-width: 700px;
	margin: 15px auto 40px;
	font-size: 16px;
}

.innovation-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	padding-bottom: 20px;
}

.innovation-item {
	padding: 25px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid var(--border-color);
	transition: 0.3s ease;
}

.innovation-item:hover {
	transform: translateY(-4px);
}

.innovation-item h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

/*  MISSION & VISION */
.mv-box {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	height: 100%;
}

.mv-box h3 {
	font-size: 22px;
	margin-bottom: 15px;
}

.mv-box ul {
	padding-left: 18px;
}

.mv-box li {
	margin-bottom: 10px;
	font-size: 15px;
}


@media (max-width: 992px) {

	.about-page-content h2,
	.about-innovation h2 {
		font-size: 30px;
	}

	.about-page-highlight {
		margin-top: 30px;
	}

	.innovation-grid {
		grid-template-columns: 1fr 1fr;
	}

	.mv-box {
		margin-bottom: 20px;
	}
}

@media (max-width: 576px) {

	.about-page-content h2,
	.about-innovation h2 {
		font-size: 26px;
	}

	.about-page-content p {
		font-size: 15px;
	}

	.about-page-highlight {
		padding: 20px;
	}

	.innovation-grid {
		grid-template-columns: 1fr;
	}

	.innovation-item {
		padding: 20px;
	}

	.mv-box {
		padding: 22px;
	}
}

/* Bug fix for bg text to approach section */
.approach .section-header h2::before {
	content: "Our Approach";
}

.section-header h2::before {
	content: none;
}

/*  Team - Sprinzen  */
.team .section-header {
	text-align: center;
}

.team .section-tag {
	display: block;
	margin: 0 auto 12px;
	width: fit-content;
}

.team .section-header h2 {
	margin-top: 0;
}

.section-tag {
	margin-bottom: 14px;
}

/* Team */
.team {
	background: var(--background-soft);
}

.team-grid {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

/* CARD */
.team-card {
	background: #fff;
	padding: 18px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	text-align: center;
	transition: 0.3s ease;
}

.team-card:hover {
	transform: translateY(-4px);
}

/* IMAGE */
.team-card img {
	width: 100%;
	height: 260px; /*image hight Increased as per clinet requiremnt */
	object-fit: cover;
	border-radius: 10px;
}

/* NAME */
.team-card h3 {
	margin-top: 10px;
	font-size: 15px;
	font-weight: 600;
}

/* ROLE */
.team-card p {
	font-size: 13px;
	color: var(--text-secondary);
}

/*   FIELD STRENGTH*/
.field-strength h2 {
	font-size: 34px;
	font-weight: 700;
}

.field-strength h2 span {
	color: var(--primary-color);
}

.fs-text {
	max-width: 700px;
	margin: 15px auto 40px;
	font-size: 16px;
}

/* STATS */
.fs-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}

.fs-item h3 {
	font-size: 32px;
	color: var(--primary-color);
}

.fs-item p {
	font-size: 14px;
	color: var(--text-secondary);
}


/* Tablet */
@media (max-width: 992px) {
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.field-strength h2 {
		font-size: 30px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.team-card img {
		height: 170px;
	}

	.field-strength h2 {
		font-size: 26px;
	}

	.fs-stats {
		flex-direction: column;
		gap: 25px;
	}
}

/*  Contact Hero */
.contact-hero {
	padding: 100px 0 80px;
	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* CONTENT */
.contact-hero-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

/* HEADING */
.contact-hero h1 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.3;
}

.contact-hero h1 span {
	color: var(--primary-color);
}

/* TEXT */
.contact-hero p {
	margin-top: 15px;
	font-size: 16px;
	color: var(--text-secondary);
}


/* Tablet */
@media (max-width: 992px) {
	.contact-hero h1 {
		font-size: 34px;
	}
}

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

	.contact-hero h1 {
		font-size: 26px;
	}

	.contact-hero p {
		font-size: 15px;
	}

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

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

/* CARD */
.contact-card {
	text-align: center;
	background: #fff;
	padding: 30px 20px;
	border-radius: 14px;
	border: 1px solid var(--border-color);
	transition: 0.3s ease;
}

/* HOVER */
.contact-card:hover {
	transform: translateY(-5px);
}

/* ICON */
.contact-card .icon {
	font-size: 28px;
	margin-bottom: 10px;
}

/* TITLE */
.contact-card h3 {
	font-size: 18px;
	font-weight: 600;
}

/* TEXT */
.contact-card p {
	font-size: 14px;
	margin: 8px 0 12px;
	color: var(--text-secondary);
}

/* LINK */
.contact-card a {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
}

/* LOCATION TEXT */
.contact-card span {
	font-size: 14px;
	color: var(--text-secondary);
}

/* HIGHLIGHT CARD */
.contact-card.highlight {
	border: 1px solid var(--secondary-color);
	background: rgba(107, 191, 42, 0.05);
}

.contact-hero .contact-grid {
	margin-top: 50px;
}

.contact-hero {
	padding: 100px 0 80px;
}

.contact-card {
	padding: 28px 20px;
}

/* Tablet */
@media (max-width: 992px) {
	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 576px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
}

/*  Contact form */

@media (max-width: 992px) {
	.contact-form {
		padding: 70px 0;
	}
}

@media (max-width: 576px) {
	.contact-form {
		padding: 60px 0;
	}
}

.contact-form {
	background: var(--background-soft);
	padding: 80px 0;
}

/* LEFT SIDE */
.form-info h2 {
	font-size: 34px;
	font-weight: 700;
}

.form-info h2 span {
	color: var(--primary-color);
}

.form-info p {
	margin-top: 15px;
	font-size: 16px;
	color: var(--text-secondary);
}

.form-info ul {
	margin-top: 20px;
	padding-left: 0;
	list-style: none;
}

.form-info li {
	margin-bottom: 10px;
	font-size: 15px;
}

/* FORM BOX */
.form-box {
	background: #fff;
	padding: 35px;
	border-radius: 14px;
	border: 1px solid var(--border-color);
}

/* INPUTS */
.form-box input,
.form-box textarea {
	width: 100%;
	padding: 12px 14px;
	margin-bottom: 15px;

	border: 1px solid var(--border-color);
	border-radius: 8px;

	font-size: 14px;
	outline: none;
	transition: 0.3s;
}

/* FOCUS */
.form-box input:focus,
.form-box textarea:focus {
	border-color: var(--primary-color);
}

/* BUTTON */
.form-box button {
	width: 100%;
	padding: 12px;
	font-size: 15px;
}


/* Tablet */
@media (max-width: 992px) {
	.form-info {
		text-align: center;
		margin-bottom: 40px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.form-info h2 {
		font-size: 26px;
	}

	.form-box {
		padding: 25px;
	}
}

.form-alt {
	text-align: center;
	margin-top: 10px;
	font-size: 14px;
	color: var(--text-secondary);
}

.form-alt a {
	color: var(--primary-color);
	font-weight: 600;
}

.form-alt a:hover {
	text-decoration: underline;
}

/*  
   INLINE FIELD ERROR
  */
.form-error {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: #dc2626;

	background: #fef2f2;
	padding: 6px 10px;
	border-left: 3px solid #dc2626;
	border-radius: 6px;
}

/* INPUT ERROR STATE */
input.error,
textarea.error {
	border-color: #dc2626 !important;
}

/*   TOAST CONTAINER*/
.toast-container {
	position: fixed;
	top: calc(70px + 20px);
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (max-width: 576px) {
	.toast-container {
		top: 70px;
	}
}

/*  Toast BG  */
.toast {
	display: flex;
	align-items: center;
	justify-content: space-between;

	min-width: 280px;
	max-width: 340px;

	padding: 12px 14px;
	border-radius: 12px;

	font-size: 14px;
	font-weight: 500;

	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

/* SHOW */
.toast.show {
	opacity: 1;
	transform: translateY(0);
}

/* CONTENT */
.toast-content {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* ICON */
.toast-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
}

/* CLOSE BUTTON */
.toast-close {
	cursor: pointer;
	font-size: 16px;
	opacity: 0.6;
}

.toast-close:hover {
	opacity: 1;
}


/* SUCCESS */
.toast.success {
	background: #ecfdf5;
	border: 1px solid #86efac;
	color: #166534;
}

.toast.success .toast-icon {
	background: #22c55e;
	color: #fff;
}

/* INFO */
.toast.info {
	background: #eff6ff;
	border: 1px solid #93c5fd;
	color: #1e3a8a;
}

.toast.info .toast-icon {
	background: #3b82f6;
	color: #fff;
}

/* WARNING */
.toast.warning {
	background: #fffbeb;
	border: 1px solid #fcd34d;
	color: #92400e;
}

.toast.warning .toast-icon {
	background: #f59e0b;
	color: #fff;
}

/* ERROR */
.toast.error {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	color: #991b1b;
}

.toast.error .toast-icon {
	background: #ef4444;
	color: #fff;
}


/*  TOAST PROGRESS BAR */
.toast-progress {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background: rgba(0, 0, 0, 0.1);
	overflow: hidden;
	border-radius: 0 0 12px 12px;
}

.toast-progress span {
	display: block;
	height: 100%;
	width: 100%;
	background: currentColor;
	transform-origin: left;
	animation: progress linear forwards;
}

/* dynamic duration */
@keyframes progress {
	from {
		transform: scaleX(1);
	}

	to {
		transform: scaleX(0);
	}
}

/* Mobile  SWIPE FEEDBACK*/
.toast.swiping {
	transition: none;
	opacity: 0.8;
}

/* MAP SECTION*/

.map-section .section-header h2 {
	color: var(--text-primary);
}

.map-section .section-header h2 span {
	color: var(--primary-color);
}

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

.map-inner {
	max-width: 1100px;
	margin: 40px auto 0;
	padding: 0 20px;
}

/* MAP BOX */
.map-container {
	width: 100%;
	height: 400px;

	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border-color);

	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* IFRAME */
.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}


/* Tablet */
@media (max-width: 992px) {
	.map-container {
		height: 350px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.map-inner {
		padding: 0 15px;
	}

	.map-container {
		height: 280px;
		border-radius: 12px;
	}
}

.map-inner {
	max-width: 1100px;
}

/*  FAQ */


/* Target only FAQ section */
.faq .section-header {
  text-align: center;
  position: relative;
}

/* MOVE TAG TO TOP */
.faq .section-header .section-tag {
  display: block;
  margin: 0 auto 12px;
  width: fit-content;

  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);

  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(15, 76, 129, 0.08);
}

.faq .section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.2;
}

.faq .section-header h2::before {
  content: none !important;
}

.faq .section-header p {
  margin-top: 12px;
  font-size: 16px;
  color: var(--text-secondary);
}


@media (max-width: 576px) {
  .faq .section-header h2 {
    font-size: 28px;
  }
}

.faq {
  background: var(--background-soft);
}

.faq-wrapper {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 20px;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
}

/* ICON */
.faq-question span {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  transition: 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 15px;
}

/* ACTIVE */
.faq-item.active {
  border-color: var(--secondary-color);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

@media (max-width: 576px) {
  .faq-question h3 {
    font-size: 15px;
  }
}


.final-cta {
	padding: 80px 0;
}

.final-cta .cta-box {
	text-align: center;
	padding: 60px 40px;
	border-radius: 16px;

	background: linear-gradient(135deg,
			rgba(15, 76, 129, 0.95),
			rgba(107, 191, 42, 0.9));

	color: #fff;
}

.final-cta h2 {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.95);
}

.final-cta h2 span {
	color: #ffffff;
}

.final-cta p {
	margin-top: 15px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
	margin-top: 25px;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.final-cta .btn-primary {
	background: #fff;
	color: var(--primary-color);
}

.final-cta .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

.final-cta .btn-outline {
	border: 1.5px solid #fff;
	color: #fff;
}

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


/* Tablet */
@media (max-width: 992px) {
	.final-cta h2 {
		font-size: 30px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.final-cta {
		padding: 60px 0;
	}

	.final-cta .cta-box {
		padding: 40px 20px;
	}

	.cta-actions {
		flex-direction: column;
	}

	.cta-actions .btn {
		width: 100%;
	}
}

/*Services Split design*/

/* .services .section-header {
	text-align: center;
}

.services .section-tag {
	display: block;
	margin: 0 auto 14px;
	width: fit-content;
}

.services .section-header h2 {
	margin-top: 0;
}

.service-split {
	padding: 80px 0;
}

.service-split.reverse .row {
	flex-direction: row-reverse;
} */

/* IMAGE */
/* .service-split img {
	width: 100%;
	border-radius: 16px;
	object-fit: cover;
}

/* CONTENT */
.service-content {
	padding: 20px 40px;
}

/* NUMBER */
.service-content span {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	opacity: 0.7;
}

/* TITLE */
.service-content h3 {
	margin-top: 10px;
	font-size: 28px;
	font-weight: 700;
}

*/
/* TEXT */
/* .service-content p {
	margin-top: 10px;
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.7;
}

.service-split img {
	transition: 0.4s ease;
}

.service-split:hover img {
	transform: scale(1.03);
} */

/* Tablet */
/* @media (max-width: 992px) {
	.service-content {
		padding: 20px 10px;
	}
} */

/* Mobile */
/* @media (max-width: 576px) {
	.service-split {
		padding: 60px 0;
	}

	.service-split .row {
		flex-direction: column !important;
	}

	.service-content {
		padding: 15px 0;
	}

	.service-content h3 {
		font-size: 22px;
	}
} */

/* Serices New design Updated based on clint requirmnet  */

.services .section-header {
	text-align: center;
}

.services .section-tag {
	display: block;
	margin: 0 auto 14px;
	width: fit-content;
}

.services .section-header h2 {
	margin-top: 0;
}

.service-split {
	padding: 80px 0;
}

.service-split.reverse .row {
	flex-direction: row-reverse;
}

/* IMAGE */
.service-split img {
	width: 100%;
	border-radius: 16px;
	object-fit: cover;
	transition: 0.4s ease;
}

.service-split:hover img {
	transform: scale(1.03);
}

/*  CONTENT CARD*/

.service-content {
	padding: 30px 35px;
	background: #f9fbff;
	border-radius: 12px;
	border-left: 4px solid var(--primary-color);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
	transition: 0.3s ease;
}

.service-split:hover .service-content {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* NUMBER */
.service-content span {
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	opacity: 0.7;
}

/* TITLE */
.service-content h3 {
	margin-top: 12px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	position: relative;
	padding-bottom: 10px;
}

.service-content h3::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background: var(--primary-color);
	margin-top: 8px;
	border-radius: 2px;
}

/* TEXT */
.service-content p {
	margin-top: 12px;
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* BULLET HIGHLIGHTS*/

.service-content ul {
	margin-top: 15px;
	padding-left: 0;
	list-style: none;
}

.service-content ul li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	font-size: 15px;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* CUSTOM BULLET ICON */
.service-content ul li::before {
	content: "✔";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--primary-color);
	font-size: 14px;
	font-weight: bold;
}

/*RESPONSIVE */

@media (max-width: 992px) {
	.service-content {
		padding: 25px 20px;
	}
}

@media (max-width: 576px) {

	.service-split img {
		margin-bottom: 20px;
	}

	.service-content {
		margin-top: 0;
	}

	.service-split {
		padding-bottom: 10px;
	}

}


/* Proucts Grid design  */

.products .section-header {
	text-align: center;
}

.products .section-tag {
	display: block;
	margin: 0 auto 14px;
	width: fit-content;
}

/* GRID */
.products-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* 
   CARD
  */
.product-card {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	border: 1px solid var(--border-color);
	text-align: center;
	transition: 0.3s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Image*/
.product-img {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
}

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

/*  TITLE*/
.product-card h3 {
	margin-top: 15px;
	font-size: 18px;
	font-weight: 600;
}

/* Benift  POINTS*/
.product-points {
	margin-top: 12px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	text-align: left;
}

.product-points span {
	font-size: 13px;
	color: var(--text-secondary);
}


.product-actions {
	margin-top: 18px;
	display: flex;
	align-items: center;
}

/* CALL BUTTON */
.call-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.call-btn img {
	width: 30px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
	flex: 1;
	margin-left: 10px;
	padding: 10px;
	border-radius: 8px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;

	border: 1.5px solid var(--secondary-color);
	color: var(--secondary-color);

	font-weight: 600;
	transition: 0.3s ease;
}

.whatsapp-btn img {
	width: 25px;
}

.whatsapp-btn:hover {
	background: var(--secondary-color);
	color: #fff;
}

.product-card {
	display: flex;
	flex-direction: column;
}

.product-actions {
	margin-top: auto;
}

/* Tablet */
@media (max-width: 992px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 576px) {
	.products-grid {
		grid-template-columns: 1fr;
	}

	.product-img {
		border-radius: 10px;
	}
}

/*  Policy Pages  */
.policy {
	padding: 80px 0;
	background: var(--background-soft);
}

/* WRAP */
.policy-wrap {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	padding: 50px;
	border-radius: 14px;
	border: 1px solid var(--border-color);
}

/* TITLE */
.policy-wrap h1 {
	font-size: 34px;
	font-weight: 700;
	text-align: center;
}

.last-updated {
	text-align: center;
	font-size: 13px;
	color: var(--text-secondary);
	margin-top: 8px;
}

.policy-content {
	margin-top: 30px;
}

.policy-content h2 {
	font-size: 18px;
	margin-top: 25px;
	font-weight: 600;
}

.policy-content p {
	margin-top: 8px;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text-secondary);
}


/* Tablet */
@media (max-width: 992px) {
	.policy-wrap {
		padding: 40px;
	}
}

/* Mobile */
@media (max-width: 576px) {
	.policy {
		padding: 60px 0;
	}

	.policy-wrap {
		padding: 25px;
	}

	.policy-wrap h1 {
		font-size: 26px;
	}
}

/* Error Page  */
.error-404 {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;

	background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);

	text-align: center;
}

/* WRAP */
.error-wrap {
	max-width: 500px;
	margin: 0 auto;
}

.error-wrap h1 {
	font-size: 120px;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
}

/* TITLE */
.error-wrap h2 {
	margin-top: 10px;
	font-size: 26px;
	font-weight: 600;
}

/* TEXT */
.error-wrap p {
	margin-top: 10px;
	font-size: 15px;
	color: var(--text-secondary);
}

/* BUTTONS */
.error-actions {
	margin-top: 25px;
	display: flex;
	justify-content: center;
	gap: 12px;
}


/* Mobile */
@media (max-width: 576px) {
	.error-wrap h1 {
		font-size: 80px;
	}

	.error-wrap h2 {
		font-size: 20px;
	}

	.error-actions {
		flex-direction: column;
	}

	.error-actions .btn {
		width: 100%;
	}
}


/* Floating what's app */
.whatsapp-float {
	position: fixed;
	left: 20px;
	bottom: 30px;
	z-index: 999;

	display: flex;
	align-items: center;
	gap: 10px;
}

/* icon what's app */
.whatsapp-icon {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	background: "";
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	animation: pulse 2s infinite;
}

.whatsapp-icon img {
	width: 36px;
}

/* floatig text Bubble  */
.whatsapp-text {
	background: #fff;
	color: #111;
	font-size: 13px;
	padding: 8px 14px;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-10px);
	transition: 0.3s ease;
}

/* SHOW ON HOVER */
.whatsapp-float:hover .whatsapp-text {
	opacity: 1;
	transform: translateX(0);
}

/* Iocn animation  */


@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}


@media (max-width: 576px) {

	.whatsapp-float {
		left: 15px;
		bottom: 20px;
	}

	.whatsapp-icon {
		width: 50px;
		height: 50px;
	}

	.whatsapp-text {
		font-size: 12px;
		padding: 6px 10px;
	}

}

.whatsapp-text {
	animation: showOnce 4s ease 1;
}

@keyframes showOnce {
	0% {
		opacity: 0;
		transform: translateX(-10px);
	}

	20% {
		opacity: 1;
		transform: translateX(0);
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}