.homepage-cover{
	display: flex;
    height: calc(100vh - 100px);
    align-content: center;
    justify-content: center;
    align-items: center;
	padding:20px;
}
/* .homepage-cover::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	    z-index:2;  
} */
.cover-inner{
	max-width: 60%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
	z-index:2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.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: 250px;
    height: auto;
    left: -20px;
}
.abt-text,.productsbox-text {
    width: 50%; /**100% On mobile**/
}
.mission-text{
	width:62%; /** 100% on mobile**/
}
.h-xxl{
	font-size: clamp(2rem, 0.5833rem + 6.2963vw, 6.25rem);
	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{
margin-top:30px;
}
.icon-boxes{
gap:20px;
}
.icon-box {
    width: 49%; /** 100% on Mobile **/
    background: var(--light-color);
	border-radius: 5px;
	padding: 20px;
	overflow:hidden;
}
.icon-box img{
	width:75px;
    background: var(--secondary-color);
	border-radius: 5px;
	padding: 20px;
	margin-bottom:0.9rem;
}
.icon-box .flex{
    justify-content: flex-start;
	gap:20px;
}
/** 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);
}
/** Products Grid **/
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
  margin: 40px 0;
}
.product-item {
  text-align: center;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background:var(--light-color);
}
.product-item a{
 text-decoration: none;
}
.product-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.product-thumb img {
  width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.product-title{
    margin-top: 15px;
    color: var(--dark-color);
   
}

/**\\ Mobile Responsive //**/
@media only screen and (max-width:1024px){
.cover-inner,.counter-box,.abt-images, .productsbox-images ,.abt-text, .productsbox-text,.mission-text,.mission-images,.icon-box  {
    width: 100%;
	max-width: 100%;
}
.flex{
	gap:30px;
}
.icon-box .flex{
	flex-direction:column;
	align-items: flex-start;
}
.abt-images .secondary-img {
		width:150px;
}
.products .align-center{
		text-align:left;
}
	.custom-bullets li {
    padding: 10px 0;
}
}