:root {
  /* Colors */
  --primary: 215 60% 35%; /* #23508e */
  --primary-foreground: 0 0% 100%;
  
  --secondary: 175 45% 45%; /* #3fafa6 */
  --secondary-foreground: 0 0% 100%;

  --accent: 15 85% 60%; /* #f27a42 */
  --accent-foreground: 0 0% 100%;
  
  --background: 210 20% 99%;
  --foreground: 215 30% 20%;
  
  --muted: 210 20% 96%;
  --muted-foreground: 215 20% 45%;

  --border: 215 20% 90%;
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing & Radius */
  --radius-md: 0.5rem;
  --radius-lg: 0.8rem;
  --radius-full: 9999px;
  
  --container-width: 1200px;
  --header-height: 80px;
}


/* Wrapper Section */
.tjc-testimonials-section {
    background: hsl(var(--primary));
    padding: 80px 20px;
    color: white;
    width: 100%;
}

.tjc-container {
    max-width: 1200px;
    margin: auto;
}

/* testimonial text */
.tjc-testimonial {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Title */
.tjc-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #cdd6df;
}

/* Grid */
.tjc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

/* Card */
.tjc-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    backdrop-filter: blur(4px);
}

.tjc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transition: .1s ease-out;
}

/* Quote icon */
.tjc-quote {
    font-size: 28px;
    color: white;
}

/* Text */
.tjc-text {
    font-size: 15px;
    line-height: 1.6;
    /* color: #cdd6df; */
}

/* Profile Section */
.tjc-profile {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar Circle */
.tjc-avatar {
    width: 45px;
    height: 45px;
    background: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 15px;
}

/* Name */
.tjc-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #9ba4b4;
}

/* Role & Location */
.tjc-role {
    color: #9ba4b4;
    font-size: 14px;
}

.tjc-location {
    color: #9ba4b4;
    font-size: 13px;
    opacity: 0.9;
}
