.hero-section{
	padding-block: 100px;
	padding-inline: 15px;
}
.hero-section .content-col h1.elementor-heading-title{
	color: var(--e-global-color-0b02602);
}
.hero-section .content-col .elementor-widget-container{
	color: var(--e-global-color-0b02602);
}
.hero-section .content-col .ratting-wrapper p{
	display: inline-flex;
	font-size: 20px;
	font-weight: 600;
	gap: 5px;
	color: #fff;
	border-width: 2px;
	border-style: solid;
	border-color: hotpink;
	border-image: initial;
	border-radius: 10px;
	padding: 6px 12px;
}
.hero-section .content-col .ratting-wrapper p i{
	color: rgb(255, 168, 0);
}
.hero-section .content-col .call-wrapper{
	display: inline-flex;
    align-items: center;
    color: var(--e-global-color-primary) !important;
    font-size: 44px !important;
    font-weight: 900 !important;
    transition: 0.5s ease-in-out;
    gap: 20px !important;
    margin-block: 18px !important;
}
.hero-section .content-col .call-wrapper .svg-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px !important;
	width: 70px !important;
	background: var(--e-global-color-primary);
	transition: 0.5s ease-in-out;
	border-radius: 50%;
	animation: 2s ease-in-out 0s infinite normal none running floatPulse;
}
.hero-section .content-col .call-wrapper .svg-wrapper svg {
	width: 35px;
	height: 35px;
	fill: var(--e-global-color-0b02602) !important;
	transition: 0.5s ease-in-out;
}

.hero-section .form-col .elementor-widget-wrap.elementor-element-populated{
	background-color: #fff;
	max-width: 500px;
	margin: 0 auto;
	border-radius: 20px;
	padding: 0px;
	height: fit-content;
}
.hero-section .form-col h2.elementor-heading-title{
	background-color: #ee1a89;
    color: #ffffff;
    font-size: 26px !important;
    padding-block: 10px;
	font-weight: 900;
    text-transform: uppercase;
	border-radius: 20px 20px 0 0;
}
.hero-section .form-col form{
	padding: 20px;
}
.hero-section .form-col form :is(input, textarea){
	border-color: #f977be !important;
    border-width: 0 0 2px 0 !important;
    border-radius: 0 !important;
	padding-inline: 5px !important;
	padding-block: 10px !important;
}


/* USP section */
    .usp-section {
	  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 30px;
    }

    .usp-section .usp-card {
      background: white;
      border-radius: 16px;
      padding: 10px 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.6s ease forwards;
    }

    .usp-section .usp-card:nth-child(2) { animation-delay: 0.2s; }
    .usp-section .usp-card:nth-child(3) { animation-delay: 0.3s; }
    .usp-section .usp-card:nth-child(1) { animation-delay: 0.1s; }
    .usp-section .usp-card:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .usp-section .usp-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #4f46e5 0%, #7c3aed 100%);
      transition: width 0.4s ease;
    }

    .usp-section .usp-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }

    .usp-section .usp-card:hover::before {
      width: 100%;
      opacity: 0.09;
    }

    .usp-section .icon-wrapper {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
      display: flex;
      align-items: center;
      justify-content: center;
/*       margin-bottom: 24px; */
      transition: all 0.4s ease;
    }

    .usp-section .usp-card:hover .icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 8px 16px rgba(79, 70, 229, 0.3);
    }

    .usp-section .icon-wrapper span {
      font-size: 32px;
    }
	.usp-section .icon-wrapper span img{
		width: 35px;
	}

    .usp-section h3 {
      font-size: 22px;
      font-weight: 700;
      color: #1e293b;
      margin-block: 12px;
    }

    .usp-section .card-number {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 48px;
      font-weight: 800;
      color: #f1f5f9;
      transition: all 0.4s ease;
    }

    .usp-card:hover .card-number {
      color: #e2e8f0;
      transform: scale(1.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .usp-section {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .usp-section .usp-card {
        padding: 32px 24px;
      }

      .usp-section h3 {
        font-size: 20px;
      }
    }

    .usp-section .usp-card:nth-child(1) .icon-wrapper {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }

    .usp-section .usp-card:nth-child(2) .icon-wrapper {
      background: linear-gradient(135deg, #77b255 0%, #77b255 100%);
    }

    .usp-section .usp-card:nth-child(3) .icon-wrapper {
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    .usp-section .usp-card:nth-child(4) .icon-wrapper {
      background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    }

    .usp-section .usp-card:nth-child(1)::before {
      background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    }

    .usp-section .usp-card:nth-child(2)::before {
      background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    }

    .usp-section .usp-card:nth-child(3)::before {
      background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    }

    .usp-section .usp-card:nth-child(4)::before {
      background: linear-gradient(180deg, #ec4899 0%, #db2777 100%);
    }

@keyframes floatPulse{
	0% {
    box-shadow: rgba(9, 201, 222, .59) 0px 0px 0px 0px;
	}
	50% {
		box-shadow: rgba(9, 201, 222, 0.02) 0px 0px 0px 20px;
	}
	100% {
		box-shadow: rgba(9, 201, 222, 0.02) 0px 0px 0px 0px;
	}
}

/* Our services */
.lp_our_services_section{
	padding-block: 80px;
}

/* work with you */
.work_with_section {
    padding: 80px 15px !important;
    position: relative;
    overflow: hidden;
}

.work_with_section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #0ebbcc38;
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.work_with_section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #0ebbcc38;
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}
.work_with_section .work_with_innersection .elementor-column .elementor-widget-wrap{
	background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border-bottom: 4px solid #ff1494;	
}
.work_with_section .work_with_innersection .elementor-container.elementor-column-gap-default{
	gap: 20px;
}
.work_with_section .work_with_innersection{margin-bottom: 20px;}
.work_with_section .work_with_innersection h4.elementor-icon-box-title{
	color: black;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
}
@media(max-width:820px){
	.work_with_section .work_with_innersection .elementor-column.elementor-col-33, .work_with_section .work_with_innersection .elementor-column.elementor-col-50{
		width: 100% !important;
	}
}
@media(max-width: 767px){
	.hero-section, .lp_our_services_section, .work_with_section{
		padding-block: 50px;
	}
	.hero-section .content-col .ratting-wrapper p{
		flex-direction: column;
	}
	.hero-section .content-col .call-wrapper .svg-wrapper{
		height: 50px !important;
    	width: 50px !important;
	}
	.hero-section .content-col .call-wrapper .svg-wrapper svg{
		width: 25px !important;
		height: 25px !important;
	}
	.hero-section .content-col .call-wrapper{
		font-size:30px !important;
	}
}