/**innovation section**/

.innovation-section{
	padding: 10px 0 105px;
	margin-bottom: 0;
}

.innovation-heading{
	width: 80%;
	margin: auto;
}

.innovation-sub-heading{
	width: 70%;
	margin: 15px auto 84px;
	font-size: 18px !important;
	line-height: 34px;
	color: #000;
}

.innovation-card-extra{
	display: none;
}

.innovation-img{
	cursor: pointer;
}

/* Image preview modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.image-modal.active {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}

.image-modal-content {
  position: relative;
  display: inline-block;
  width: 50%;
	background-color: #fff;
}

.image-modal-content img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.image-modal-content .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.3s ease;
  z-index: 2;
}

.image-modal-content .nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.image-modal-content .left-arrow {
  left: 0;
}

.image-modal-content .right-arrow {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 14px;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 576px) {
    
		.innovation-heading {
    width: 90%;
	}
	
	.innovation-sub-heading {
		width: 90%;
		font-size: 16px !important;
    line-height: inherit;
	}
	
	.img-dots-container{
		text-align: center;
	}
	
	.img-dots-container .dot{
		display: inline-block;
		width: 10px;
		height: 10px;
		margin: 0 5px;
		background-color: #bbb;
		border-radius: 50%;
		cursor: pointer;
	}
		
	.img-dots-container .dot.active{
		background-color: #717171;
	}
	
	.innovation-card-extra{
		display: block;
	}
	
	.innovation-card {
		display: none;
	}

	.innovation-card.active-card {
		display: block;
	}
}
