/*
 Theme Name: Astra Child
 Theme URI: https://wpastra.com/
 Description: Child theme for Astra
 Author: Your Name
 Author URI: https://yourwebsite.com
 Template: astra
 Version: 1.0.0
 Text Domain: astra-child
*/

/* Your custom CSS goes below */

/* HEADER WRAPPER – FULL VIEWPORT */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  /*transform: translateX(-50%);*/
  width: 100%;              /* 🔥 real full width */
  max-width: 100%;
  z-index: 9999;
  pointer-events: none;
  transition: all 0.35s ease;
}

/* INNER CONTENT */
.header-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 18px 40px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.35s ease;
}

/* AFTER SCROLL → BOXED 85% */
.site-header.scrolled {
  top: 16px;
}

.site-header.scrolled .header-inner {
  /*width: 85%;*/
  /*max-width: 85%;*/
  border-radius: 20px;
  padding: 16px 24px;
}
.cta {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.testimonial-item {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-item img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 15px;
}

.testimonial-content {
	font-size: 15px;
	color: #555;
	margin-bottom: 10px;
}

.testimonial-name {
	font-weight: 600;
	color: #111;
}