.gradient-text h1 {
    background: linear-gradient(108deg, #9AEAC6 -1%, #FF6F61 107%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.results-section-1 i{
	background-color:#8bf5c033;
	border-radius:12px;
justify-content:center;
	align-items:center !important;
	width:48px;
	height:48px;
	padding:10px;
}
.results-section i{
	background-color:#f3737333;
	border-radius:12px;
justify-content:center !important;
	align-items:center !important;
	width:48px;
	height:48px;
	padding:10px
}
.bounce {
  display: inline-block;         /* inline-block ya block */
  animation: bounce 1.6s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);    /* normal position */
  }
  50% {
    transform: translateY(-20px); /* upar ki taraf */
  }
}

/* Label Styling */
.wpcf7-form .form-label {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin: 12px 0px;
    font-weight: 700;
}

/* Input, Select, Textarea Styling */
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="number"], .wpcf7-form select, .wpcf7-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 16px 10px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Focused State */
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: #f37373; /* Red-pink outline */
  outline: none;
  box-shadow: 0 0 0 2px rgba(243, 115, 115, 0.3);
}

/* Button Styling */
.wpcf7-form input[type="submit"], .wpcf7-form .btn {
    background-color: #8bf5c0;
    border: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 17px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 30px;
}

/* Button Hover */
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .btn:hover {
  background-color: #8BF5C0E6;
}

/* Dropdown option hover background */
.wpcf7-form select option:hover {
  background-color: #f37373 !important;
  color: #fff !important; \
}
.wpcf7 form.sent .wpcf7-response-output {

    color: white;
}



.wpcf7-form .row {
  display: flex;
  gap: 15px;
}

.wpcf7-form .col-md-6 {
  flex: 1;
}

.wpcf7-form input,
.wpcf7-form select {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}


.wpcf7-form .btn {
  width: 100%;
  padding: 15px;
  border-radius: 25px;
  font-weight: bold;
}

@media (max-width: 767px) {
	
	.wpcf7-form .row {
		flex-wrap:wrap !important;
		
	}

.wpcf7-form .col-md-6 {
	flex:unset;
  width:100% !important;
}
}

