.olmodal{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top:0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	z-index: 9999;
	display: flex;
	justify-content: center;
	font-family: "Lato", sans-serif;
	background-color: rgba(0, 0, 0, 0.8);
}
.olmodalinner{
	max-width: 1280px;
	margin: 0 auto;
}
.olmodalwrapper{
	margin: 7% auto 0;
	min-height: 500px;
	background: #f1f5f9;
	padding: 100px 50px;
	display: flex;
	position: relative;
	border-radius: 20px;
	--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.olmodalinner .olmleft{
	width: 50%;
}
.olmodalinner .olmrht{
	width: 50%;
}
.olmodalinner .olmrht img{
	width: 100%;
	height: auto;
}
.olmodalwrapper h1{
	font-size: 48px;
	color: #1b76e0;
	font-weight: 700;
}
.olmodalwrapper h2{
	font-size: 48px;
	color: #000;
	font-weight: 700;
}
.olformsectio{
	margin-top: 30px;
}
.olformsectio .form-control{
	font-size:14px;
    line-height: 20px;
    padding: 8px 15px;
    height: 54px;
    box-shadow: none;
  	margin-bottom: 15px;
  	border-radius: 14px;
    border: 1px solid #E1E7EF;
}
.olformsectio .btnfree{
	width: 100%;
	font-size: 14px;
	color: #fff;
	border-radius: 14px;
	height: 54px;
	background: #f17c3a;
	margin-bottom: 20px;
	animation-duration: .2s;
	transition-property: all;
    transition-timing-function: 
	cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s;
	transition: transform .2s; /* Animation */
}
.olformsectio .btnfree:hover{
	  transform: scale(1.1); 
}
.olmodalclose{
	position: absolute;
	right: 30px;
	top: 30px;
	background: #fff;
	border-radius: 100px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1px solid #333;
}

.olformsectio p{
	font-size: 14px;
	color: #6e7d93;
}
/* Exit Modal Styles */
.olmodal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.olmodalinner {
  overflow: auto;
  position: relative;
}

/* Image Animation Styles - Floating only */
.img-anim-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.hanim-hover-zoom {
  width: 100%;
  height: auto;
  will-change: transform;
}

/* Subtle floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hanim-hover-zoom {
  animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hanim-hover-zoom {
    animation: float 8s ease-in-out infinite;
  }
}

/* Button Styling - Lovable App Style */
.btnfree {
  position: relative;
  overflow: hidden;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.3px;
  text-transform: none;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  background: #ffffff;
  color: #3C83F6;
  box-shadow: 0 2px 8px rgba(60, 131, 246, 0.15);
  cursor: pointer;
  min-width: 160px;
  text-align: center;
  display: inline-block;
}

/* Mobile responsive button styling */
@media (max-width: 768px) {
  .btnfree {
    font-size: 14px;
    padding: 14px 28px;
    min-width: 140px;
    border-radius: 10px;
  }
}


@media only screen and (max-width: 767px){
	.olmodalinner .olmleft {
	  width: 100%;
	}
	.olmodalinner .olmrht{
		display: none;
	}
	.olmodalwrapper{
		border-radius: 0;
		padding: 60px 30px;
	}
	.olmodalwrapper h1 {
	  font-size: 36px;
	  color: #1b76e0;
	  font-weight: 700;
	}
	.olmodalwrapper h2 {
	  font-size: 36px;
	  color: #000;
	  font-weight: 700;
	}
	.olmodalwrapper h2 br{
		display: none;
	}
}

