/*
Theme Name: GlamourBeauty
Theme URI:  https://www.wordpress.org
Author:     Astra
Author URI: https://www.wordpress.org
Template:   astra
Version:    1.0
License:    GNU General Public License v2 or later
*/

.service-pricing {
    font-family: 'Arial', sans-serif;
    margin-bottom: 30px;
}

.service-pricing h2 {
    font-size: 24px;
    color: #333;
    border-bottom: 2px solid #e0a80d;
    padding-bottom: 10px;
    display: inline-block;
	margin-left: 50px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    max-width: 500px;
}

.pricing-list li {
    font-size: 18px;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list span {
    color: #555;
    font-weight: 600;
}

@media(max-width: 550px) {
	#icon_wrapper {
		top: 25% !important;
	}
}


.gradient-heading {
  font-size: 3rem; 
  font-weight: 600;
  background: linear-gradient(45deg, #FF8A8A, #FFC76F, #FF65A3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientAnimation 2s infinite alternate;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.golden-underline {
  display: inline-block;
  position: relative;
  font-weight: 600;
}

.golden-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px; 
  width: 175px;
  height: 3px; 
  background: linear-gradient(90deg, #FFD700, #FFB400); /* Golden gradient */
  border-radius: 2px;
}



