:root {
	/* 1. Colors */
	--color-primary-green: #62A010;
	/* Main action/accent color (like buttons, links) */
	--color-primary-blue: #164CA0;
	/* Secondary accent color (like stats box, quotes) */
	--color-text-dark: #000000;
	/* Main dark text color */
	--color-text-secondary: #222222;
	/* Slightly softer dark text */
	--color-text-light: #ffffff;
	/* Light text color */
	--color-background-light: #f4ffe5;
	/* Light background for process/testimonial */
	--color-background-blue-light: #eaf4ff;
	/* Light blue background for testimonial bubble */
	--color-border-light: #e8e7e7;
	/* Light border color */

	/* 2. Fonts */
	--font-primary: "Roboto", sans-serif;
	/* Body and general text */
	--font-heading-main: "Lato", sans-serif;
	/* H1 font */
	--font-heading-secondary: "Poppins", sans-serif;
	/* H2-H5, navbar, hero subtitle */

	/* 3. Typography Weights */
	--font-weight-light: 300;
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semi-bold: 600;
	--font-weight-bold: 700;
	--font-weight-extra-bold: 800;

	/* 4. Spacing & Radius */
	--spacing-xs: 5px;
	--spacing-sm: 10px;
	--spacing-md: 15px;
	--spacing-lg: 20px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 40px;
	--radius-pill: 50px;


  /* Font Size Variables for Mobile */
    --fs-banner: 34px;
    --fs-page-title: 30px;
    --fs-h2: 26px;
    --fs-h3: 24px;
    --fs-card-h3: 20px;
    --fs-h5: 18px;
    --fs-body: 16px;
    --fs-small: 14px;

}

/* Base Styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
}

h1 {
	font-family: var(--font-heading-main);
	font-weight: var(--font-weight-bold);
}

h2,
h3,
h4,
h5 {
	font-family: var(--font-heading-main);
	font-weight: var(--font-weight-bold) !important;
}

.section-title {
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	color: var(--color-text-dark);
}

a {

	color: var(--color-primary-green);
	text-decoration: none;
}

p {
	font-size: 1rem;
	font-family: var(--font-heading-secondary);
	font-weight: var(--font-weight-light);
}
::selection {
  background-color: var(--color-primary-green);
  color:var(--color-text-light);
}


/* ------------navbar header css */

.header {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	padding: 1rem 0;
	margin: 0 auto;
	z-index: 999;
	border: none;
	outline: none;
	background: #fff;
	-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06)
}

.header .wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header-item-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%
}

.header-item-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 82%;
	flex: 0 0 82%;
  justify-content: right;
}

.header-item-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.header-item-right .menu-icon {
	font-size: 1.35rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 1rem;
	margin-left: 1rem;
	border: none;
	outline: none;
	color: #121212;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.header .menu>ul>li {
	display: inline-block;
	line-height: 3.125rem;
	margin-left: 1.5rem
}

.header .menu>ul>li>a {
	position: relative;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	border: none;
	outline: none;
	color: var(--color-text-dark);
	text-transform: capitalize;
	text-rendering: optimizeLegibility;
	-webkit-transition: color .3s ease-in-out;
	-o-transition: color .3s ease-in-out;
	transition: color .3s ease-in-out;
  text-decoration:none;
}
.header .menu>ul>li>a>i{
  margin-left: 8px;
  position: relative;
  top: 2px;
}

.header .menu>ul>li .menu-subs {
	position: absolute;
	width: 100%;
	height: auto;
	/*margin-top: 1.75rem;*/
	padding: 0;
	border: none;
	outline: none;
	z-index: 500;
	opacity: 0;
	visibility: hidden;
	border-radius: 0;
	border-top: 0px solid #e91e63;
	background: #fafafa;
	-webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
	-webkit-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
  margin-left:-2%;
}
.header .menu>ul>li .menu-subs>ul{
  padding-left:0;
}
.header .menu>ul>li .menu-subs>ul>li {
	line-height: 1;
  list-style-type: none;
  padding: 0.6rem 10px;
}

.header .menu>ul>li .menu-subs>ul>li>a {
	/*display: inline-block;*/
  display: block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25;
	padding: .30rem 1rem;
	border: none;
	outline: none;
	color: #121212;
	text-transform: capitalize;
  text-decoration:none;
	text-rendering: optimizeLegibility;
	-webkit-transition: all .1s ease-in-out;
	-o-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
}

.header .menu>ul>li .menu-column-1 {
	min-width: 10rem;
	max-width: 10rem
}

.header .menu>ul>li .menu-subs>ul>li>a:hover {
	color: var(--color-text-dark);
}

.header-item-right a:hover,
.header .menu>ul>li:hover>a {
	color:var(--color-text-dark);
}
.header .menu>ul>li .menu-subs>ul>li:hover{
  background:#548513;
}
.header .menu>ul>li .menu-subs>ul>li:hover a{
  color:var(--color-text-light);
}

/* -----------end----------- */

/* --- Navbar --- */


/* -------------top new css */

/* Navbar */

.navbar-brand img {
	height: 45px;
}

/* Search icon & box */

/* .main-sec {
	background: url('../images/Licomat-Home-Page-banner.png') bottom/cover no-repeat;
} */

/* Hero Section */
/* .hero-section {
    position: relative;
    text-align: center;
    color: #333;
    padding: 224px 20px 180px;
    overflow: hidden;
  
} */

/* --- Banner Section --- */
.banner-section {
	position: relative;
	overflow: visible;
	display: flex;
	/* text-align: center; */
	align-items: center;
	justify-content: flex-start;
	/* padding: 160px 0 100px; */
	/* margin-top: 87px; */
	min-height: 100vh;
}

.banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25); 
    z-index: 2;
}


.banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.cert-card img {
  transition: transform 0.4s ease;
  cursor: pointer;
}
.cert-card:hover img {
  transform: scale(1.08);
}


/* --- Text styling --- */


.banner-highlight {
	color: var(--color-text-light);
	text-shadow: 0px 4px 4px rgba(106, 152, 45, 0.25);
	font-weight: 700;
}

.banner-subtitle {
	margin-top: 20px;
	font-size: 18px;
	max-width: 600px;
	color: #ddd;
}


.banner-content {
	position: relative;
	z-index: 3;
	max-width: 560px;
	/* margin-left: 50px; */
}

.banner-title {
	font-size: 56px;
     line-height: 1.2;
	margin-top: 20px;
	font-weight:400;
    color: var(--color-text-light);
	text-shadow: 0px 4px 4px rgba(106, 152, 45, 0.25);

}

.banner-btn {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.banner-subtitle {

	font-family: var(--font-heading-secondary);
	font-size: 1rem;
	color: var(--color-text-light);
	/* Kept specific dark color */
	margin-top: var(--spacing-md);
	margin-bottom: 35px;
}

.btn:focus {
	box-shadow: unset !important;
}


.cta-btn {
	background: var(--color-primary-green) !important;
	border-radius: var(--radius-pill) !important;
	padding: var(--spacing-sm) 14px var(--spacing-sm) 0px !important;
}

.cta-btn span {
	background-color: var(--color-text-light);
	border-radius: var(--radius-pill);
	padding: var(--spacing-sm) 14px;
	font-weight: var(--font-weight-semi-bold);
	color: var(--color-text-dark);
  margin-left: 1px;
}

.cta-btn i,
.cta-btn1 i {
	margin-left: 5px;
	/* padding-right: 20px; */
	color: var(--color-text-light);
	rotate: 45deg;
}
.cta-btn i,
.cta-btn1 i{
  transition: all 0.4s ease;
}
.cta-btn:hover i,
.cta-btn1:hover i{
  rotate: 90deg;
}

.highlight {

	display: inline-block;
	position: relative;
	background-image: url('../images/title-bg.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	
}

/* .why-it-matters .highlight {

	display: inline-block;
	position: relative;
	background-image: url('../images/dark-bg.svg');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: contain;
	

} */

.icon-box img {
	height: 40px;
}

.quote-box {
	background: #f8f9fa;
	/* Kept specific light grey color */
	border-left: 4px solid #4CAF50;
	/* Kept specific green color */
	padding: var(--spacing-md);
	border-radius: 6px;
}

.quote-box img {

	margin-right: 15px;
}


.our-journey {
	position: relative;
  border-top-left-radius: 100px;
	/* margin-top: 20px; */
	/* padding: 20px 0; */
	/* overflow: hidden; */
}

/* .owl-carousel .item:hover {
  transform: scale(1.03);
} */

/* Custom arrows */


.image-col {
	position: relative;
}

.badge-top {
	position: absolute;
	top: -8px;
	clip-path: polygon(0 0, 100% 0%, 100% 73%, 53% 100%, 0 71%);
	right: 27%;
	gap: var(--radius-md);
	background-color: var(--color-text-light);
	color: var(--color-text-dark);
	text-align: center;
	padding: 14px 12px 50px;
	border-radius: var(--radius-sm);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	border-top: 6px solid var(--color-primary-blue);
	box-shadow: 5px 4px 4px 0px #164CA026;
	z-index: 99;
}

.stars {
	margin-top: -37px;
	position: absolute;
}

/* SVG styling */

.topbox {
    padding: 20px 50px !important;
	border: 1px solid var(--color-border-light);
	border-left: none;
	border-right: none;
}

.topbox .icon-box{
	margin-bottom: 15px;
}

.center-boxx {
	border-left: 1px solid var(--color-border-light);
	border-right: 1px solid var(--color-border-light);
}

.text-box h5 {
	font-size: 20px;
	font-weight: var(--font-weight-bold);
	color: var(--color-text-dark);
}

.text-box p {
	font-family: var(--font-heading-secondary);
	color: var(--color-text-secondary);
	font-size: 14px;
	margin-bottom: 0px;
	margin-top: 18px;

}

.about-left p {
    color: var(--color-text-secondary);
    font-size: 16px;
    margin-bottom: 0px;
    line-height: 2;
}



/* .about-left{
	display: flex;
} */

.about-lefttext h2 {
	font-size: 44px;
	line-height: 60px;
	font-weight: var(--font-weight-bold);
  margin-top: 10px;
}

.about-lefttext p {
	font-size: 16px;
	line-height: 35px;
}

.Repurposing-top-txt .recycling-text{
  text-align: center;
}


.testimonial-card {
	max-width: 100%;
	position: relative;
	text-align: left;
}

/* .testimonial-bubble::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 40px;
	width: 0;
	height: 0;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;

	border-top: 15px solid var(--color-background-blue-light);
} */

.quote-box {
    position: relative;
    /* max-width: 700px; */
	display: flex;
    margin: 40px auto;
    padding: 30px 25px 18px; 
    border: 1px dashed #d9d9d9;
    background: #fff;
    text-align: left;
    gap: 20px;
	/* animation: softBounceLR 3s ease-in-out infinite; */
  
}

.quote-box .authors {
max-width: 300px;
}

.quote-box p{
	  font-size: 14px;
    line-height: 1.8;
	   color: #222;
	   font-style: italic;
	   margin-bottom: 0px;
}

/* bottom arrow inner (white) */
.quote-box::after {
    content: "";
    position: absolute;
    bottom: -14px;          
    left: 55px;             
    border-width: 14px 14px 0 14px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    z-index: 2;
}

/* bottom arrow border */
.quote-box::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 54px;
    border-width: 15px 15px 0 15px;
    border-style: solid;
    border-color: #d9d9d9 transparent transparent transparent;
    z-index: 1;
}



/* @keyframes softBounceLR {
    0%,100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
} */

.quote-icon {
    animation: softPulse 2.5s ease-in-out infinite;
}

@keyframes softPulse {
    0%,100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.10);
        opacity: 1;
    }
}



.testimonial-content h6{
	margin-top: 15px;
}

.quote-icon {
	position: absolute;
	top: -14px;
	right: 40px;
	background: #62A010;
	color: var(--color-text-light);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 20px;
	z-index: 99;
}

.mission-rw {
	justify-content: center;
	align-items: center;
}

.mission-sec {
	background: #F9F9F9;
	/* background-image: url("../images/vision-bg.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center; */
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-light);
	padding: 80px 20px;
	

}




.vission-icon {
	/* width: 80px; */
	/* height: 80px; */
	/* margin-top: -33px; */
	/* position: absolute; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: var(--spacing-sm); */
	/* left: 42%; */
}

.vission-icon img {
    padding: var(--spacing-sm);
    height: 64px;
    background: #fff;
    border-radius: 50px;
    width: 80px;
    height: 80px;
    margin-top: -60px;
    /* border: 1px solid #f1f1f1; */
    border-top: 1px solid rgba(157, 157, 158, 0.2);
    /* border-left: 1px solid #f1f1f1; */
    /* border-right: 1px solid #f1f1f1; */
    border-bottom: none;
}
.vission {

	position: relative;
	text-align: center;
	padding: 20px 30px;
	background: white;
    border-radius: 20px;
    border: 1px solid rgba(157, 157, 158, 0.2);

box-shadow: linear-gradient(137.61deg, #9D9D9E 18.82%, rgba(255, 255, 255, 0) 89.68%);


	height: 100%;
	min-height: 224px;
}

.vission p {
	font-size: 14px;
	font-family: var(--font-heading-secondary);
	color: var(--color-text-dark);
}


.vission h3 {
	margin-top: 12px;
	color: var(--color-text-dark);
}

.impact-sec {
    position: relative;
    /* overflow: hidden; */
    color: var(--color-text-light);
}


/* .impact-sec::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url("../images/bg-fany.svg") no-repeat right top;
    background-size: cover;
    animation: floatBg 4s ease-in-out infinite;
    z-index: -1;
} */

@keyframes floatBg {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}




.impact-rw {
	padding: 50px 0px;
	align-items: center;
}

.impact-rw p {
	color: var(--color-text-secondary);
	line-height: 32px;

}

.custom-card {
	width: 100%;
	background: var(--color-text-light);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

/* .custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
} */

/* Top Image */
.custom-card .card-img {
	width: 100%;
	object-fit: cover;
	border-top-left-radius: var(--radius-lg);
	border-top-right-radius: var(--radius-lg);
}

/* Card Content */
.custom-card .impact-body {
	
	background-image: url(../images/impact-card-bg.svg);
	background-repeat: no-repeat;
	background-position: right top;
	padding: var(--spacing-lg);
	color: var(--color-text-dark);
	animation: cardBounceLR 5s ease-in-out infinite;

}

.impact-cards{
	background-color: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	background-image: url(../images/impact-card-bg.svg);
	background-repeat: no-repeat;
	background-position: right top;
	padding: var(--spacing-lg);
	padding-left: 8px;
	color: var(--color-text-dark);
	animation: cardBounceLR 5s ease-in-out infinite;
	margin-top: 20px !important;
	border-radius: 30px;
}

@keyframes cardBounceLR {
    0%   { background-position: right top; }
    50%  { background-position: calc(100% - 15px) top; }
    100% { background-position: right top; }
}



.impact-body h3 {
	font-size: 24px;
	font-weight: var(--font-weight-bold);
}

.impact-body p {
	color: var(--color-text-secondary);
	line-height: 27px;

}

/* Common card styles */

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

/* Center image (circle) */

/* Positioning */

.project {
	position: relative;
	background-image: url("../images/zero-bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	/* height: 100vh; */
	color: var(--color-text-light);
	padding: 30px 60px;
	/* border-radius: 40px; */
	overflow: hidden;
	animation: powerZoom 8s ease-in-out infinite;
}

.proj-left-img img{
    border-top-right-radius: 112px;
}


/* .project::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	black overlay with 50% opacity
	z-index: 1;
} */

/* ensure content appears above overlay */
.project>* {
	position: relative;
	z-index: 2;
}

.project h3 {
	font-size: 60px;
	font-weight: var(--font-weight-bold);
	padding-bottom: 30px;
	text-align: center;
	color: var(--color-text-dark);
}

.pragraph-ul {
	background-image: url(../images/zero-right.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	text-align: left !important;
	padding: 16px 35px 53px 50px;


}

.pragraph-ul .cta-btn1{
	border: 1px solid #62A010;
	padding-top: 10px !important;
}

.impact-cards ul {
	padding-left: 18px;
}

.impact-cards .section-title{
font-size: 28px;
margin-bottom: 15px;
}

.custom-card1 img{
	border-radius: 20px;
}

.impact-cards p{
	color: var(--color-text-secondary);
}

.impact-cards ul li{
	font-family: var(--font-heading-secondary);
	font-weight: var(--font-weight-light);
	font-size: 1rem;
color: var(--color-text-secondary);
}

.cta-btn1 {
    background: var(--color-text-light) !important;
    border-radius: var(--radius-pill) !important;
    padding: 10px 14px 9px 0px !important;
    margin-top: var(--spacing-sm);
    border: 1px solid #62A010 !important;
}

.contact-breaker .cta-btn1{
	margin-top: 0px;
}

.contact-breaker p{
	margin-bottom: 0px;
}

.cta-btn1 span {
	background-color: var(--color-primary-green);
	border-radius: var(--radius-pill);
	padding: var(--spacing-sm) 14px;
	font-weight: var(--font-weight-semi-bold);
	color: var(--color-text-light);
	margin-left: 2px;
}

.cta-btn1 i {
	margin-left: 5px;

	color: var(--color-primary-green);
	rotate: 45deg;
}

.pragraph-ul ul li {
	list-style-type: none;
	display: flex;
	align-items: center;
	gap: var(--spacing-lg);
	color: #000;
	margin-top: var(--spacing-lg);
}
.pragraph-ul ul li img{
	width:33px;
}

.pragraph-ul ul {
	padding: 0px;
}

/* Facility Section */
.facility-section {
	background:
		linear-gradient(rgba(22, 76, 160, 0.9), rgba(22, 76, 160, 0.9)),
		url('../images/wave-shape-overlay-1.svg') center/cover no-repeat;
	color: var(--color-text-light);
	position: relative;
	padding: 10px 0 20px 0;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	 animation: bgFloat 6s ease-in-out infinite;
}


@keyframes bgFloat {
    0% { background-position: center top; }
    50% { background-position: center 20px; }
    100% { background-position: center top; }
}


/* Headings and text */

.facility-text p {
	line-height: 1.6;
	margin-bottom: 0px;
}

/* Custom overlapping card */

.impact-cards .custom-card {
	height: 100%;
}

.custom-card h3 {
	font-size: 24px;
	color: var(--color-text-dark);
	font-weight: var(--font-weight-semi-bold);

	margin-bottom: 3px;
}

/* Responsive adjustments */


.cert-card {
	background-color: var(--color-text-light);
	border: 0.5px solid #D9D9D9;
	box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: var(--radius-lg);
	padding: 20px 8px;
	/* height: 100%; */
	display: flex;
	align-items: center;
	justify-content: center;

}

.ftr-devider {
	background: linear-gradient(90deg, var(--color-primary-green) 0%, rgba(116, 167, 48, 0) 100%);
	height: 1.5px;
	display: flex;
	width: 131px;
	margin-top: var(--radius-sm);
	justify-content: start;
	/* align-items: center; */
	/* margin: auto; */
	margin-bottom: 10px;
}

/* Common animation for all arrow icons */
.badge-top {
	animation: floatArrow 3s ease-in-out infinite;
}

/* Floating / moving keyframes */
@keyframes floatArrow {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

	50% {
		transform: translateY(-10px);
		/* move upward 10px */
		opacity: 0.9;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}


.certifications-rw {
	margin-top: 20px !important;
}

.videos-cl iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 20px;
  border: none;
}

.certifications-rw h6 {
	font-size: 22px;
	font-weight: var(--font-weight-bold);
}

.certifications-rw img {
    height: 160px;
    object-fit: contain;
}

.heading-text {
	margin-top: 70px;
	text-align: center;
}

.power-sec {
    background: url("../images/Power-future.jpg") no-repeat;
    color: var(--color-text-light);
    padding: 30px 10px;
    background-size: 105% auto; 
    animation: powerZoom 10s ease-in-out infinite;
}

@keyframes powerZoom {
    0%   { background-size: 105% auto; }
    50%  { background-size: 110% auto; }
    100% { background-size: 105% auto; }
}


.power-right-cta a{
	border: 1px solid #FFFFFF;
}

.power-rw {
	align-items: center;
}

.power-text h2{
	margin-bottom: 20px;

}

/* .footer-sec{
    background-color: #000000;
} */

.footer-sec {
	position: relative;
	background: url("../images/footer-bg.png") #242424;
	background-position: bottom, right;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 32px 0 0;
	 animation: footerZoom 12s ease-in-out infinite;
}

@keyframes footerZoom {
    0%   { background-size: 108% auto; }
    50%  { background-size: 112% auto; }
    100% { background-size: 108% auto; }
}


.ftr-btm-cl-1{
	font-size: 14px;
	color: #ffffff;
}

.ftr-logo {
	margin-bottom: 46px;
}

.ftr-logo img {
	height: 80px;
}

.ftr-cl-4 a:hover{
	color: var(--color-primary-green) !important;
}

.ftr-btm-cl-3 a:hover{
	color: var(--color-primary-green) !important;
}

.footer-sec h4 {
	font-size: 20px;
	color: var(--color-text-light);
	
}

.reserved-rw{
	border-top: 1px solid #373535;
}

.ftr a {
  color: #fff !important;
  text-decoration: none;
  font-size: 14px;
}

.ftr-cl-4 p{
font-size: 14px;
}

.ftr-cl-4 a{
	color: #ffffff;
}

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

.social-link {
  color: #fff;
  font-size: 18px;
  margin: 0 8px;
}

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


.footer-sec ul {
	padding: 0px;
}

.footer-sec ul li {
	list-style-type: none;
	color: var(--color-text-light);
}

.footer-sec ul li a {
	font-family: var(--font-heading-secondary);
	text-decoration: none;
	color: var(--color-text-light);
	font-size: 14px;
	line-height: 30px;

}

.footer-sec ul li a:hover {
	color: var(--color-primary-green) !important;
}


.bottom-to-top a {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 2%;
	bottom: 10%;
	background: var(--color-primary-green) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	border-radius: 50%;
	box-shadow: 0px 4px 4px 0px #00000033;
	z-index: 999;

}

.bottom-to-top a:hover {
	background-color: #164ca0cc !important;
	color: #ffffff;
}

.mails{
	font-weight: 600;
	color: #1E293B;
}

.info-box a{
	text-decoration: none;
	font-weight: 600;
	color: #1E293B;
}

.social-icons {
	display: flex;
	gap: 15px;
	/* justify-content: center; */
	align-items: center;
	margin-top: 20px;
}

.social-link {
	display: inline-flex;
	text-decoration: none;
	border-radius: 50%;
	color: #fff;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	transition: all 0.3s ease;
}

.social-link:hover {
	color: #fff;
	transform: translateY(-4px);
}


/* -------------inner-page css----------- */

.inner-banner {
	position: relative;
  top:85px;
	height: 400px;
	align-items: center;
	display: flex;
	/* background-size: cover;
	background-position: center; */
	/* padding: 150px 0 80px; */
	/*margin-top: 85px;*/
	
}

.inner-banner .overlay {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
	opacity: 1;
    visibility: visible;
}

.inner-banner .container {
	position: relative;
	z-index: 2;
}

.page-title {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 10px;
}

.page-title span {
	font-weight: 900;
}

.breadcrumb {
	background: transparent;
	margin-bottom: 0;
}

.breadcrumb-item a {
	color: #fff;
	text-decoration: none;
}
.breadcrumb-item a:hover {
	color: var(--color-primary-green);
}

.breadcrumb-item.active {
	color: #ffffff !important;
}

.about-top-sec {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    
}
.about-top-sec, .recycling-rows1, .Repurposing-top-txt, .ligrid-top, .press-releases-section, .find-us-section, .career-section {margin-top: 90px;}
.blog-pt-120{padding-top: 120px;}

/* Animated Background Layer */
.about-top-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/about-us-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;

    animation: bgMove 8s ease-in-out infinite alternate;
}

.timeline::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 3px;
    height: 60px;   
    background: #62A010;
    transform: translateX(-50%);
    top: 10%;
    z-index: 1;
}

/* Animation */
@keyframes bgMove {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}

.about-img-large1 {

    border-radius: 20px;
	z-index: 1;
	padding: 10px;
	
}

.about-right-text{
	padding-left: 40px !important;
}

.about-right-text h3 {
	display: flex;
	align-items: baseline;
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 15px;
}

.about-right-text p {
	color: #333;
	line-height: 35px;
	font-size: 16px;
	margin-bottom: 18px;
	font-family: var(--font-heading-secondary);
}

.about-right-text ul {
	padding-left: 20px;
}

.about-right-text ul li {
	font-family: var(--font-heading-secondary);
	color: #6B9B0A;
	list-style-type: disc;
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 20px;
}

.abt-battery {
	height: 25px;
	margin-right: 10px;
}

.timeline-row {
	/* width: 100%;
    display: flex; */
	justify-content: center;
	margin-top: 15px !important;
}

/* .timeline-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
  } */

.abt-mission-rw {
	justify-content: center;
	/* align-items: center; */
}

.about-mission-sec {
	background-image: url("../images/cargrass.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-dark);
	    padding: 8px 20px 60px;
}


.abt-vission {
	padding: 30px;
	text-align: center;
	border-radius: var(--radius-lg);
	position: relative;
	height: 100%;

}

.abt-vission-icon {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;

	background: linear-gradient(102.16deg, rgba(255, 255, 255, 0.4) -14.32%, rgba(255, 255, 255, 0) 109.66%);
	border: 1px solid transparent;
	border-image-source:
		radial-gradient(24.21% 39.21% at 16.36% 0%, rgba(255, 255, 255, 0.81) 0%, rgba(255, 255, 255, 0.19) 100%),
		radial-gradient(21.19% 40.1% at 116.39% 0%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
	border-image-slice: 1;
	backdrop-filter: blur(80px);
	-webkit-backdrop-filter: blur(80px);
	padding: var(--spacing-sm);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	margin-bottom: 20px;
}

.abt-vission-icon img {
	height: 42px;
}


/* --------contact us css------- */

.contact-card .cta-btn1{
	  margin-bottom: 15px;
}

.connect-team h6 {
    
    margin-bottom: 6px !important;
}

.find-us-section{
  background:#ffffff;
}

.contact-card{
  background:#fff;
  padding:12px 20px;
  border: 1px solid #00000014;
  border-radius:8px;
  transition:0.3s;
 height:auto;             
  display:flex;              
  flex-direction:column;
}

.contact-card:hover{
  transform:translateY(-5px);
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.contact-card h6{
  font-size:16px;
  margin-bottom:15px;
}

.contact-card p{
  font-size:14px;
  color:#555;
line-height:1.6;
  flex-grow:1; 
}

.view-map{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:500;
  color:#2d5bff;
  text-decoration:none;
  margin-top:auto; 
}

.view-map span{
  transition:0.3s;
}

.view-map:hover span{
  transform:translateX(5px);
}

.image-wrapper{
  border-radius:20px;
  overflow:hidden;
}

.image-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
}


/* ========== Layout ========== */
.partner-section{
  background:#fff;
}

/* Left Side */
.partner-section .icon-box{
  width:48px;
  height:48px;
  background:#5ba516;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  font-size:18px;
}

.social-icons a{
  width:45px;
  height:45px;
  border:1px solid #94A3B8;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-right:10px;
  color:#777;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:#5ba516;
  color:#fff;
  border-color:#5ba516;
}

/* Right Form Card */
.form-card{
  background:#fff;
  padding:40px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.partner-section  .form-card label{
  font-size:16px;
  font-weight:500;
  margin-bottom:6px;
  display:block;
}

.partner-section .form-control{
  height:45px;
  border-radius:8px;
  background:#F8FAFC !important;
  border:none;
  font-size:16px;
  border: 1px solid #F8FAFC;
  appearance: auto;
}

.partner-section .form-control:focus
{
	box-shadow: unset !important;
}

.partner-section select{
 color: #6c757d !important;
}

textarea.form-control{
  height:auto !important;
}

.submit-btn{
  background:#5ba516;
  border:none;
  padding:12px 40px;
  border-radius:30px;
  color:#fff;
  font-weight:600;
  letter-spacing:1px;
  transition:0.3s;
}

.submit-btn:hover{
  background:#4a8c12;
}

.g-mapss iframe{
	width: 100%;
	height: 400px;
}

.mb-55{
	margin-bottom: 40px;
}

.contact-breaker {
	display: flex;
	align-items: center;
	padding: 50px;
	background-color: rgba(255, 255, 255, 0.9);
	background-image: url('../images/breaker.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

}

.contact-breaker p {
	color: #62A010;
	font-family: var(--font-heading-secondary);
	font-size: 18px;
	font-weight: 600;
}

/* ========== ligrid sec ========== */

/* SVG Positioning */

/* Blue Info Box */

/* .ligrid-box::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left:0px;
    width: 80px;
    height: 14px;
    background-color: #184a9c;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
} */

.product-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.product-carousel .owl-dot span {
  background: #ccc;
}

.product-carousel .owl-dot.active span {
  background: #62A010;
}

.product-carousel .owl-dots {
  display: block !important;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: block;
  margin: 0 4px;
  border-radius: 50%;
}




.form-control:focus {

	border-color: inherit;
	outline: none !important;
	box-shadow: none !important;
}

/* .owl-stage {
  padding-left: 80px !important;
  padding-right: 80px !important;
} */

/* Card Stack Effect */

/* Background SVGs */

/* .section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
} */


.ligrid-contact-box{
  margin-top: 30px;
}

/* --------------- */


/* Technology Page Start */


.repurpose-sec{
background: linear-gradient(180deg, #FFFFFF 0%, #F8FFEF 100%);

padding:0px 0 40px;
margin-top: 20px;
}

.repurpose-title{
font-size: 2rem;
}

.repurpose-card{
background:#F5FFE7;
padding:30px;
border-radius:6px;
position:relative;
height:100%;
transition:0.3s;
}

.repurpose-card::after{
content:"";
position:absolute;
bottom:0;
left:0;
width:100%;
height:3px;
background:#62A010;
}

.repurpose-card:hover{
transform:translateY(-6px);
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.repurpose-icon{
width:40px;
height:40px;
background:#62A010;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:6px;
margin-bottom:15px;
font-size:16px;
}

.repurpose-card h5{
font-weight:600;
margin-bottom:10px;
font-family: var(--font-heading-secondary);
font-size: 18px;
}

.repurpose-card p{
font-size:14px;
color:#6B776F;
line-height:1.6;
}


.repurpose-process-sec{
background:#f1f5e8;
padding:40px 0;
}

.repurpose-process-title{
font-weight:var(--font-weight-extra-bold);
font-size: 2rem;
margin-bottom:50px;
font-family: var(--font-heading-main);
}

.repurpose-process-timeline{
position:relative;
max-width:850px;
margin:auto;
}

/* .repurpose-process-timeline::before{
content:"";
position:absolute;
left:22px;
top:0;
width:2px;
height:100%;
background:#6aa82d;
} */

/* step */

.repurpose-process-step{
display:flex;
align-items:flex-start;
margin-bottom:35px;
position:relative;
}

/* icon */

.repurpose-process-icon{
width:45px;
height:45px;
background:#62A010;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:16px;
margin-right:20px;
position:relative;
z-index:2;
}

/* content */

.repurpose-process-content{
background: #FFFFFF;
padding:20px 25px;
flex:1;
border-right: 2px solid #62A010;
display: flex;
    align-items: center;
    gap: 20px;
}

/* text 70% */
.repurpose-process-content .process-content-text{
    flex: 0 0 75%;
    max-width: 75%;
}

/* image 30% */
.repurpose-process-content .process-img-right{
    flex: 0 0 25%;
    max-width: 25%;
}

.repurpose-process-content .process-img-right img{
   width: 100%;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
   cursor: pointer;
}

.repurpose-process-content .process-img-right:hover img{
   transform: scale(1.02);
   box-shadow: 0 10px 25px rgba(98,160,16,0.5);
}

.repurpose-step-label{
font-size:12px;
color:#62A010;
font-weight:700;
letter-spacing:1px;
display:block;
margin-bottom:5px;
}

.repurpose-process-content h5{
font-family: var(--font-heading-secondary);
margin-bottom:6px;
font-weight:var(--font-weight-semi-bold);
font-size: 22px;
}

.repurpose-process-content p{
font-size:16px;
color:#6B7280;
line-height:1.6;
}


.repurposing-ligrid-sec{
padding:50px 0;
position:relative;
overflow:hidden;
z-index:1;
}

/* animated background layer */

.repurposing-ligrid-sec::before{
content:"";
position:absolute;
inset:0;
background:url("../images/repurposing-bg-bottom.png") center/cover no-repeat;
z-index:-1;
animation:repurposingBgMove 5s ease-in-out infinite alternate;
}

/* animation */

@keyframes repurposingBgMove{

0%{
transform:translateY(-20px) scale(1.05);
}

100%{
transform:translateY(20px) scale(1.05);
}

}
/* content */

.repurposing-ligrid-content h2{
	font-size: 1.5rem;
}

.repurposing-ligrid-content p{
color:#6B7280;
font-size:16px;
line-height:1.6;
margin-bottom:18px;
}

/* button */

.repurposing-ligrid-btn span{

color:#6aa82d ;
font-weight:500;
text-decoration:none;
transition:0.3s;
}


/* image */

.repurposing-ligrid-image{
display:inline-block;
/* padding:10px;
border:2px dashed #6aa82d;
border-top-left-radius:47px;
border-bottom-right-radius:47px; */
}

/* .repurposing-ligrid-image img{
border-top-left-radius:47px;
border-bottom-right-radius:47px;
} */


/* Technology Page End */

/* -------recycling page--------- */

.recycling-rows1{
  padding: 40px 0;
}

.recycling-text {
	/* text-align: center; */
	padding: 30px 0;
}

.recycling-text h2 {
	font-family: var(--font-heading-main);
	font-size: 2rem;
	/* letter-spacing: 2%; */
	color: #000000;
	font-weight:var(--font-weight-extra-bold);
	margin-bottom: 10px;
}

.recycling-text p {
  font-size: 16px;
  color: #7A8180;
  line-height: 1.8;
}

.recycling-process-sec {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}


.recycling-process-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/recycling-bg.svg") no-repeat center;
  background-size: cover;
  opacity: 1;   
  z-index: -1;

  animation: waveMove 10s ease-in-out infinite alternate;
}

/* Wave Animation */
@keyframes waveMove {
    0% {
        background-position: center 0px;
    }
    50% {
        background-position: center 10px; 
    }
    100% {
        background-position: center 0px;
    }
}

.recycling-process-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.recycling-process-header p {
  color: #7A8180;
  max-width: 650px;
  margin: auto;
}

/* Card */
.recycling-process-card {
  position: relative;
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  border: 1px solid #00000014;
 
  height: 100%;
  overflow: hidden;
  min-height: 230px;
  transition: 0.3s;
}

.recycling-process-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.recycling-process-icon {
  width: 42px;
  height: 42px;
  background: #62A010;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Big Step Number */
.recycling-process-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 70px;
  font-weight: 700;
  color: rgba(0,0,0,0.22);
}

/* Heading */
.recycling-process-card h4 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
  color: #0F1A17;
 font-size: 1.3rem;
}

/* Paragraph */
.recycling-process-card p {
  color: #7A8180;
  font-size: 14px;
  line-height: 1.6;
}

.recycling-process-card ul{
	padding-left: 8px;
}

.recycling-process-card ul li {
  color: #7A8180;
  font-size: 14px;
  list-style-type: none;
  line-height: 1.6;
}

.recycling-image-sec h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.process-flow img {
  border-radius: 12px;
  transition: 0.3s ease;
}

.process-flow img:hover {
  transform: scale(1.02);
}

.process-flow{
	justify-content: center;
	text-align: center;
	padding: 20px 0 40px;
}

.process-flow h2{
margin-bottom: 20px;
}

.why-matters-sec {
  position: relative;
 background: #F8FFEF;
  overflow: hidden;
  z-index: 1;
}

/* Animated Background */
.why-matters-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/why-battery-bg.svg") no-repeat center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
  animation: waveMove 14s ease-in-out infinite alternate;
}

.apart {
  position: relative;
 background: #ffffff;
  overflow: hidden;
  z-index: 1;
}

/* Animated Background */
.apart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/why-battery-bg.svg") no-repeat center;
  background-size: cover;
  opacity: 0.6;
  z-index: -1;
  animation: waveMove 14s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% { transform: translateX(-40px); }
  100% { transform: translateX(40px); }
}

/* Header */
.why-matters-header h2 {
  font-weight: var(--font-weight-extra-bold);
  margin-bottom: 15px;
}

.why-matters-header p {
    margin: auto;
    color: #7A8180;
    max-width: 770px;
}



/* Card */
.why-card {
background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 97.12%);

  padding: 20px;
  height: 100%;
  border-radius: 8px;
  position: relative;
  transition: 0.3s;
 border-top: 3px solid #62A010;

}

.why-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.why-icon {
  width: 42px;
  height: 42px;
  background: #62A010;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 18px;
}

/* Text */
.why-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  color: #7A8180;
  font-size: 14px;
  line-height: 1.6;
}


.new-process {
    position: relative;
    padding: 50px 20px 90px;
    text-align: center;
    overflow: hidden;
}


.new-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/process-wave-shape-overlay 2.svg") center / cover no-repeat;
    animation: waveFloat 5s ease-in-out infinite;
    z-index: -1;
}


@keyframes waveFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

.process-wrap {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* CIRCLE */
.circle {
  width: 70px;
  height: 70px;
  box-shadow: 4px 4px 4px 0px #0000000D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #62A010;
  background: #fff;
}

/* CONTENT */
.content {
  max-width: 230px;
  color: #000;
}

.content p{
  font-size: 13px;
}

.content h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

/* ZIG-ZAG */
.step:nth-child(odd) .circle {
  margin-bottom: 50px;
}

.step:nth-child(even) .circle {
  margin-top: 50px;
}

/* ===== DASH LINE ===== */
.dash-line-wrap {
    position: absolute;
    width: 294px;
    height: 20px;
    right: -183px;
    top: 92px;
}

.step:nth-child(odd) .dash-line-wrap {
    right: -175px;
    top: 124px;
}
/* dot */
.dash-line-wrap::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #62A010;
  border-radius: 50%;
}

/* dashed line */
.dash-line-wrap::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 8px;
  width: 220px;
  border-top: 2px dashed #62A010;
  
}

/* rotation */
.step:nth-child(odd) .dash-line-wrap {
  transform: rotate(30deg);
}

.step:nth-child(even) .dash-line-wrap {
  transform: rotate(-30deg);
}

/* hide line for last step */

.custom-divider {
  position: relative;
  width: 4px;
  height: 170px;
  background: #ffffff; 
 
}

/* white arrow / cut */
.custom-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #ffffff;
}

.power-right-img {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* effective sec */

/* Owl Carousel adjustments */


/*  Repurposing Page Start */


/*  Repurposing Page End  */

/* .cookie-policy-sec .section-subtitle {
  color: #6c757d;
  font-size: 1rem;
} */




.new-process {
  position: relative;
  overflow: hidden;
}

.process-steps .step {
  opacity: 0;
   transform: none !important;
}

/* ================= COMMON ================= */
.journey-section  .container {
  width: 90%;
  margin: auto;
}

.journey-section {
  /* background: #f2f2f2; */
  padding: 20px 0;
  position: relative;

}


.timeline {
  position: relative;
}

.timeline-fill {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 3px;
  height: 0;
  background: #6aa82d;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  opacity: 0;
  transform: translateY(60px);
}

/* ================= TIMELINE ================= */



/* 
.timeline {
  position: relative;
  margin-top: 60px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 3px;
    height: 81%;
    background: #ccc;
    transform: translateX(-50%);
    top: 10%;
}

.timeline-row {
  position: relative;
  margin-bottom: 15px;
}

.timeline-content {
  width: 45%;
  padding: 15px;
  position: relative;
}

.timeline-content.left {
  margin-right: auto;
  text-align: left;
}

.timeline-content.right {
  margin-left: auto;
  text-align: left;
} */

/* .timeline-row::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 14px;
  height: 14px;
  background: #7dbb42;
  border-radius: 50%;
  box-shadow: 0px 0px 0px 2px #E7FFC8;
  border: 2px solid #F3FFE4;
  transform: translateX(-50%);
} */

/* .timeline-2row::after{
	  top: 34px;
	  background: #ddd;
	  box-shadow: 0px 0px 0px 2px #E7FFC8;

}

.timeline-3row::after{
	  top: 50px;
	  background: #ddd;
	  box-shadow: 0px 0px 0px 2px #E7FFC8;

} */

/* Highlight box */
.highlight-box {
  /* border: 2px solid #2e7df6; */
  /* padding: 15px; */
  font-size: 14px;
}

/* ================= SECOND SECTION ================= */
.journey-second {
  background: #ffffff;
  padding: 30px 0 40px;
}

.second-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.second-text {
  width: 50%;
     line-height: 30px;
    font-size: 16px;
}

.second-image {
  width: 50%;
}

.second-image img {
  width: 100%;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}


/* ----------LIGRID-------------- */

.ligrid-top{
    background-color: #F8FFEF;
    background-image: url("../images/ligrid/ligrid-top-bg.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto;
	animation: bgFloat 6s ease-in-out infinite alternate;
}

/* animation */
@keyframes bgFloat{
    0%{
        background-position: right top;
    }
    100%{
        background-position: right 20px top 20px;
    }
}

.ligrid-top p{
	line-height: 1.8;
}

.privacy-policy-sec ul li{
	font-family: var(--font-heading-secondary);
	font-weight: 300;
	line-height: 32px;
}

.cookie-content ul li{
	font-family: var(--font-heading-secondary);
	font-weight: 300;
	line-height: 32px;
}

.our-product-cards{
padding:40px 0;
background:#fff;
}

.section-head{
max-width:800px;
margin:auto;

}

.section-head h2{
font-weight:var(--font-weight-extra-bold) ;
margin-bottom:15px;
font-size: 2rem;
}

.section-head p{
color:#7A8180;
font-size:16px;
line-height: 1.8;
}



/* CARD */

.product-card{
background:#fff;
border-radius:6px;
padding: 10px;
overflow:hidden;
border:1px solid #e5e5e5;
transition:0.3s;
position: relative;
height: 100%;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE */

.product-img{overflow:hidden;}

.product-img img{
/* width:100%;
height:auto;
object-fit:cover; */
transition:0.4s;
}

.product-card:hover .product-img img{
transform:scale(1.08);
}

/* BODY */

.product-body{
padding:20px 4px; 
}

.product-body h4{
font-size:20px;
font-family: var(--font-heading-secondary);
font-weight:600;
margin-bottom:10px;
}

.product-desc{
font-size:14px;
color:#7A8180;
margin-bottom:24px;
font-weight: 500;
}

/* BULLET LIST */
.product-list{
list-style:none;
padding:0;
margin:0 0 40px;
}

.product-list li{
font-size:14px;
margin-bottom:14px;
font-weight: 500;
position:relative;
padding-left:24px;
color:#7A8180;
}

.header .menu > ul > li > a{
    transition: 0.3s;
}

.header .menu > ul > li > a:hover,
.header .menu > ul > li > a.active{
    color: var(--color-primary-green);
}

.menu-item-has-children:has(.active) > a{
    color: var(--color-primary-green);
}



/* icon items */

.product-list li.icon-item{
display:flex;
align-items:center;
gap:10px;
padding-left:0;
margin-bottom: 26px;
}

/* remove dot when svg icon present */

.product-list li.icon-item:before{
display:none;
}

/* svg icon */

.product-list li.icon-item img{
	width: 100%;
	height: auto;
/* width:28px;
background:#62A010;
height:28px;
padding: 6px ;
border-radius: 50px; */
}

.item-img-1 {
    width: 40px;
    background: #62A010;
    height: 40px;
    padding: 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* green icon bullet */

.product-list li:before{
content:"";
position:absolute;
left:0;
top:5px;
width:6px;
height:6px;
background:#9AA2A0;
border-radius:50%;
margin-left: 10px;
}

/* KNOW MORE */

.product-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    position: absolute;
    bottom: 10px;
}

.product-link i{
font-size:22px;
rotate: 45deg;
}

.product-link:hover{
color:#62A010;
}

/* --------li cards--------- */

.li-grid-cards{
padding:40px 0 60px;
background:#F8FFEF;
}

.li-grid-title{
font-weight:var(--font-weight-extra-bold) ;
font-family: var(--font-heading-secondary);
margin-bottom:10px;
}

/* card */

.li-grid-card{
background:#F5FFE7;
padding:30px 25px;
border-radius:1px;
border-bottom:2px solid #62A010;
box-shadow: 0px 4px 4px 0px #0000001A;
transition: all .35s ease;
height:100%;
}

.li-grid-card:hover{
transform:translateY(-8px);
box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

/* icon */

.li-grid-icon {
    width: 40px;
    height: 40px;
    background: #62A010;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 16px;
}

/* .li-grid-icon img{
width:55px;
height:auto;
} */

/* heading */

.li-grid-card h5{
font-size:18px;
font-weight:600;
font-family: var(--font-heading-secondary);
margin-bottom:10px;
color: #0F1A17;
}

/* text */

.li-grid-card p{
font-size:14px;
color:#0F1A17;
margin-bottom:0;
}

.ligrids-sec{
  padding: 40px 0 ;
  text-align: center;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}



.ligrids-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/recycling-bg.svg") no-repeat center;
  background-size: cover;
  opacity: 0.6;   
  z-index: -1;

  animation: waveMove 10s ease-in-out infinite alternate;
}

.awards-section{
  padding: 40px 0 ;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  z-index: 1;
}



.awards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/recycling-bg.svg") no-repeat center;
  background-size: cover;
  opacity: 0.6;   
  z-index: -1;

  animation: waveMove 6s ease-in-out infinite alternate;
}


.ab-ligrid-owl{
	padding-bottom: 60px;
}

.application-text {
	font-weight:var(--font-weight-extra-bold);
font-family: var(--font-heading-main);
	margin-bottom: 25px;
}

.ab-ligrid-img {
    width: 160px;
    height: 160px;
    border: 2px dashed #f9f9f9;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: #f9f9f9; */
}

.ab-ligrid-img img {
    width: 80%;
    /* height: 90%; */
    /* object-fit: contain; */
    border-radius: 50%;
    padding: 6px;
}

.ab-ligrid-text {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}

.text-light-green {
    color: #62A010;
	font-weight: 500;
}

.text-blue {
    color: #164C9E;
	font-weight: 500;
}

.product-link i{
transition: transform 0.3s ease;
display: inline-block;
}

.product-link:hover i{
transform: rotate(45deg);
}

/* ------------road------- */


.journey-card {
    height: 121px;
    background: #ffffff;
    border: 1px solid rgba(98, 160, 16, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1),
              0 2px 6px rgba(0, 0, 0, 0.08); */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
	margin-top: 26px;
}

.journey-card p{
	margin-bottom: 0px;
}

.our_journey_text ul {
    /* padding: 0px 12px; */
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.our_journey_text ul li {
    color: #222222;
    margin-top: 20px;
}

.timeline-row {
	/* width: 100%;
    display: flex; */
	justify-content: center;
	margin-top: 60px !important;
}

/* .timeline-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
  } */


.road {
	position: relative;
	height: 12px;
	background: #3a3a3a;
	padding: 0px 30px;
	/* border-radius: 4px; */
	overflow: visible;
}

.road::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: repeating-linear-gradient(to right,
			#fff 0 12px,
			transparent 12px 24px);
	transform: translateY(-50%);
	opacity: 0.5;
}


.car {
	position: absolute;
	top: -25px;
	left: 0;
	width: 60px;
	transition: left 1s ease-in-out;
}


.milestones {
	display: flex;
	justify-content: space-between;
	margin-top: 50px !important;
	position: relative;
}

.milestone {
	text-align: center;
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	margin-top: 20px;
}


.milestone::before {
	content: "";
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 12px;
	height: 12px;
	background: #aaa;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 2;
}


.milestone::after {
	content: "";
	position: absolute;
	top: -67px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 53px;
	background: repeating-linear-gradient(to bottom,
			#ccc,
			#ccc 4px,
			transparent 4px,
			transparent 8px);
	z-index: 1;
	transition: all 0.3s ease;
}


.milestone.active::after {
	background: repeating-linear-gradient(to bottom,
			#6AA82D,
			#6AA82D 4px,
			transparent 4px,
			transparent 8px);
}


.milestone.active {
	color: #6AA82D;
	font-weight: 600;
}

.milestone.active::before {
	background: #6AA82D;
	box-shadow: 0 0 10px #6AA82D;
}

.milestone.active::after {
	background: repeating-linear-gradient(to bottom,
			#6AA82D,
			#6AA82D 4px,
			transparent 4px,
			transparent 8px);
}


.mobile-view{
display:none;
}

.cookie-policy-sec, .privacy-policy-sec{
	margin-top: 0px;
}

.required{
color:red;
}

.connect-team{
	margin-top: 28px;
}

.ligrid-list {
  padding-left: 20px;
}

.ligrid-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #6B7280;
  font-family: var(--font-heading-secondary);
  font-size: 16px;
  font-weight: var(--font-weight-light);
}

.li-grid-card .ligrid-list li {
  margin-bottom: 8px;
  line-height: 1.6;
      color: #6B7280;
    font-size: 15px;
}

.defoult-txts{
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.recycling-process-ul {
  /* list-style: none;     
  padding: 0;
  text-align: center; */
  font-size: 16px;
  font-weight: var(--font-weight-light);
  font-family: var(--font-heading-secondary);
  color: #7A8180;
   padding-left: 18px;
}

.recycling-process-ul {
  /* display: flex;
  text-align: center; */
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title-div{
	max-width: 800px;
	margin: 5px auto 20px;

}

.leads {
  font-size: 20px;
  color: #000;
  line-height: 1.8;
}

.impact-body ul li {
    color: var(--color-text-secondary);
    line-height: 27px;
}

#impactSection{
  padding: 40px 0;
  
}

/* .impact-crd-top {
    background-image: url("../images/faclity-card-bg.svg");
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    border-radius: 30px;
    padding: 24px 20px;
	margin-top: 22px !important;
    box-shadow: 0px 4px 4px 0px #00000040;
    
    z-index: 5;
    text-align: center;
    
} */

#impactSection .impact-card p {
  color: #000;
  margin-bottom: 0px;
}

.impact-card h5{
	font-family: var(--font-heading-main);
	font-size: 18px;
	color: #000000;
}

.impact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.impact-card:hover {
  transform: translateY(-5px);
}

/* GREEN COLOR */
.counter {
  font-size: 32px;
  font-weight: bold;
  color: #62a010;
}

.target-text{
	text-align: center;
}

.target-text strong {
  color: #62a010;
}

.contact-box {
  padding: 10px 0 40px;
}

.contact-card {
  background: #F5FFE7;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #dcdfff;
}

.contact-text{
	text-align: center;
	margin-top: 30px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-heading-main);
}

.contact-item {
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 5px;
}

.contact-link {
  color: #62a010;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ----------who we are-------- */

.who-section {
  padding: 50px 0;
  background: #f8f9fb;
}

.who-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.who-title {
  font-size: 2rem;
  font-family: var(--font-heading-main);
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.who-desc {
  font-size: 16px;
  color: #7A8180;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* List styling */
.who-list {
  padding-left: 20px;
}

.who-list li {
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
}

/* Custom bullet color */
.who-list li::marker {
  color: #62a010;
  font-size: 18px;
}

/* Highlight */
.who-list strong {
  color: #62a010;
}


.impact-table-section {
  padding: 40px 0;
  margin-top: 20px;
  /* background: #f8f9fb; */
}

.impact-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d2f7f;
}

/* Table style */
.impact-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.impact-table thead {
  background: #62a010;
  color: #fff;
}

.impact-table tbody {
  border-top: unset !important;
}

.impact-table th {
  padding: 15px !important;
  font-weight: 600;
}

.impact-table td {
  padding: 15px !important;
  color: #333;
}

/* Zebra effect */
.impact-table tbody tr:nth-child(even) {
  background: #f6f9f2;
}

/* Highlight numbers */
.impact-table strong {
  color: #62a010;
}
.second-text ul{
	padding-left: 18px;
}

.second-text ul li {
    font-size: 1rem;
	    line-height: 28px;
    font-family: var(--font-heading-secondary);
    font-weight: var(--font-weight-light);
}



.awardsSwiper {
  padding: 60px 0;
}

.awardsSwiper .swiper-slide {
  width: 400px;
  height: auto;
  border-radius: 12px !important;
}

.swiper-slide img{
border-radius: 12px !important;
}

.awardsSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #eee;

}

.defoult-txt{
	max-width: 900px;
	margin:20px auto;
	text-align: center;
}

.erp-img img{
border-radius: 12px;
}

/* ---------------case studies--------------- */

.case-study-sec {
  padding: 10px 0 60px;
  background: #ffffff;
}

/* Title */
.case-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
}

.case-title .blue {
  color: #000000;
}

.case-title .green {
  color: #000000;
}

/* Card */
.case-card {
  background: #F5FFE7;
  padding: 25px;
  border-radius: 6px;
  position: relative;
  height: 100%;
  border-top: 5px solid #62A010;
  box-shadow: 0px 4px 4px 0px #0000001A;
}

/* Tag */
.case-tag {
  display: inline-block;
  background: #62a010;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Heading */
.case-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.case-card p {
color: #6B7280;
}

/* Labels */
.label {
  color: #2d5aa3;
  font-size: 18px;
  font-weight: 600;
}

/* Impact */
.impact {
  margin-top: 15px;
}

.impact h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.impact ul {
  padding-left: 18px;
}

.impact li {
  margin-bottom: 6px;
  font-family: var(--font-heading-secondary);
  font-weight: var(--font-weight-light);
  color: #6B7280;
}


/* Impact Stories Section */


.impact-stories-sec {
  padding: 40px 0;
  background: #F8FFEF;
}


.impact-title {
  font-size: 36px;
  font-weight: 800;
}

.impact-title .blue {
  color: #2d5aa3;
}

.impact-title .green {
  color: #62a010;
}


.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}


.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Label */
.video-label h3 {
  margin-top: 15px;
  font-weight: 600;
  position: relative;
  font-size: 22px;
}

/* Green dot line */
/* .video-label::before {
  content: "";
  display: block;
  width: 2px;
  height: 20px;
  background: #62a010;
  margin: 0 auto 8px;
}

.video-label::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #62a010;
  border-radius: 50%;
  display: block;
  margin: 0 auto 5px;
} */


/* ----------ligrid-rw card--------- */


.product-sec {
  padding: 25px 0;
  border-top: 1px solid #00000014;
  margin-top: 30px;
}

.ligrid-wrapper-sec {
  max-width: 1100px;
  margin: auto;
}

.product-header{
  margin-bottom: 30px;
}

.product-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #62A010;
}


.badge {
  background: #62A010;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  margin-left: 10px;
}

.product-header p {
  color: #666;
  margin-top: 10px;
}



/* LEFT */
.product-left img {
  width: 100%;
  border-radius: 10px;
}

.applications {
    max-width: 100%;
    background: #fff;
    padding: 18px;
    margin-top: 15px;
    border-radius: 10px;
    border: 1px solid #00000014;
    /* margin: 10px 24px; */
    margin-left: 1%;
    margin-top: 20px !important;
}

.applications h4{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
   color: #0B2545;
}

.tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E9F2FF;
  color: #0B2545;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  margin: 6px;
  font-weight: 500;
}

.tags span i {
  font-size: 14px;
}

/* RIGHT */
.product-right {
  background: #fff;
  padding:0 20px;
  border-radius: 10px;
  flex: 1;
}

.product-right h4 {
  background: #62A010;
  border-bottom: 1px solid #00000014;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 10px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0px;
  color: #FFFFFF;
}

.product-right table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0px 2px 4px -1px #00000008;
  border: 1px solid #00000014;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 92%;
}

.product-right td {
  padding: 11px !important;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
      font-weight: 600;
  color: #0B2545;
}

.product-right td:first-child {
    color: #ffffff;
    background-color: #62A010;
    border-bottom: 1px solid #578d10;
}

/* Responsive */
/* @media (max-width: 768px) {
  .product-grid {
    flex-direction: column;
  }
} */


.impact-cont1 .highlight {
 
 background-size: auto;
}

.title-div .highlight {

 background-size: auto;
}

.contact-item span{
  font-weight: bold;
}

/* ------------timeline ------------ */

.lico-times {
  position: relative;
}

/* CENTER LINE */
.lico-times::before {
  content: '';
  position: absolute;
  width: 2px;
  background: #ddd;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ROW */
.lico-row {
  display: flex;
  align-items: center;
  margin: 80px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.lico-row.show {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT RIGHT */
.lico-col {
  width: 45%;
}

.lico-left {
  text-align: right;
  padding-right: 30px;
}

.lico-left p{
  text-align: left;
  margin-bottom: 0px;
    font-size: 17px;
    color: #8B9A94;
}

.lico-right p{
  font-size: 17px;
  text-align: left;
  margin-bottom: 0px;
  color: #8B9A94;
}

.lico-right {
  text-align: left;
  padding-left: 30px;
}



/* CENTER */
.lico-center {
  width: 10%;
  text-align: center;
  position: relative;
}

/* DOT */
.lico-dot {
  width: 32px;
  height: 32px;
  padding: 6px;
  background: #ccc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* ARROW */
.arrow {
  font-size: 12px;
  color: white;
  opacity: 0;
}

/* ACTIVE DOT */
.lico-row.active .lico-dot img {
  filter: brightness(0) invert(1);
}

.lico-row.active .lico-dot {
  background: #62A010;
  transform: scale(1.3);
}

.lico-row.active .arrow {
  opacity: 1;
}

/* YEAR */
.lico-year {
  font-size: 48px;
  font-weight: 700;
  color: rgba(0,0,0,0.08);
}

.lico-row.active .lico-year {
  color: #62A010;
}

.lico-row.active .lico-card {
border: 1px solid #62A010
}

/* CARD */
/* .lico-card {
  display: inline-block;
  background: #fff;
  padding: 18px 24px;
  border-radius: 8px;
 border: 1px solid #00000014;
  width: 300px;
  min-height: 250px;
  box-shadow: 0px 8px 32px -8px #00000014;

} */


.lico-left .lico-card {
    display: flex;
    background: #fff;
    padding: 18px 24px;
    border-radius: 8px;
    border: 1px solid #00000014;
    width: 300px;
    min-height: 130px;
    /* max-width: 100%; */
    box-shadow: 0px 8px 32px -8px #00000014;
    justify-self: end;
    align-items: center;
}


.lico-right .lico-card {
    display: flex;
    background: #fff;
    padding: 18px 24px;
    border-radius: 8px;
    border: 1px solid #00000014;
    width: 300px;
    min-height: 130px;
    /* max-width: 100%; */
    box-shadow: 0px 8px 32px -8px #00000014;
    justify-self: start;
    align-items: center;
}

/* ------------career------ */

.job-opening-img img{
border-radius: 20px;
}

.life-cards{
  text-align: center;
    height: 100%;
}
.life-cards img{
border-radius: 12px;
}

.life-row .custom-dots .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
}

.life-row .custom-dots .dot.active {
  background: #62A010;
}

.life-cards h5{
font-family: var(--font-heading-secondary);
font-size: 16px;
font-weight: 600;
}

.life-heading{
  text-align: center;
  margin-bottom: 30px;
}

.life-heading h3{
font-family: var(--font-heading-main);
font-size: 36px;
font-weight: 700;
}

.life-bottom-content h4{
  font-size: 36px;
  margin-bottom: 20px;
  font-family: var(--font-heading-main);
}

/* newsss BIG CARD */

.inner-banners{
  margin-top: 120px;
  text-align: center;
  color: #62A010;
}



.inner-banners .breadcrumb{
  justify-content: center;
}

.inner-banners .breadcrumb-item a{text-align: center;
color: #000000 !important;}

.inner-banners .breadcrumb-item{

text-align: center;
color: #000000 !important;
}

.big-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  height:400px;
}

.big-card img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
}

.big-card .nwcontent {
  position: absolute;
  bottom: 0;
  color: #fff;
  padding: 20px;
background: linear-gradient(180deg, rgba(15, 26, 23, 0.1) 0%, rgba(15, 26, 23, 0.8) 60%, rgba(15, 26, 23, 0.95) 100%);

  width: 100% !important;
}

.big-card h5 {
  margin: 30px 0px;
  font-weight: 600;
}

.news-section .category {
  font-size: 12px;
  line-height: 1.4;
  color: #0F1A17;
  border: 1px solid #E5E7EB;
  font-weight: 600;
  padding: 4px 12px;
}

.nwcontent .category {
  font-size: 12px;
  line-height: 1.4;
  color: #E5E7EB;
  border: unset !important;
  font-weight: 600;
  padding: 4px 10px;
  background-color: rgba(255, 255, 255, 0.4);
}

.nwcontent .read-more{
color: #ffffff !important;
}

.nwcontent .news-author{
margin-left: 20px;
}

.nwcontent .read-more .arrow-btn {
   
    background: #62A010;
  
}

.news-section .meta {
  font-size: 12px;
  margin-top: 8px;
}

/* DATE BOX */
.news-section .date-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    padding: 8px 18px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
}
.news-list{
  display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
}
/* SMALL CARDS */
.small-card {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

/* IMAGE 40% */
.small-card .card-img {
      width: 220px;
    min-width: 220px;
    height: 180px;
}

.small-card .card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover; /* 🔥 IMPORTANT */
  border-radius: 6px;
}

/* CONTENT 60% */
.small-card .card-content {width: 100%;}



.news-section .small-card h6 {
    font-size: 22px;
    margin: 24px 0px;
    font-weight: 600;
}

/* DATE */
.news-section .date {
  font-size: 14px;
  font-weight: 600;
  color: #647A79;
  min-width: 140px;
    padding-left: 10px;
}

.news-section .read-more {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    font-weight: 600;
    /*border: 1px solid rgba(0, 0, 0, 9%);
    padding: 8px 12px;
    border-radius: 40px;*/
}

/* BLACK CIRCLE ARROW */
.news-section .arrow-btn {
  width: 24px;
  height: 24px;
  rotate: 316deg;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: 0.3s;
}

/*.news-section .read-more:hover{background-color: var(--color-text-dark);color: var(--color-text-light);}
.news-section .read-more:hover .arrow-btn{background-color: var(--color-text-light);color: var(--color-text-dark);rotate: 360deg;}*/

.news-section .read-more:hover .arrow-btn {
  background: #62A010;
  rotate: 360deg;
}

.news-section .pagination-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* COMMON BOX */
.news-section  .page,
.news-section  .nav-btn {
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 6px;
  background: #f1f1f1;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

/* ACTIVE */
.news-section  .page.active {
  background: #5aa300; /* green */
  color: #fff;
}

/* HOVER */
.news-section  .page:hover,
.news-section  .nav-btn:hover {
  background: #000;
  color: #fff;
}

/* DOTS */
.news-section  .dots {
  padding: 0 6px;
  font-size: 14px;
  color: #888;
}


.cm-year-select .year-select {
  position: relative;
  width: 160px;
  float: right;
}

.cm-year-select .year-select select {
  width: 100%;
  padding: 10px 45px 10px 15px;
  border-radius: 30px;
  border: 1px solid #ddd;
  appearance: none;
  background: #f8f8f8;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

/* DARK ROUND BUTTON */
.cm-year-select .custom-arrow {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: #0f1f1c; /* dark green/black */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-size: 12px;
}

/* HOVER EFFECT */
.year-select select:hover {
  border-color: #aaa;
}


/* Blog Listing and Details Start */
.select-year {
	width: 200px;
	display: block;
	margin: 0 0 0 auto;
}

.select-year select {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 40px;
	background-image: url("../images/down-arrow-svg.svg");
	background-position: right 10px center;
	background-repeat: no-repeat;
	background-size: auto 50%;
	outline: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}

.select-year select:focus {
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.2);
}

.new-blog {
	display: grid;
	gap: 48px;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	padding: 25px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	box-shadow: 0 8px 32px 0 rgb(0 0 0 / 3%);
	align-items: center;
	margin-bottom: 2rem;
}

.new-blog .blog-img {}
.new-blog .blog-img img{height: 350px;}
.new-blog .blog-img img,
.blog-list .blog-past .blog-img img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
}

.new-blog .blog-info {}

.new-blog .blog-info .blog-category-date,
.blog-list .blog-past .blog-info .blog-category-date {
	display: flex;
	gap: 20px;
	font-family: var(--font-heading-secondary);
	font-weight: var(--font-weight-medium);
	font-size: 13px;
	align-items: center;
}

.new-blog .blog-info .blog-category-date .category,
.blog-list .blog-past .blog-info .blog-category-date .category {
	background-color: var(--color-primary-green);
	color: var(--color-text-light);
	border-radius: 6px;
	padding: 4px 12px;
}

.new-blog .blog-info .blog-category-date .date,
.new-blog .blog-info .blog-description p,
.blog-list .blog-past .blog-info .blog-category-date .date,
.blog-list .blog-past .blog-info .blog-description p {
	color: #647a79;
	font-weight: 400;
	line-height: 1.3;
}

.new-blog .blog-info .blog-title {}

.new-blog .blog-info .blog-title h2 {
	margin: 18px 0;
}

.new-blog .blog-info .blog-title h2 a,
.blog-list .blog-past .blog-info .blog-title h3 a {
	font-family: var(--font-heading-main);
	color: #0f1a17;
	font-size: 32px;
	text-decoration: none;
}

.new-blog .blog-info .blog-title h2 a:hover,
.blog-list .blog-past .blog-info .blog-title h3 a:hover {
	color: var(--color-primary-green);
}

.new-blog .blog-info .blog-description {
	margin-bottom: 28px;
}

.new-blog .blog-info .blog-description p,
.blog-list .blog-past .blog-info .blog-description p {
	font-size: 16px;
}

.new-blog .blog-info .blog-readmore {}

.new-blog .blog-info .blog-readmore a,
.blog-list .blog-past .blog-info .blog-readmore a {
	text-decoration: none;
	padding: 12px 20px;
	border-radius: 40px;
	border: 1px solid rgba(0, 0, 0, 9%);
	color: #0F1A17;
	font-weight: 600;
	transition: all 0.5s;
}

.new-blog .blog-info .blog-readmore a i,
.blog-list .blog-past .blog-info .blog-readmore a i {
	font-size: 20px;
	transform: rotate(-40deg);
	margin-left: 8px;
	transition: all 0.5s;
}

.new-blog .blog-info .blog-readmore a:hover,
.blog-list .blog-past .blog-info .blog-readmore a:hover {
	background-color: var(--color-text-dark);
	color: var(--color-text-light);
}

.new-blog .blog-info .blog-readmore a:hover i,
.blog-list .blog-past .blog-info .blog-readmore a:hover i {
	transform: rotate(0deg);
}

.blog-list {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.blog-list .blog-past {
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	box-shadow: 0 8px 32px 0 rgb(0 0 0 / 3%);
	height: 100%;
	padding-bottom: 25px;
	position: relative;
}

.blog-list .blog-past .blog-img {
	margin-bottom: 20px;
}

.blog-list .blog-past .blog-img img {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	width: 100%;
    height: 280px;
    object-fit: cover;
}

.blog-list .blog-past .blog-info {
	padding: 0 20px;
}

.blog-list .blog-past .blog-info .blog-category-date {
	margin-bottom: 10px;
}

.blog-list .blog-past .blog-info .blog-title h3 {
	line-height: 24px;
	margin-bottom: 1rem;
}

.blog-list .blog-past .blog-info .blog-title h3 a {
	color: #0f1a17;
	font-size: 20px;
}

.blog-list .blog-past .blog-info .blog-readmore {
	position: absolute;
	bottom: 25px;
	top: auto;
}

.blog-list .blog-past .blog-info .blog-readmore a {
	padding: 8px 12px;
}

.blog-list .blog-past .blog-info .blog-description {
	margin-bottom: 50px;
}

.blogs-pagination {}

.blogs-pagination .page-item.active .page-link {
	background-color: var(--color-primary-green);
	border-color: transparent;
	border: 1px solid #cdcdcd;
}

.blogs-pagination .page-link {
	color: var(--color-text-dark);
}

.blogs-pagination .page-link:hover {
	background-color: var(--color-primary-green);
	color: var(--color-text-light);
}

.blogs-pagination .page-link:focus {
	box-shadow: none;
	border-color: rgba(0, 0, 0, 0.2);
	color: var(--color-text-dark);
}

.blog-article {}

.blog-article .hero-img {}

.blog-article .hero-img img {
	border-radius: 6px;
}

.blog-article .article-content .content-header h1 {
	font-family: var(--font-heading-main);
	color: var(--color-text-dark);
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	margin: 18px 0;
}

.blog-article .article-content .content-header .author-info {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 5rem;
	padding: 1rem 1rem;
	border: 1px dashed #0000001A;
	border-radius: 4px;
	max-width: 480px;
	margin-bottom: 1.5rem;
}

.blog-article .article-content .content-header .author-info .author-details {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.blog-article .article-content .content-header .author-info .author-details img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.blog-article .article-content .content-header .author-info .author-details .info {}

.blog-article .article-content .content-header .author-info .author-details .info h4 {
	font-family: var(--font-heading-main);
	font-size: 15px;
	font-weight: 600;
	color: #0F2B2A;
}

.blog-article .article-content .content-header .author-info .author-details .info .role {
	font-family: var(--font-heading-secondary);
	font-size: 13px;
	color: #777;
	font-weight: 400;
}

.blog-article .article-content .contents h2 {
	font-family: var(--font-heading-main);
	color: #0F172A;
	margin-bottom: 15px;
}

.blog-article .article-content .contents .blog-article-img {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	margin-bottom: 28px;
}

.blog-article .article-content .contents .blog-article-img img {
	width: 100%;
	border-radius: 6px;
}

.blog-article .article-content .contents blockquote {
	position: relative;
	margin: 2rem 0;
	padding: 2rem 3rem;
	background: var(--surface-color);
	border-radius: 6px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--color-primary-green);
	background-color: #F6FFE9;
}

.blog-article .article-content .contents .blog-list-points {
	display: flex;
	margin-top: 2rem;
}

.blog-article .article-content .contents .blog-list-points ul {
	padding-left: 0px;
	width: 100%;
	margin-bottom: 0;
}

.blog-article .article-content .contents .blog-list-points ul li {
	list-style-type: none;
}

.blog-article .article-content .contents .blog-list-points ul li:before {
	content: "\f058";
	font-family: "FontAwesome";
	color: var(--color-primary-green);
	float: left;
	font-size: 18px;
	margin-right: 15px;
}

.blog-article .article-content .contents .blog-list-points ul li p {
	font-family: var(--font-heading-secondary);
	font-weight: 400;
	color: #0F2B2A;
}

.blog-article .article-content .contents blockquote::before {
	/*content: '"';*/
	content: url('../images/blogs/quote.svg');
	position: relative;
	top: 0px;
	left: 0px;
	width: 40px;
	height: 40px;
	background-size: contain;
	/* Resizes the image to fit the box */
	background-repeat: no-repeat;
	display: block;
	margin-bottom: 25px;
}

.blog-article .article-content .contents blockquote p {
	font-family: var(--font-heading-secondary);
	color: var(--color-text-dark);
	font-weight: 400;
}

.blog-article .article-content .contents blockquote cite {
	text-align: right;
	font-family: var(--font-heading-main);
	color: #8B9B9A;
	display: block;
	font-style: normal;
	position: relative;
}

.blog-article .article-content .contents blockquote cite img {
	margin-right: 10px;
}

.blog-article .article-content .meta-bottom {
	margin-top: 2rem;
}

.blog-article .article-content .meta-bottom .tags-section {
	margin-bottom: 2rem;
}

.blog-article .article-content .meta-bottom .tags-section h4,
.blog-article .article-content .meta-bottom .share-section h4 {
	margin-bottom: 1rem;
}

.blog-article .article-content .meta-bottom .tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.blog-article .article-content .meta-bottom .tags .tag {
	background: var(--color-primary-green);
	color: var(--color-text-light);
	padding: 0.5rem 1rem;
	border-radius: 30px;
	font-size: 0.9rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.blog-article .article-content .meta-bottom .social-links {
	display: flex;
	gap: 1rem;
}

.blog-article .article-content .meta-bottom .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-primary-green);
	color: var(--color-text-light);
	transition: all 0.3s ease;
	text-decoration: none;
}

.blog-article .article-content .meta-bottom .tags .tag:hover,
.blog-article .article-content .meta-bottom .social-links a:hover {
	box-shadow: 0 0 0 1px var(--color-primary-green);
	background-color: var(--color-text-light);
	color: var(--color-primary-green);
}

.sticky-sidebar {
  position: sticky;
  top: 0;
}

.search-widget,
.recent-posts-widget {
	margin-bottom: 30px;
	padding: 30px;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.search-widget h3.widget-title,
.recent-posts-widget h3.widget-title {
	color: #0F172A;
	font-family: var(--font-heading-main);
	font-size: 20px;
	margin-bottom: 20px;
}

.search-widget form button {
	border: 1px solid #ced4da;
}

.search-widget form button:hover {
	background-color: var(--color-primary-green);
}

.recent-posts-widget {}

.recent-posts-widget .post-item {
	display: flex;
	margin-bottom: 20px;
}
.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
	width: 80px;
  height: 70px;
  object-fit: cover;
	margin-right: 15px;
	border-radius: 4px;
}

.recent-posts-widget .post-item h4 {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
	color: var(--color-text-dark);
	transition: 0.3s;
	text-decoration: none;
}

.recent-posts-widget .post-item h4 a:hover {
	color: var(--color-primary-green);
}

.recent-posts-widget .post-item time {
	display: block;
	font-size: 14px;
	color:
		color-mix(in srgb, var(--color-text-dark), transparent 50%);
}
/* Blog Listing and Details End */



/* --------------videos------- */


/* CARD */
.video-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.08); */
  max-width: 100%;
  border-width: 0px, 0px, 0px, 0px;
  border-style: solid;
  border-color: #E8E8E8;
  height: 100%;
  position: relative;
  padding-bottom: 20px;
}

/* THUMB */
.video-thumb {
  position: relative;
}

.video-thumb img {
    width: 100%;
    display: block;
    height: 230px;
    object-fit: cover;
}

/* PLAY BUTTON */
.videos-row .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}

/* CONTENT */
.video-content {
  padding: 15px;
}

/* TAG */
.videos-row .tag {
    background: #DBE7FB;
    color: #277EFF;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

/* DATE */
.videos-row .date {
    font-size: 13px;
    color: #000000;
}

/* TITLE */
.videos-row .video-content h6 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

/* BOTTOM LINE */
.videos-row .bottom-line {
  /* margin-top: 12px; */
  height: 3px;
  width: 92%;
  background: linear-gradient(
	  90deg,
	  #62A010 0%,
	  #62A010 55%,
	  #034EA1 55%,
	  #034EA1 100%
	);
  border-radius: 2px;
  position: absolute;
  bottom: 15px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.load-more-btn-vdo{
  margin-top: 20px;
}

.recycling-text h4{font-size:1.1rem}

.videos-section .modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  border: none;
  /* overflow: hidden; */
}

.videos-section .custom-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  opacity: 1;
  z-index: 10;
  box-shadow: 0px 4px 14px 1px #00000029;
}
.videos-section  .custom-close:hover {
  transform: scale(1.1);
  transition: 0.2s;
}

.yt-videos{
  overflow: hidden !important;
  aspect-ratio: 16 / 9;
}


/* remove inner spacing */
.videos-section .modal-body {
  padding: 0 !important;
}

/* iframe full cover */
.videos-section .modal iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 12px;
}

.videos-row .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    z-index: 2;
}

.videos-row .play-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    animation: pulse 1.8s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* -----------press releases---- */


 .press-release{
  position: relative;
      background:#f7f8ef;
      border-radius:12px;
      padding:0px 32px 20px;
      height: 100%;
   
    }

 .press-release::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9%;
    width: 4px;
    height: 79%;
    background: #6ab000;
    border-radius: 10px;
}

.press-release .date-box {
    align-items: center;
    justify-content: center;
    background: #6ab000;
    color: #fff;
    text-align: center;
    padding: 6px 4px;
    line-height: 1.1;
    border-radius: 0 0 6px 0;
    max-width: 90px;
}

    .press-release .date-box h5{
      margin:0;
      font-size:26px;
      font-weight:700;
    }

   .press-release .date-box span{
      font-size:10px;
      display:block;
    }

    .press-content{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:20px;
    }

    .press-content h4{
      font-size:18px;
      line-height:1.5;
      font-weight:700;
      color:#111;
      margin:0;
      max-width:520px;
    }

   .press-release .pdf-icon{
      text-decoration:none;
      display:flex;
      align-items:center;
      justify-content:center;
      min-width:70px;
    }

    .erp-text .defoult-txts{
text-align: left !important;
    }
  .bottom-h{height: 80px;}

   