/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

a {
	text-decoration: none !important;
}

.banner_section {
	overflow: hidden;
}

/* Container */
.subscribe-box p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #6e8bc5 0%, #5c7db4 100%);
  border-radius: 12px;
  padding: 2px;
  max-width: 700px;
  margin: 12px auto;
  position: relative;
}

.subscribe-box p::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px; /* border thickness */
  background: linear-gradient(90deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Email input */
.subscribe-box span input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-size: 13px;
  padding: 16px 20px 16px 35px;
  border-radius: 8px;
  outline: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Poppins", Sans-serif;
}

.subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Button */
.subscribe-btn {
  background-color: #00263a;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 17px 17px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", Sans-serif;
}

.subscribe-btn:hover {
  background-color: #7A6DAC;
}

.wpcf7-spinner {
	display: none;
}

.text-blue {
	color: rgba(70, 139, 201, 1);
}

.about_img {
  position: relative;
  display: inline-block;
}

.about_img::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 35px;
  width: 100%;
  height: 100%;
  background-color: rgba(161, 149, 227, 1);
  z-index: 0;
}

.about_img img {
  position: relative;
  z-index: 1;
  display: block;
}



.service_text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Form container */
.custom-form-wrapper {
    margin: 0 auto;
}

/* Input and Textarea styling */
.custom-form-wrapper p span input[type="text"],
.custom-form-wrapper p span input[type="email"],
.custom-form-wrapper p span textarea {
    width: 100%;
    padding: 16px 30px;
    margin-bottom: 2px;
    border: 0;
    border-radius: 11px;
    font-size: 14px;
    color: rgba(109, 109, 109, 1);
	background-color: rgba(229, 229, 229, 1);
	font-family: "Inter", Sans-serif;
}

.custom-form-wrapper p span textarea {
	height: 128px;
}

.custom-form-wrapper p span input[type="text"]:focus,
.custom-form-wrapper p span input[type="email"]:focus,
.custom-form-wrapper p span textarea:focus {
    border-color: #0066cc;
    outline: none;
}

/* Placeholder Styling */
.custom-form-wrapper p span input::placeholder,
.custom-form-wrapper p textarea::placeholder {
    color: rgba(109, 109, 109, 1);
    font-size: 14px;
}

/* Submit Button Styling */
.custom-form-wrapper input[type="submit"] {
    padding: 17px 30px;
    background-color: rgba(70, 139, 201, 1);
    color: #fff;
    border: none;
    border-radius: 11px;
    font-size: 22px;
    cursor: pointer;
    transition: background-color 0.3s ease;
	font-weight: 500;
	width: 100%;
	font-family: "Inter", Sans-serif;
	
}

.custom-form-wrapper input[type="submit"]:hover {
    background-color: #0055a5;
}

.our_services {
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(to right, rgba(163, 149, 227, 1), rgba(90, 162, 224, 1));
  background-position: bottom;
  background-size: 100% 2px; /* Adjust the size to match the border thickness */
  background-repeat: no-repeat;
  padding-bottom: 10px;
  max-width: fit-content !important;
}

.img_services {
	background-color: rgba(46, 90, 135, 1);
	padding: 16px 17px;
	border-radius: 50%;
}
	
	.img_services img {
		height: 42px !important;
		width: 42px !important;
	}



/* Responsive */

@media screen and (max-width: 1080px) {
	
	.about_img {
	   margin-left: 15px !important;
	}
	
	.about_img::before {
		left: -15px;
		top: 15px;
	}
}

@media (max-width: 768px) {
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form textarea {
        padding: 10px;
        font-size: 12px;
    }

    .wpcf7-form input[type="submit"] {
        font-size: 14px;
        padding: 12px 25px;
    }
}

@media (max-width: 600px) {
  .subscribe-box {
    flex-direction: column;
    gap: 8px;
    padding: 0;
  }
	
	.subscribe-box span input {
		padding: 10px 20px 10px 20px;
	}
	
	.subscribe-btn {
		padding: 10px 15px;
		font-size: 14px;
	}
	.subscribe-box p {
		margin: 5px 0 !important;
	}
	
	.img_services {
		padding: 12px 12px !important;
	}
	
	.img_services img {
		height: 30px !important;
		width: 30px !important;
	}
	
	.custom-form-wrapper p span input[type="text"], .custom-form-wrapper p span input[type="email"], .custom-form-wrapper p span textarea {
		padding: 12px 16px !important;
	}
	
	.custom-form-wrapper p span textarea {
		height: 90px;
	}
	
	

}
