@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/* ROOT VARIABLES */

:root {
  /* Font Family  */
  --font-family: "Work Sans", sans-serif;

  /* //colors  */
  --white: #fff;
  --black: #000;
  --body-bg-color: #fff;
  --primary-color: #ff6c38;
  --section-bg-color: #f5f5f5;
  --heading-color: #161616;
  --text-color: #3a3a3a;
  --primary-hover-color: #f7f6ff;
  --secondary-color: #f2f2f2;
  --tertiary-color: #fbfbfb;
  --gray-color: #f9f9fa;
  --blue-color: #0a2463;
  --yellow-color: #ffca42;

  --error-color: #ff0000;
  --success-color: #4caf50;
  --border-color: #e7e3f9;
  /* rgba color  */
  --card-box-shadow-color: rgba(0, 0, 0, 0.08);

  --overlay-color: rgba(149, 149, 149, 0.8);
  --input-border-color: rgba(210, 210, 216, 0.5);

  /* Font Size  */
  /* 1rem = 16px */
  --base-font-size: 1rem;
  --font-size-xs: calc(var(--base-font-size) * 0.75);
  /* 12px */
  --font-size-small: calc(var(--base-font-size) * 0.875);
  /* 14px */
  --font-size-15: calc(var(--base-font-size) * 0.9375);
  /* 15px */
  --font-size-18: calc(var(--base-font-size) * 1.125);
  /* 18px */
  --font-size-medium: calc(var(--base-font-size) * 1.25);
  /* 20px */
  --font-size-large: calc(var(--base-font-size) * 1.5);
  /* 24px */
  --font-size-xl: calc(var(--base-font-size) * 2.25);
  /* 36px */
  --font-size-xxl: calc(var(--base-font-size) * 3);
  /* 48px */

  --max-width: 1520px;
  /* 1520px */

  /* Font Weight  */
  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-medium: 500;
  --font-weight-regular: 400;

  /* Spacing  */
  --padding: 20px;
  /* 20px */
  --gapping: 16px;
}

/* CSS Reset */
* {
  outline: 0;
  box-sizing: border-box;
}

img {
  height: auto;
  width: 100%;
}

body {
  margin: 0;
  padding: 0 20px;
  background: var(--body-bg-color);
  font-family: var(--font-family);
  font-size: var(--base-font-size);
  color: var(--text-color);
  font-optical-sizing: auto;
  margin-top: 152px;
}

.container {
  max-width: 1520px;
  margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

p {
  line-height: 24px;
  color: var(--text-color);
}

ul {
  padding-left: var(--padding);
}

div {
  vertical-align: baseline;
  box-sizing: border-box;
}

.content {
  max-width: var(--max-width);
  margin: auto;
}

.content > * {
  margin-bottom: calc(var(--padding) * 3);
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

/* .sub__heading > * {
  margin-bottom: calc(var(--padding) * 1.8);
} */

ul {
  margin: 0;
}

.arrow-icon {
  color: var(--primary-color);
}

.sub__heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  display: block;
  position: relative;
  color: var(--heading-color);
  text-transform: capitalize;
  margin-bottom: 16px;
}

.line {
  width: calc(var(--padding) * 4.5);
  height: calc(var(--padding) * 0.15);
  background: var(--primary-hover-color);
}

.description {
  line-height: 130%;
}

button {
  cursor: pointer;
}

.main > *:first-child {
  margin-bottom: calc(var(--padding) * 6.2);
}

/* Header  */
header {
  background-color: transparent;
  height: auto;
  margin: 0;
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header_content {
  background-color: var(--white);
  max-width: var(--max-width);
  padding-left: 36px;
  padding-right: 36px;
  padding-top: 16px;
  padding-bottom: 16px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 0px 8px 0px #00000014;
}

.header__button {
  width: 100%;
  height: calc(var(--padding) * 2.8);
  /* 56px */
  max-width: calc(var(--padding) * 8.4);
  margin-bottom: 0;
  background: var(--white);
  color: var(--primary-color);
}

.header__button span {
  margin-left: calc(var(--padding) * 0.4);
}

.logo {
  margin: 0;
  display: flex;
  align-items: center;
  height: calc(10px * 6);
}

.header img {
  height: calc(var(--padding) * 2.8);
  width: auto;
  margin: 0;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.socials img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.navbar_right {
  display: flex;
  gap: 48px;
}

/* Hero Section */

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: var(--base-font-size);
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border: 0;
  border: 1px solid var(--primary-color);
  background: linear-gradient(124.96deg, #ffb938 -47.26%, #ff4238 128.47%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

.btn:hover{
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn img {
  width: 24px;
  height: 24px;
}

.btn_transparent {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: var(--base-font-size);
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border: 1px solid rgba(255, 108, 56, 1);
  background: transparent;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
 transition: all 0.3s ease-in-out;;
}

.btn_transparent:hover{
   border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn_transparent img {
  width: 24px;
  height: 24px;
}

.carousel_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: rgba(255, 103, 57, 0.2);
  border-color: rgba(255, 103, 57, 0.2);
}

.carousel_btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: white;
  border-color: rgba(190, 145, 249, 0.2);

  /* pointer-events: none; */
}

@media (max-width: 720px) {
  .header {
    top:0;
  }
  .header_content {
    padding: 12px 16px;

  }

  .header img{
    max-width: 190px;
  }

  .socials {
    display: none;
  }
  .navbar_right:last-child button {
    gap: 12px;
    padding: 12px;
  }
}

/* ---------------------------------------------------------------------------------------- */
/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  flex-wrap: wrap;
  /* makes it responsive */
}

.hero-content {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  gap: 48px;
  flex: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.primary {
  color: var(--primary-color);
  /* your primary color */
}

.hero-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.hero-clients {
  width: 100%;
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.hero-avatars {
  flex-shrink: 0;
}

.happy-clients {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(245, 245, 245, 1);
  width: 100%;
  padding: 8px 16px;
  border-radius: 12px;
}

.counter {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* .hero-buttons button {
  padding: 10px 20px;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
} */
/* 
.hero-buttons button:hover {
  background: #0625a7;
} */

/* .hero-image img {
  width: 100%;
  max-width: 750px;
  height: auto;
  border-radius: 12px;
} */

/* ✅ Responsive styles */
@media (min-width: 800px) and (max-width: 1280px) {
  .hero-clients {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 1280px) {
  .hero {
    gap: 20px;
  }
  .hero-image img {
    height: 495px;
  }
}

@media (max-width: 1024px) {
  .hero {
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }
  .hero-image img {
    height: auto;
  }
}

@media (max-width: 640px) {
  .hero-clients {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------- */
/* intro section */

/* Main section */
.intro_bg {
  background: #f5f5f5;
}

.intro {
  display: flex;
  gap: 48px;
  align-items: center;
  align-items: center;
  width: 100%;
  padding: 48px 0;
  flex-wrap: wrap;
  flex-direction: column;
}

/* Left content */
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  align-items: center;
}

.intro-label {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}

.intro-title {
  color: var(--heading-color);
  font-size: 36px;
  font-weight: bold;
}

.intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  text-align: center;
}

/* Right cards */
.intro-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.intro-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 490px;
  transition: all 0.3s ease-in-out;
}

.intro-card:hover{
   border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.intro-card-text h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
}

.intro-card-text p {
  font-size: 16px;
  color: var(--text-color);
}

/* ✅ Responsive styles */
@media (max-width: 1024px) {
  .intro {
    gap: 32px;
  }

  .intro-title {
    font-size: 28px;
  }
}

@media (min-width: 640px) and (max-width: 800px) {
  .intro-card {
    width: 490px;
  }
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 40px 20px;
  }

  .intro-content {
    align-items: center;
    max-width: 100%;
  }

  .intro-title {
    font-size: 24px;
  }

  .intro-text {
    font-size: 14px;
  }

  .intro-cards {
    justify-content: center;
  }
}

/* ---------------------------------------------------------------- */
/* chat section */

.chat {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 124px 0;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.chat-image {
  max-width: 772px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  height: 574px;
}

.chat-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  /* width: 716px; */
}

.chat-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  font-size: 16px;
  text-transform: uppercase;
}

.chat-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--heading-color);
}

.chat-description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
}

.chat-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-point {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--text-color);
}

.chat-point-text {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 20px;
  color: rgba(22, 22, 22, 1);
  font-weight: 600;
}

/* 📱 Mobile Responsive */
@media (min-width: 800px) and (max-width: 1280px) {
  .chat-image {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .chat {
    flex-direction: column;
    text-align: center;
    padding: 64px 16px;
  }

  .chat-image {
    max-width: 100%;
    order: -1;
    /* show image first */
    height: auto;
  }

  .chat-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .chat-description {
    font-size: 14px;
  }

  .chat-points {
    width: 365px;
    margin: auto;
    align-items: start;
  }

  .chat-point {
    justify-content: center;
  }

  .chat-label {
    justify-content: center;
  }
}

/* 📱 Small Phones */
@media (max-width: 480px) {
  .chat {
    padding: 48px 12px;
  }

  .chat-title {
    font-size: 24px;
  }

  .chat-point {
    font-size: 14px;
    gap: 12px;
  }
}

/* ----------------------------------------------------- */
/* grow */

.grow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 0;
  margin: 0 auto;
}

.grow-description {
  width: 900px;
}

.grow-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.grow-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  text-transform: uppercase;
}

.grow-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--heading-color);
  line-height: 1.3;
}

.grow-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.grow-card {
  background: #fff8f2;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 200px;
  width: 362px;
  flex-direction: column;

  /* smooth animation */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grow-card:hover {
  transform: rotate(-2deg);
  box-shadow: 0 10px 30px var(--primary-color);
}


.grow-card-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--heading-color);
  text-align: center;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .grow-title {
    font-size: 28px;
  }

  .grow-card {
    min-width: 220px;
    gap: 24px;
  }

  .grow-description {
    width: 100%;
  }
}

/* 📱 Mobile */
@media (max-width: 600px) {
  .grow {
    gap: 32px;
    padding: 48px 16px;
  }

  .grow-title {
    font-size: 24px;
  }

  .grow-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .grow-card-text {
    font-size: 18px;
  }
}

/* --------------------------------------------------------- */
/* process */

/* Main Section */
.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 124px 0px;
  text-align: center;
}

/* Header */
.process-header {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.process-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
}

.process-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--heading-color);
}

.process-description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
}

/* Steps Container */
.process-steps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

/* Single Step Card */
.process-card {
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid black;
  border-radius: 24px;
  background: #fff;
  max-width: 500px;
  flex: 1 1 300px;
  flex-direction: column;
   transition: all 0.3s ease-in-out;
}

.process-card:hover{
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-step-icon {
  height: 64px;
  width: 64px;
  border-radius: 16px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  color: var(--heading-color);
}

.process-step-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.process-step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  text-align: center;
}

.process-step-desc {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.5;
  text-align: center;
}

/* 📱 Responsive Styles */
@media (max-width: 1024px) {
  .process-title {
    font-size: 28px;
  }

  .process-description {
    font-size: 15px;
  }

  .process-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .process-step-text {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .process {
    gap: 32px;
    padding: 32px 16px;
  }

  .process-title {
    font-size: 24px;
  }

  .process-description {
    font-size: 14px;
  }

  .process-card {
    padding: 16px;
    gap: 12px;
  }

  .process-step-icon {
    height: 48px;
    width: 48px;
    font-size: 16px;
  }

  .process-step-title {
    font-size: 18px;
  }

  .process-step-desc {
    font-size: 14px;
  }
}

/* -------------------------------------------------------------------------- */
/* package */
/* Main Section */
.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: center;
  box-shadow: 0px 10px 20px 0px rgba(41, 41, 42, 0.07);
  border-radius: 8px;
  padding: 48px;
}

/* Header */
.pricing-header {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.pricing-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-color);
  text-transform: uppercase;
}

.pricing-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--heading-color);
}

.pricing-description {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 600px;
}

.pricing-tiles {
  display: flex;
  gap: 24px;
}

.pricing-cards {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.pricing-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
  text-align: left;
}

.pricing-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.best-value-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(124.96deg, #ffb938 -47.26%, #ff4238 128.47%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  line-height: 24px;
}

.plan-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.plan-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.plan-period {
  font-size: 16px;
  color: rgba(58, 58, 58, 1);
  margin-bottom: 13px;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  padding-left: 0px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  color: rgba(58, 58, 58, 1);
  gap: 12px;
}

.cta-button {
  width: 100%;
  background: linear-gradient(124.96deg, #ffb938 -47.26%, #ff4238 128.47%);
  color: var(--white);
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 28px;
  }

  .pricing-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .pricing {
    padding: 40px 20px;
  }

  .best-value-badge{
    font-size: 14px;
  }
}

/* -------------------------------------------------------------------------- */
/* faq */
.faq {
  padding-bottom: 100px;
}

.faq-wrapper {
  background: #f5f5f5;
  display: flex;
  gap: 48px;
  padding: 48px;
  align-items: center;
  justify-content: center;
  /* flex-wrap: wrap; */
  border-radius: 16px;
}

/* Left Column */
.faq-left {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-header {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.faq-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
}

.faq-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--heading-color);
}

.faq-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  max-width: 500px;
}

.faq-help {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-help-text {
  font-size: 16px;
  font-weight: 600;
  color: #3a3a3a;
}

.accordion {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 829px;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
  width: 765px;
  padding: 24px;
  border-radius: 12px;
}

.accordion-item.active {
  background: #f5f5f5;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

/* .accordion-header:focus {
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
} */

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: #64748b;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 16px;
}

.accordion-content.active {
  max-height: 500px;
}

.accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #64748b;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-wrapper {
    gap: 24px;
  }
  .accordion {
    width: 100%;
  }

  /* .faq-right {
    width: 100%;
  } */
  .accordion-item {
    width: 465px;
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .faq-wrapper {
    flex-wrap: wrap;
  }
  .accordion-item {
    padding: 0;
  }

  .accordion-header {
    padding: 0;
  }

  .accordion-item {
    width: 100%;
  }

  .faq-wrapper {
    padding: 20px;
  }

  .faq-header {
    align-items: center;
  }

  .faq-title {
    text-align: center;
  }

  .faq-description {
    text-align: center;
  }

  .faq-help {
    align-items: center;
  }

  .accordion-header {
    font-size: 1rem;
  }

  .accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .accordion {
    padding: 16px;
  }

  .accordion-header {
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------------------------------ */
/* manage */

.manage {
  padding: 48px 0;
  background: linear-gradient(124.96deg, #ffb938 -47.26%, #ff4238 128.47%);
  color: var(--text-color);
}

.manage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.manage-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.manage-label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  color: white;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}

.manage-title {
  font-size: 36px;
  font-weight: bold;
  color: white;
}

.manage-description {
  font-size: 16px;
  line-height: 1.5;
  color: white;
}

.btn_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  font-size: 16px;
  border-radius: 8px;
  padding: 16px;
  gap: 16px;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border: 1px solid var(--primary-color);
  background: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

.btn_cta:hover{
   border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .manage-title {
    font-size: 28px;
  }

  .manage-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .manage-content {
    padding: 0 12px;
  }

  .manage-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .manage-description {
    font-size: 14px;
  }

  /* .btn-transparent {
    padding: 10px 20px;
    font-size: 14px;
  } */
}

/* --------------------------------------------------------------------- */
/* footer */

.footer {
  background-color: #1d2b43;
  padding: 32px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Makes it responsive */
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #cccccc;
}

.footer-center {
  text-align: center;
  display: flex;
  gap: 36px;
  flex-direction: column;
}

.footer-logo img {
  width: 145px;
  height: 36px;
}

.footer-rights {
  color: white;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials svg {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.footer-socials svg:hover {
  opacity: 0.7;
}

/* 📱 Mobile */
@media (max-width: 930px) {
  .footer-center {
    gap: 16px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* global media query */
@media (max-width: 640px) {
  .hero-buttons {
    flex-direction: column;
  }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* testimonials */

/* User Reviews Section */

.accent_heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: var(--font-weight-semibold);
}

.accent_heading p {
  text-transform: uppercase;
  color: var(--primary-color);
}

.accent_heading img {
  width: 16px;
  height: 16px;
}

.user-reviews-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-reviews-content__heading {
  max-width: calc(var(--padding) * 16);
  flex-shrink: 0;
}

.user-reviews-content__heading > p {
  margin-bottom: calc(var(--padding) * 0.4);
}

.testimonial {
  box-shadow: #000;
}
/* .user-reviews-content > * {
  margin-bottom: var(--padding);
} */

.user-reviews-content__controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: calc(var(--padding) * 0.8);
  gap: 16px;
}

.user-reviews-content__controls > button {
  width: 48px;
  height: 48px;
}

/* .user-reviews-content__controls > button > span > svg {
  width: var(--font-size-large);
  height: var(--font-size-large);
} */

.user-reviews-content > *:last-child {
  margin-bottom: 0;
}

.user-reviews {
  padding: calc(var(--padding) * 1.7);
  /* 30px */
  background: var(--section-bg-color);
  color: var(--text-color);
  border-radius: 16px;
  margin: 124px 0px;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.reviews__grid {
  display: flex;
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
  text-align: center;
  flex-grow: 1;
  width: 100%;
  min-width: 0;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  gap: calc(var(--padding) * 0.5);
}

.review__item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex: 0 0 calc(33.33% - 10px);
  background-color: var(--white);
  border-radius: 16px;
  padding: 24px;
}

.review__item > * {
  margin-bottom: calc(var(--padding) * 0.8);
}

.review__item > *:last-child {
  margin-bottom: 0;
}

.review__item__header > * {
  margin-right: calc(var(--padding) * 0.8);
}

.review__item__header > *:last-child {
  margin-right: 0;
}

.review__image {
  width: calc(10px * 5.6);
  height: calc(10px * 5.6);
  border-radius: 50%;
  margin-right: 14px;
}

.review__item__header {
  display: flex;
  align-items: center;
  padding-top: calc(var(--padding) * 0.8);
}

.review__item__details {
  text-align: left;
}

.review__name {
  color: var(--black);
  font-weight: var(--font-weight-semibold);
  /* margin-bottom: calc(var(--padding) * 0.6); */
  font-size: 18px;
}

.review__title {
  font-size: var(--font-size-small);
}

.review__item p {
  line-height: 24px;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-small);
  text-align: left;
}

.rating {
  display: flex;
  justify-content: space-between;
}

.review__rating {
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 4px;
}

.review__rating .star {
  width: calc(10px * 1.8);
  height: calc(10px * 1.8);
}

@media (max-width: 640px) {
  .rating{
    flex-direction: column-reverse;
    gap: 12px;
  }

  .rating__icon{
    display: flex;
  }
}


/* Subscription Section */
/* .subscribe > * {
  margin-bottom: calc(var(--padding) * 1.2);
} */
.subscribe__item__list > * {
  margin-bottom: calc(var(--padding) * 0.8);
}

.subscribe__item__list > *:last-child {
  margin-bottom: 0;
}

.subscribe {
  background-color: var(--section-bg-color);
  padding: calc(var(--padding) * 1.8);
  color: var(--white);
  border-radius: 16px;
}

.subscribe__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.subscribe__item {
  flex-basis: calc(50% - 30px);
}

.subscribe__item:last-child {
  background-color: var(--section-bg-color);
  padding: calc(var(--padding) * 1.2);
  border-radius: 16px;
}

.subscribe__item > * {
  margin-bottom: calc(var(--padding) * 0.8);
}

.subscribe__item > *:last-child,
.subscribe .content > * {
  margin-bottom: 0;
}

.subscribe__item li,
.subscribe__item p {
  line-height: 24px;
  color: var(--white);
}

.subscribe__item li {
  font-weight: var(--font-weight-bold);
}

.subscribe__item h3 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-semibold);
}

.overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--overlay-color);
  z-index: 9999;
}

@media (max-width: 640px) {
  .user-reviews {
    padding: 40px 24px;
  }
  .user-reviews-content {
    flex-direction: column;
    gap: 32px;
  }
  .user-reviews-content__heading {
    margin-bottom: 0;
  }
}
