/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/


.ast-footer-copyright a {
    color:#B8D5F6;
}

.ast-footer-copyright a:hover {
    color:#93B9E5;
}

.ast-single-post .entry-content .elementor-widget-container a {
  text-decoration: none !important;
}

/* Post styling */

blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2em;
  line-height: 1.2em;
  border-color:#094785;
  font-style: normal;
}

blockquote p {
  margin-bottom: 0.2em;
}

/* Navigation Button styling */

.ast-header-button-1[data-section="section-hb-button-1"] {
     padding-top: 7px;
}

.ast-builder-button-wrap {
    position: relative;
    display: inline-block;
 }
  
.ast-custom-button-link {
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
 }
  
 .ast-custom-button {
    padding: 10px 20px;
    background-color: #ffffff; /* Default Astra theme button color */
    color: #ffffff;
    border-radius: 3px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
 }
  
  /* Create the sliding effect with pseudo-element */
 .ast-custom-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #094785; /* Darker shade for hover */
    transition: left 0.3s ease;
    z-index: -1;
}

/* Animate the pseudo-element on hover */
.ast-custom-button-link:hover .ast-custom-button:before {
  left: 0;
}


.elementor-button-icon {
  transition: transform 0.3s ease;
}

/* This moves the arrow to the right on hover */
.elementor-button:hover .elementor-button-icon {
    transform: translateX(10px);
}


  
/* Blue Slide Button styling */

/* Button hover effect styling */

.blue-slide .elementor-button {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
  }
  
  .blue-slide .elementor-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #094785; /* Blue color, adjust as needed */
    transition: left 0.3s ease;
    z-index: -1;
  }
  
  .blue-slide .elementor-button:hover::before {
    left: 0;
  }
  
  .blue-slide .elementor-button .elementor-button-icon svg,
  .blue-slide .elementor-button .elementor-button-text {
    transition: color 0.3s ease;
  }
  
  .blue-slide .elementor-button:hover .elementor-button-icon svg,
  .blue-slide .elementor-button:hover .elementor-button-text {
    color: white;
  }
  
  .blue-slide .elementor-button:hover .elementor-button-icon svg path {
    fill: white;
  } 


/* Gravity Forms Styling */

/* Field Labels */
.gfield_label {
    font-size: 20px !important;
    line-height: 1.4;
  }

/* Field Sub-labels (for name fields, address fields, etc.) */
.gfield_description, 
.ginput_complex label {
  font-size: 16px !important;
  line-height: 1.4;
}

/* Input Fields - Text, Select, Textarea */
.gfield input:not([type="radio"]):not([type="checkbox"]),
.gfield select,
.gfield textarea {
  font-size: 18px !;
  line-height: 1.4;
}

/* Checkbox & Radio Labels */
.gfield_checkbox label,
.gfield_radio label {
  font-size: 20px !important;
  line-height: 1.4;
}

/* Submit Button */
.gform_button {
  font-size: 20px !important;
  line-height: 1.4;
}


/* Input Fields - Text, Select, Textarea */
.gfield input:not([type="radio"]):not([type="checkbox"]),
.gfield select,
.gfield textarea {
  font-size: 19px;
  line-height: 1.4;
}

/* Gravity Forms Submit Button Styling */

/* Submit Button - Default */
.gform_wrapper .gform_button {
    background-color: #094785 !important;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 35px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
  }
  
  /* Submit Button - Hover State */
  .gform_wrapper .gform_button:hover {
    background-color: #015591 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
  }
  
  /* Submit Button - Active/Focus State */
  .gform_wrapper .gform_button:active,
  .gform_wrapper .gform_button:focus {
    background-color: #015591 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform: translateY(1px);
    outline: none;
  }