@media (max-width: 767px) {
  .sec {
    padding-top: 70px!important; /* match your navbar height */
  }
}

@media (min-width: 768px) {
  .sec {
    padding-top: 80px; /* match your desktop navbar height */
  }
}

.prodfeat {
	border-radius:0px!important;	
	padding-top:60px;
	padding-left:20px!important;
}	

.prodfeat__img img {    
    width: 100%;      /* scale beyond container */
    max-width: 120%;
    height: auto;
    transform: scale(1.1);
	margin-top: -20px;	
}

/* Mobile */
@media (max-width: 767px) {
	.prodfeat__img img {    
		width: 80%;
		max-width: 120%;
		height: auto;
		transform: scale(1.1);
		margin-top: -48px;	
	}
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
	.prodfeat__img img {
		width: 105%;
		max-width: 110%;
		height: auto;
		transform: scale(1.05);
		margin-top: -100px;
	}
}

.bg-greycolor{
	background-color:#FAFAFA;
}	

.visitgrid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
    justify-content: center;
}

@media (max-width: 700px) {
	.headersection{
		padding-top: 80px!important;	
	}
    .visitgrid {
        grid-template-columns: 1fr;
    }
}

.toggle-panel__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 440px;
  display: grid;
  place-items: center;
  color: rgb(255, 255, 255);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 760px) {
    .toggle-panel__img {
        min-height: 300px;       
        background-size: cover!important;
    }
}

/* Tablet breakpoint — adjust min/max to match your framework's grid */
@media (max-width: 1024px) and (min-width: 768px) {
  .toggle-panel {
    grid-template-columns: 1fr; /* stack image above text instead of side-by-side */
    /* or if it's flex: flex-direction: column; */
  }
  
  .toggle-panel__img {
    background-size: contain;   /* overrides the inline style */
    min-height: 500px;          /* adjust to taste, or use aspect-ratio instead */
  }
  
}



