@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --color-primary: #7b3aed;
  --color-primary-dark: #9d56f7;
  --color-primary-light: #5b21b6;
  --color-secondary: #431885;
  --color-secondary-dark: #18092f;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-lato {
  font-family: "Lato", sans-serif;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

body {
  background: #0a0a0a;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.layout {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Common button style */
.btn {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-size: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  text-align: center;
}

/* Primary button */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
}

.highlight {
  /* background-color: var(--color-primary); */
  font-weight: bolder;
}

.testimonial-card {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.quote-icon {
  height: 50px;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  line-height: 5rem;
  color: #fff;
  background-color: #000;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stars {
  color: #FFD700;
}

.clip-bg{
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
}