@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800&amp;display=swap");
@import url(plugins/css/bootstrap.min.css);

* {
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-primary: #7c3dae;
  --brand-secondary: #3a48ba;
  --brand-tertiary: #0164b6;
  --brand-gradient: linear-gradient(
    90deg,
    #7c3dae 0%,
    #3a48ba 50%,
    #0164b6 100%
  );
  --brand-gradient-hover: linear-gradient(
    90deg,
    #8e4fc0 0%,
    #4a5aca 50%,
    #1174c6 100%
  );
  --brand-soft: rgba(124, 61, 174, 0.08);
  --brand-soft-secondary: rgba(58, 72, 186, 0.08);
  --dark: #1e293b;
  --dark-light: #475569;
  --light: #ffffff;
  --light-gray: #f8fafc;
  --border-light: #e2e8f0;
  --shadow-sm:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 10px 15px -3px rgba(124, 61, 174, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================btn=========================  */
.new-btn-index {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.new-btn-index-2 {
  background: var(--brand-gradient);
  color: white;
  box-shadow: var(--shadow-sm);
}

.new-btn-index-2:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: black;
}

.new-btn-blog {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.new-btn-blog-2 {
  background: var(--brand-gradient);
  color: white;
  box-shadow: var(--shadow-sm);
}

.new-btn-blog-2:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: black;
}

.new-btn-1 {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.new-btn-11 {
  background: var(--brand-gradient);
  color: white;
  box-shadow: var(--shadow-sm);
}

.new-btn-11:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: black;
}
/* ============================end btn=========================  */
/* ============================faqs=========================  */
.accordion {
  max-width: 100%;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  padding: 15px;
  cursor: pointer;
  background-color: #f9f9f9;
  border: none;
  text-align: left;
  outline: none;
  width: 100%;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: #e3e3e3;
}

.accordion-header h2 {
  margin: 0;
}

.accordion-panel {
  display: none;
  padding: 15px;
}

.accordion-item.active .accordion-header {
  background-color: #ddd;
}

.accordion-item.active .accordion-panel {
  display: block;
}

/* FAQ Section */
.new-faq-section {
  padding: 60px 0;
}

.new-faq-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
}

.new-faq-subtitle {
  color: #666;
  font-size: 15px;
}

/* Accordion */
.new-faq-accordion {
  max-width: 100%;
  margin: auto;
}

.new-faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Hide checkbox */
.new-faq-item input {
  display: none;
}

/* Question */
.new-faq-question {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #882bcd;
}

/* new-faq-icon */
.new-faq-question .new-faq-icon {
  width: 14px;
  height: 14px;
  border-right: 2px solid #882bcd;
  border-bottom: 2px solid #882bcd;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

/* Answer */
.new-faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.new-faq-answer p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: left;
}

.new-faq-link {
  color: #882bcd;
  font-weight: 500;
  text-decoration: none;
}

/* Active State */
.new-faq-item input:checked ~ .new-faq-answer {
  max-height: 500px;
  padding: 0 22px 18px;
}

.new-faq-item input:checked ~ .new-faq-question .new-faq-icon {
  transform: rotate(-135deg);
}

/* Mobile */
@media (max-width: 768px) {
  .new-faq-title {
    font-size: 22px;
  }

  .new-faq-question {
    font-size: 15px;
  }
}
