.floating-container {

	position: fixed;
	z-index: 999;
	top: 50%;
	right: -150px;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
  }
  .widbtn
  {
	width: 200px;
  }

  /* .floating-image {
	width: 170px;
	height: 125px;
	cursor: pointer;
  } */

  .floatbtn {
	outline: 0;
	display: inline-flex;
	align-items: center;
  	min-height: 30px;
	justify-content: space-between;
	background: #E20935;
	border: 0;
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
	box-sizing: border-box;
	padding: 6px 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	overflow: hidden;
	cursor: pointer;
	transform: rotate(270deg); /* Rotate the button */
	transform-origin: center; /* Rotate around the center */
	position: fixed;
	z-index: 999;
	top: 50%;
	left: -100px;
	display: flex;
	align-items: center;
  }


  @media (max-width: 767px) {
	.floatbtn {
	 display: none;
	}
  }

  .floatbtn:hover {
	opacity: .95;
  }

  .floatbtn .animation {
	border-radius: 100%;
	animation: ripple 0.6s linear infinite;
  }

  @keyframes ripple {
	0% {
	  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1);
	}

	100% {
	  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1), 0 0 0 60px rgba(255, 255, 255, 0.1), 0 0 0 80px rgba(255, 255, 255, 0);
	}
  }

  .floating-form {

	position: absolute;
	top: 0;
	left: 40px; /* Adjust based on your layout */
	background: white;
	border: 1px solid #ccc;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
  }
  .form-header {
	margin-bottom: 20px;
	text-align: center;
}
.form-header h2 {
	margin: 0;
	font-size: 1rem;
	line-height: 25px;
	font-weight: 700 !important;
}
.form-container {
	max-width: 300px;
	margin: 0px auto;
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.consult input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    border-bottom: 1px solid rgb(167, 164, 164);
    font-size: 14px;
	margin-bottom: 14px;
	background: none !important;

}
.consultbtn{
	width: 100%;
	background-color: #0d8f47 !important;
	border: none;
	color: #fff !important;
	border-radius: 20px;
	padding: 5px;
}
.consultbtn:hover {
	background-color: #ff4b4b;
}
.close-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	font-size: 24px;
	color: #333; /* Adjust color as needed */
  }
  .expertpara
  {
	font-size: 12px;
	font-weight: 500;
	color: #0d8f47;
  }

