/* Banner section */
.hero-section .content-col .ratting-wrapper p{
	display: inline-flex;
	gap: 5px;
	border: 2px solid white;
	font-size: 20px;
	border-radius: 10px;
	font-weight: 500;
	padding: 6px 12px;
	color: white;
}
.hero-section .content-col .ratting-wrapper p i {
	color: #ffa800;
}
.hero-section .content-col .banner_desc p{
	font-size: 20px;
}

a.call-wrapper {
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 20px !important;
    font-size: 44px !important;
    font-weight: 700 !important;
    margin-block: 18px !important;
    transition: all 0.5s ease-in-out;
}

.svg-wrapper {
	background: #fff;
	height: 70px !important;
	transition: all 0.5s ease-in-out;
	border-radius: 50%;
	width: 70px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	animation: floatPulse 2s ease-in-out infinite;
}

.svg-wrapper svg {
	background: #fff !important;
	fill: var(--e-global-color-accent) !important;
	width: 35px;
	transition: all 0.5s ease-in-out;
	height: 35px;
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 #e1e45782;
  }
  50% {
    box-shadow: 0 0 0 20px #f6b12305;
  }
  100% {
    box-shadow: 0 0 0 0 #f6b12305;
  }
}

.hero-section .form-col{
	background: rgba(255, 255, 255, 0.28);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
	backdrop-filter: blur(11px);
	border-radius: 20px;
	padding: 20px;
/* 	border: 1px solid rgba(255, 255, 255, 0.16); */
	border: 2px solid #e1e457;
}
.hero-section .form-col h2.elementor-heading-title {
    color: #e1e457;
    text-align: center;
    font-size: 36px;
	padding-bottom: 5px;
    text-transform: uppercase;
}
.hero-section .form-col form textarea{
	height: 100px !important;
}

/* USP section */
.usp_section{
	padding-block: 30px;
	padding-inline: 15px;
	background: var( --e-global-color-121d3e9 );
}
.usp_section .icon-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
}

.usp_section .icon-item {
	text-align: center;
	padding: 20px 10px;
	background: white;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.usp_section .icon-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(168, 184, 98, 0.2);
}

.usp_section .icon-wrapper {
    width: 100%;
    max-width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #a8b862 0%, #8a9b4d 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 25px rgba(168, 184, 98, 0.3);
	transition: transform 0.3s ease;
}

.usp_section .icon-item:hover .icon-wrapper {
	transform: scale(1.1) rotate(20deg);
}

.usp_section .icon-wrapper svg {
	width: 40px;
	height: 40px;
	fill: white;
}

.usp_section .icon-item h3 {
	font-size: 20px;
	color: black;
	margin-bottom: 12px;
	font-weight: 600;
}

/* How it work */
.how_it_work h3.elementor-heading-title, .how_it_work  h5.elementor-icon-box-title, .how_it_work p.elementor-icon-box-description{
	color: white;
}

@media (max-width: 768px) {
	a.call-wrapper{
		font-size: 28px !important;
	}
	.svg-wrapper{
		width:50px !important;
	    height:50px !important;
	}
	.svg-wrapper svg{
		width: 25px !important;
		height: 25px !important;
	}
	.usp_section .icon-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.usp_section .icon-item {
		padding: 15px;
	}
	.usp_section .icon-wrapper svg {
		width: 30px;
		height: 30px;
	}
}
@media(max-width: 680px){
	.hero-section .content-col .ratting-wrapper p{
		flex-direction:column;
		align-items:center;
	}
    .usp_section .icon-item{
        justify-content: flex-start;
    }
}

