:root {
  --blue: #5635d4;
  --maintheme: #fa547e;
  --light-bg: #f8f9ff;
}
/* ===== VIDEO HERO WRAPPER ===== */
.video-wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* ===== NAVBAR ===== */
.navbar {
  background: transparent;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: var(--blue) !important;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  text-align: center;
}

.btn-main {
  background: var(--blue);
  color: #fff;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: 600;
}

.btn-main:hover {
  background: #3b27a3;
  color: #fff;
}

/*  */
.feature-card {
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.premium-badge {
  background: linear-gradient(45deg, #5635d4, #fa547e);
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/*  */
.device-section {
  position: relative;
  padding: 120px 0;
  background-image: url("img/office-grp.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.device-section .overlay {
  position: absolute;
  inset: 0;
  background: #231365a1;
}

.device-section .container {
  z-index: 2;
}

/* FAQ Section Styles */
.faq-section {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(86, 53, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(250, 84, 126, 0.1) 0%,
      transparent 50%
    );
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--blue), var(--maintheme));
  margin: 30px auto;
  border-radius: 2px;
}

/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 20px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 10px 30px rgba(86, 53, 212, 0.1);
  transform: translateY(-2px);
}

.accordion-header {
  border: none;
}

.accordion-button {
  background: white;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 25px 30px;
  border: none;
  box-shadow: none !important;
  border-radius: 12px !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: white;
  color: var(--blue);
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235635d4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-button:hover {
  color: var(--blue);
}

.accordion-body {
  padding: 25px 30px;
  background: white;
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
  border-top: 1px solid #eee;
}

.accordion-body p {
  margin-bottom: 0;
}

.question-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.question-icon i {
  color: white;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .section-header h1 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .accordion-button {
    padding: 20px;
    font-size: 1.1rem;
  }

  .accordion-body {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .section-header h1 {
    font-size: 1.8rem;
  }

  .question-icon {
    width: 35px;
    height: 35px;
    margin-right: 12px;
  }

  .question-icon i {
    font-size: 1rem;
  }
}
/* CUSTOMER REVIEWS */
.reviews-section {
  background-color: #fff;
}

.review-card {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
}
.review-card h5,
.review-card h6 {
  color: var(--blue);
}
.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  color: #f1f3f9;
  z-index: 0;
}

.review-card * {
  position: relative;
  z-index: 1;
}

/* FOOTER */
.footer {
  background-color: #313041;
  padding: 50px 0;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
}
.f p {
  color: white;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer .icon {
  margin-right: 10px;
}
.subscribe-box {
  background-color: #292837;
  border-radius: 5px;
  padding: 10px;
}
.subscribe-box input {
  background-color: #292837;
  border: none;
  text-align: center;
}
.subscribe-box input::placeholder {
  color: white;
}
.subscribe-btn {
  background-color: var(--blue);
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
}
.subscribe-btn:hover {
  background-color: #3b27a3;
}
