/* 
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 */
.gradient-text{
  background: linear-gradient(45deg, #7F30CB, #01DCBA);
  
  /* This clips the background to the text */
  -webkit-background-clip: text;
  background-clip: text;
  
  /* This makes the actual text transparent so the background shows through */
  -webkit-text-fill-color: transparent;
 
  font-weight: bold;
  font-size: 24px;
}

.gradient-btn a {
  /* Applying the same 45-degree gradient from your image */
  background: linear-gradient(45deg, #7f30cb, #01dcba);
  
  /* Text styling */
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* Button Shape & Sizing */
  padding: 12px 28px;
  border-radius: 50px; /* Rounded pill shape common in modern UI */
  border: none;
  cursor: pointer;
  display: inline-block;
  
  /* Smooth transition for hover effects */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect to make it interactive */
.gradient-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(127, 48, 203, 0.3);
	color: #fff !important;
}

.gradient-form button {
  /* Applying the same 45-degree gradient from your image */
  background: linear-gradient(45deg, #7f30cb, #01dcba);
  
  /* Text styling */
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* Button Shape & Sizing */
  padding: 12px 28px;
  border-radius: 50px; /* Rounded pill shape common in modern UI */
  border: none;
  cursor: pointer;
  display: inline-block;
  
  /* Smooth transition for hover effects */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect to make it interactive */
.gradient-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(127, 48, 203, 0.3);
	color: #fff !important;
}