/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

/* Base Typography */
body {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

/* ====================================
     Common Components
     ==================================== */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
}

.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.tag {
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Common Testimonial Styles */
.testimonial-highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.testimonial-highlight-secondary {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Testimonials Template 2: Feature Card Layout */
.testimonials-2 {
  padding: 100px 0;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.testimonials-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.testimonials-2 .testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  color: white;
}

.testimonials-2 .testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.testimonials-2 .testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonials-2 .testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonials-2 .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.testimonials-2 .author-info {
  color: var(--tertiary-color);
  margin-top: 20px;
}

.testimonials-2 .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
}

.testimonials-2 .author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-2 .highlight-tag {
  background: var(--secondary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonials-2 .highlight-text {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Media Queries for Testimonials */

@media (max-width: 768px) {
  .testimonials-2 h2 {
    font-size: 36px;
  }
}
