.homepage-cover{
	display: flex;
    height: 100vh;
    margin-top: -100px;
    align-content: center;
    justify-content: center;
    align-items: center;
	margin-top:-100px;
}
.homepage-cover::before {
        content: ""; /* Required for pseudo-elements */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgb(255 255 255 / 50%);
	    z-index:-1;  
}
.cover-inner{
	max-width:60%;
	padding:20px;
	background: rgb(255 255 255 / 65%);
	border-radius:10px;
}
.large-text{
	font-size:var(--font-md);
}
.btn-flex{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.counter-boxes {
    justify-content: space-between;
    align-items: center;
    gap:20px;
    flex-direction: row;
    flex-wrap: wrap;
	margin-top:30px;
}
.counter-box {
    padding: 40px 20px;
    width: calc(24% - 10px);/** 100% on mobile**/
    background: #fff;
	border-radius:5px;
}
.abt-images , .productsbox-images{
	width:45%;/** 100% on mobile**/
	position:relative;
}
.abt-images img,.productsbox-images img{
	width:100%;
	height:auto;
}
.abt-images .secondary-img {
    position: absolute;
    bottom: -10%;
    width: 350px;
    height: auto;
    right: -20px;
}
.abt-text,.productsbox-text {
    width: 50%; /**100% On mobile**/
}
.mission-text{
	width:62%; /** 100% on mobile**/
}
.h-xxl{
	font-size: clamp(2.375rem, 0.0417rem + 10.3704vw, 9.375rem);
	font-weight:900;
	line-height:1.1;
}
.mission-images{
	width:35%;/** 100% on mobile**/
}
.mission-images img{
	width:100%;
	height:auto;
}
.custom-bullets ul{
	list-style-type:none;
	margin-top:20px;
	text-transform: capitalize;
}
.custom-bullets li{
	padding:10px 20px;
}
.custom-bullets li:before {
    content: '';
    width: 24px;
    height: 24px;
    background: url('/wp-content/uploads/2025/09/asterisk.png');
    display: inline-block;
    margin-bottom: -6px;
    margin-right: 10px;
}
.productsbox,.usage-boxes{
margin-top:30px;
}
.use-box {
    background: var(--light-bg);
    max-width: 24%;
    border-radius: 5px;
    padding-bottom: 10px;
	overflow:hidden;
}
.use-box img{
	width:100%;
	margin-bottom:15px;
}
/** Blogs **/
.blog-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

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

.post-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.excerpt {
  flex: 1;
  margin-bottom: 15px;
}

.read-more {
  align-self: flex-start;
  text-decoration: none;
  font-weight: bold;
  color: var(--primary-color);
  transition: color 0.3s;
}

.read-more:hover {
  color: var(--secondary-color);
}