/* ================ header css (start) ================== */
.navbar-nav .nav-item {
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: rgb(255, 255, 255);
  padding: 0.5rem 1rem;
  font-weight: 500;
  position: relative;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.75rem;
  margin-left: 8px;
  text-decoration: none;
  text-align: left !important;
}

a.d-flex.align-items-center {
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: rgb(23, 68, 98);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(45, 128, 184, 0.3);
  background: rgb(132, 176, 203);
}

.logo-img {
  height: 100px;
  width: 100px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .logo-img {
    height: 60px;
    width: 60px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 50px;
    width: 50px;
  }
}

/* ================ header css (end) ================== */

/* ================ index css (start) ================== */
:root {
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4895ef;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --randpass-primary-color: #4a6bff;
  --dark-shade: #343a40;
  --white-color: #fff;
}

body {
  background-color: #f5f7ff !important;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

.box {
  padding: 40px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.box.bg-primary:hover {
  background: linear-gradient(135deg, #0b5ed7, #0d6efd) !important;
  color: #212529 !important;
}

.box.bg-success:hover {
  background: linear-gradient(135deg, #157347, #198754) !important;
  color: #212529 !important;
}

.box.bg-warning:hover {
  background: linear-gradient(135deg, #ffca2c, #ffc107) !important;
  color: #212529 !important;
}

.box.bg-danger:hover {
  background: linear-gradient(135deg, #bb2d3b, #dc3545) !important;
  color: #212529 !important;
}

.into-para {
  text-align: center;
  margin: 30px auto 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.editor-container {
  min-height: 300px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: white;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
}

.editor-container:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(72, 149, 239, 0.2);
}

.stat-card {
  background: white;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-format {
  border-radius: 6px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-format.active {
  background-color: var(--primary-color);
  color: white;
}

.btn-action {
  border-radius: 8px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.font-select {
  border-radius: 6px;
  border: 1px solid #dee2e6;
  padding: 0.375rem 0.75rem;
}

.progress-bar {
  background-color: var(--accent-color);
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 32px;
}

/* Help button styles */
.help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.help-btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .stat-value {
    font-size: 1.5rem;
  }
}

/* Intro.js Modern Styling */
.introjs-overlay {
  background-color: rgba(33, 37, 41, 0.7) !important;
  backdrop-filter: blur(2px);
}

.introjs-tooltip {
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  max-width: 360px;
  /* font-family: "Segoe UI", system-ui, -apple-system, sans-serif; */
  background: white !important;
}

.introjs-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.introjs-tooltip-progress {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}

.introjs-skipbutton {
  color: #6c757d;
  font-size: 15px !important;
  /* Updated font size */
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px !important;
  /* Updated padding */
  border-radius: 4px;
  transition: all 0.2s ease;
}

.introjs-skipbutton:hover {
  color: #495057;
  background: #f1f3f5;
  text-decoration: none;
}

.introjs-tooltiptext {
  font-size: 15px;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 24px;
  padding: 0;
}

.introjs-tooltipbuttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: none !important;
  padding: 0 !important;
}

.introjs-button {
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  flex: 1;
  text-align: center;
}

.introjs-prevbutton {
  background-color: white !important;
  color: #495057 !important;
  border: 1px solid #dee2e6 !important;
}

.introjs-prevbutton:hover {
  background-color: #f8f9fa !important;
  border-color: #ced4da !important;
}

.introjs-nextbutton {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: 1px solid var(--primary-color) !important;
}

.introjs-nextbutton:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-1px);
}

.introjs-helperLayer {
  border-radius: 8px !important;
  box-shadow: 0 0 0 9999px rgba(67, 97, 238, 0.2),
    0 0 0 2px var(--primary-color), 0 4px 12px rgba(67, 97, 238, 0.3) !important;
  transition: all 0.3s ease;
}

.introjs-arrow {
  border-width: 10px;
}

/* Pulse animation for highlighted element */
@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(67, 97, 238, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
  }
}

.introjs-helperLayer {
  animation: pulse-highlight 2s infinite;
}

.how-to-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.how-to-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.how-to-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
}

.how-to-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.how-to-card p {
  color: #555;
  font-size: 0.95rem;
}

#services-container i.responsive-icon {
  font-size: 60px !important;
}

/* Free Word Counter Tool – Simple & Fast Online Text Analysis styles */
.feature-card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.process-card {
  border-radius: 10px;
  background-color: #edf1f4;
  border-left: 4px solid var(--warning);
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon i {
  font-size: 2rem;
  color: white;
}

.benefits-card {
  border-radius: 10px;
  background-color: #edf1f4;
}

.benefit-item {
  padding: 15px;
}

.additional-section {
  background-color: #edf1f4;
}

/* Why Use an Online Text Tool Section Styles */
.usage-card {
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.usage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.usage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.usage-icon i {
  font-size: 1.8rem;
  color: white;
}

.usage-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.usage-card p {
  color: #666;
  margin-bottom: 0;
}

/* How a Free Word Counter Tool Improves Your Writing Section Styles */
.improvement-card {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
}

.improvement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.improvement-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.improvement-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.improvement-icon i {
  font-size: 1.5rem;
  color: white;
}

.improvement-header h3 {
  color: var(--primary-color);
  margin-bottom: 0;
}

.improvement-body p {
  color: #666;
  margin-bottom: 0;
}

.use-case-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.use-case-card {
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

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

.use-case-content h5 {
  color: var(--primary-color);
  margin-bottom: 5px;
}

.use-case-content p {
  color: #666;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.conclusion-box {
  border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
  .improvement-header {
    flex-direction: column;
    text-align: center;
  }

  .improvement-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .use-case-card {
    flex-direction: column;
    text-align: center;
  }

  .use-case-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Who Can Benefit from an Online Word Counter? Section Styles */
.beneficiary-card {
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.beneficiary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.beneficiary-card:hover::before {
  opacity: 1;
}

.beneficiary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.beneficiary-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.beneficiary-icon i {
  font-size: 1.8rem;
  color: white;
}

.beneficiary-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.beneficiary-card p {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.beneficiary-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.beneficiary-features .badge {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 15px;
}

.summary-box {
  position: relative;
  overflow: hidden;
}

.summary-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  z-index: 1;
}

.summary-icon {
  font-size: 3rem;
  position: relative;
  z-index: 2;
}

.summary-box h3 {
  position: relative;
  z-index: 2;
}

.summary-box p {
  position: relative;
  z-index: 2;
  opacity: 0.9;
}

.feature-point {
  position: relative;
  z-index: 2;
  padding: 15px;
}

.feature-point i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.feature-point h5 {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .beneficiary-features {
    justify-content: center;
  }

  .feature-point {
    margin-bottom: 20px;
  }
}

/* Tips for Getting the Most Out of a Word Counter Section Styles */
.tip-card {
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tip-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.tip-content h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.tip-content p {
  color: #666;
  margin-bottom: 0;
}

.tip-summary {
  border-left: 4px solid var(--warning);
}
.faq-section {
  padding: 60px 20px;
  background: #f9fbff;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  text-align: left;
  border: none;
  outline: none;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-question:hover {
  background: #f1f5ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding: 15px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.support-cta {
  border-left: 4px solid var(--accent-color);
}

.support-cta a {
  transition: all 0.3s ease;
}

.support-cta a:hover {
  background-color: var(--accent-color);
  color: white;
}

/* Animation for collapsing */
.collapsing {
  transition: height 0.3s ease;
}

@media (max-width: 768px) {
  .text-shadow {
    font-size: 22px;
  }

}

/* ================ index css (end) ================== */

/* ================ random password css (start) ================== */
.passcontainer {
  max-width: 600px !important;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#passtitle {
  color: var(--randpass-primary-color);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 32px;
}

.password-box {
  background-color: var(--white-color);
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  border: 1px solid #dee2e6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.password-box:hover {
  background-color: #e9ecef;
}

.btn-primary {
  background-color: var(--randpass-primary-color);
  border: none;
  width: 100%;
  padding: 0.75rem;
  font-weight: 500;
  margin: 1rem 0;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3a56d4;
  transform: translateY(-2px);
}

.options-group {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
}

.options-group+.options-group {
  margin-top: 1.5rem;
}

.mode-section {
  background-color: #e9f0ff;
}

.include-section {
  background-color: #f1f6ff;
}

.options-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.length-value {
  font-weight: 600;
  color: var(--randpass-primary-color);
}

.form-range {
  width: 100%;
  height: 8px;
  margin-top: 0.5rem;
}

.form-range::-webkit-slider-thumb {
  background: var(--randpass-primary-color);
}

.mode-options,
.include-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.option-radio,
.option-checkbox {
  display: none;
}

.option-label,
.checkbox-label {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #dee2e6;
  background-color: var(--white-color);
}

.option-radio:checked+.option-label {
  background-color: var(--randpass-primary-color);
  color: white;
  border-color: var(--randpass-primary-color);
}

.option-checkbox:checked+.checkbox-label {
  background-color: var(--randpass-primary-color);
  color: white;
  border-color: var(--randpass-primary-color);
}

.section-title {
  font-size: 1rem;
  color: var(--randpass-primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.2rem;
}

.checkbox-label.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Intro.js Modern Styling */
.introjs-overlay {
  background-color: rgba(33, 37, 41, 0.7) !important;
  backdrop-filter: blur(2px);
}

.introjs-tooltip {
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  max-width: 360px;
  /* font-family: "Segoe UI", system-ui, -apple-system, sans-serif; */
  background: white !important;
}

.introjs-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.introjs-skipbutton {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.introjs-skipbutton:hover {
  color: #495057;
  background: #f1f3f5;
  text-decoration: none;
}

.introjs-tooltiptext {
  font-size: 15px;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 24px;
  padding: 0;
}

.introjs-tooltipbuttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: none !important;
  padding: 0 !important;
}

.introjs-button {
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  flex: 1;
  text-align: center;
}

.introjs-prevbutton {
  background-color: white !important;
  color: #495057 !important;
  border: 1px solid #dee2e6 !important;
}

.introjs-prevbutton:hover {
  background-color: #f8f9fa !important;
  border-color: #ced4da !important;
}

.introjs-nextbutton {
  background-color: var(--randpass-primary-color) !important;
  color: white !important;
  border: 1px solid var(--randpass-primary-color) !important;
}

.introjs-nextbutton:hover {
  background-color: #3a56d4 !important;
  border-color: #3a56d4 !important;
  transform: translateY(-1px);
}

.introjs-helperLayer {
  border-radius: 8px !important;
  box-shadow: 0 0 0 9999px rgba(67, 97, 238, 0.2),
    0 0 0 2px var(--randpass-primary-color), 0 4px 12px rgba(67, 97, 238, 0.3) !important;
  transition: all 0.3s ease;
}

.introjs-arrow {
  border-width: 10px;
}

/* Pulse animation for highlighted element */
@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(67, 97, 238, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
  }
}

.introjs-helperLayer {
  animation: pulse-highlight 2s infinite;
}

/* Help button styles */
.help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--randpass-primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.help-btn:hover {
  background-color: #3a56d4;
  transform: scale(1.1);
}

.strength-meter {
  margin-top: 20px;
  height: 10px;
  background: #e9ecef;
  border-radius: 5px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.strength-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #6c757d;
}

.content-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.content-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.content-header h2 {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.content-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.features-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.features-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3498db;
}

.features-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.features-card p {
  color: #6c757d;
  font-size: 0.95rem;
}

.security-section {
  background: #2c3e50;
  color: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 2.5rem;
}

.security-section h3 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.security-icon {
  font-size: 40px;
  color: #3498db;
}

.cta-button {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
  color: white;
}

@media (max-width: 768px) {
  .content-section {
    padding: 1.5rem;
  }

  .content-header h2 {
    font-size: 1.8rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.content-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.content-section .container {
  max-width: 900px;
}

.content-header {
  text-align: center;
  margin-bottom: 50px;
}

.content-header h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.content-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  border-radius: 2px;
}

.content-header p {
  color: #5a6c7d;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.content-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  color: white;
  font-size: 1.8rem;
}

.feature-content h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

/* .feature-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #3498db;
  border-radius: 2px;
} */

.feature-content p {
  color: #5a6c7d;
  line-height: 1.7;
  font-size: 1.05rem;
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #5a6c7d;
  line-height: 1.6;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

.content-section strong {
  color: #3498db;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }

  .content-header h2 {
    font-size: 1.8rem;
  }

  .content-feature {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }

  .feature-content h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.content-section.mt-4 {
  background: #fff;
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
}

.benefits-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-header h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.benefits-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  border-radius: 2px;
}

.benefits-header p {
  color: #5a6c7d;
  font-size: 1.1rem;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
  position: relative;
  overflow: hidden;
}

.benefit-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(52, 152, 219, 0.03) 0%,
      rgba(46, 204, 113, 0.03) 100%);
  z-index: 0;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left-color: #2ea4cc;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.benefit-content {
  position: relative;
  z-index: 1;
}

.benefit-content h3 {
  color: #2c3e50;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

/* .benefit-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #3498db;
  border-radius: 2px;
  transition: width 0.3s ease;
} */

.benefit-card:hover .benefit-content h3:after {
  width: 50px;
}

.benefit-content p {
  color: #5a6c7d;
  line-height: 1.7;
  font-size: 1.05rem;
}

.benefit-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
}

.benefit-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #5a6c7d;
  line-height: 1.6;
  font-size: 1.05rem;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
}

.content-section.mt-4 strong {
  color: #3498db;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card {
    padding: 20px;
  }

  .benefits-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .content-section.mt-4 {
    padding: 40px 0;
  }

  .benefits-header {
    margin-bottom: 30px;
  }

  .benefits-header p {
    font-size: 1rem;
  }
}

.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  color: #2c3e50;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.faq-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  border-radius: 2px;
}

.faq-header p {
  color: #5a6c7d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f3f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #3498db;
}

.faq-question:hover .faq-toggle {
  background: #ffffff;
  color: rgb(0, 0, 0);
}

.faq-toggle i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 500px;
}

.faq-answer p {
  color: #5a6c7d;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

.faq-section strong {
  color: #3498db;
  font-weight: 600;
}

/* Animation for FAQ items */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  animation: fadeIn 0.5s ease forwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

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

  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 15px 20px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 576px) {
  .faq-header p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 15px 15px;
  }
}

/* ================ random password css (end) ================== */

/* ================ random number css (start) ================== */
.result-box {
  font-size: 25px;
  padding: 20px;
  border-radius: 10px;
  background: #fff3cd;
  color: #856404;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Help button styles */
.help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #4361ee;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.help-btn:hover {
  background-color: #3f37c9;
  transform: scale(1.1);
}

/* Intro.js Modern Styling */
.introjs-overlay {
  background-color: rgba(33, 37, 41, 0.7) !important;
  backdrop-filter: blur(2px);
}

.introjs-tooltip {
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  max-width: 360px;
  /* font-family: "Segoe UI", system-ui, -apple-system, sans-serif; */
  background: white !important;
}

.introjs-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.introjs-skipbutton {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.introjs-skipbutton:hover {
  color: #495057;
  background: #f1f3f5;
  text-decoration: none;
}

.introjs-tooltiptext {
  font-size: 15px;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 24px;
  padding: 0;
}

.introjs-tooltipbuttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: none !important;
  padding: 0 !important;
}

.introjs-button {
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  flex: 1;
  text-align: center;
}

.introjs-prevbutton {
  background-color: white !important;
  color: #495057 !important;
  border: 1px solid #dee2e6 !important;
}

.introjs-prevbutton:hover {
  background-color: #f8f9fa !important;
  border-color: #ced4da !important;
}

.introjs-nextbutton {
  background-color: #4361ee !important;
  color: white !important;
  border: 1px solid #4361ee !important;
}

.introjs-nextbutton:hover {
  background-color: #3f37c9 !important;
  border-color: #3f37c9 !important;
  transform: translateY(-1px);
}

.introjs-helperLayer {
  border-radius: 8px !important;
  box-shadow: 0 0 0 9999px rgba(67, 97, 238, 0.2), 0 0 0 2px #4361ee,
    0 4px 12px rgba(67, 97, 238, 0.3) !important;
  transition: all 0.3s ease;
}

.introjs-arrow {
  border-width: 10px;
}

/* Pulse animation for highlighted element */
@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(67, 97, 238, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
  }
}

.introjs-helperLayer {
  animation: pulse-highlight 2s infinite;
}

/* Generator tweaks */
.generator-card {
  max-width: 640px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* Mode toggle buttons */
.btn-group .btn-outline-primary {
  border-color: #0d6efd;
  color: #0d6efd;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}


.btn-group .btn-outline-primary.active {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.4);
}

/* Result box responsive sizes */
.result-box {
  font-size: 25px;
  /* default */
  padding: 20px;
  border-radius: 10px;
  background: #fff3cd;
  color: #856404;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Multiple numbers result styling */
#multiResult .badge {
  font-size: 1rem !important;
  padding: 0.5rem 0.75rem !important;
  margin: 0.25rem !important;
  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* How-to card basics (if you don't already have) */
.how-to-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  align-items: flex-start;
}

.how-to-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
}

.how-to-card h3 {
  margin-top: 6px;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.how-to-card p {
  margin-bottom: 0;
  color: #495057;
}

/* Tablet-specific tweaks: make generator bigger, result text larger, cards align */
@media (min-width: 768px) and (max-width: 991px) {
  .generator-card {
    padding: 2.5rem;
  }

  .result-box {
    font-size: 2.5rem;
    padding: 26px;
  }

  .how-to-card {
    min-height: 200px;
    padding: 18px;
  }
}

/* Small desktops / large screens: keep nice spacing */
@media (min-width: 992px) {
  .result-box {
    font-size: 25px;
  }

  .how-to-card {
    min-height: 220px;
  }
}

/* Make Help button not cover content on small screens */
@media (max-width: 576px) {
  .help-btn {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 16px;
  }

  .result-box {
    font-size: 20px;
    padding: 16px;
  }
}

/* Additional styles for the new section */
.feature-icon-large {
  background-color: #f8f9fa;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.usage-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

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

.usage-icon {
  color: #6c757d;
}

.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Styles for the new free tool section */
.free-badge {
  width: 140px;
  height: 140px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-highlight {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

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

.cta-box {
  border: 2px dashed #dee2e6;
}

.step-number {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
}

.step-text {
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .steps .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .step {
    margin-bottom: 2rem;
    margin-right: 0 !important;
  }

  .free-badge {
    width: 120px;
    height: 120px;
    margin-top: 1.5rem;
  }
}

/* Styles for the Why Choose Us section */
.perfection-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

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

.perfection-icon {
  color: #6c757d;
}

.versatility-box {
  border-left: 4px solid #0d6efd;
  border-right: 4px solid #0d6efd;
}

.badge {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .versatility-box {
    padding: 2rem !important;
  }

  .badge {
    display: block;
    margin-bottom: 0.5rem;
    margin-right: 0 !important;
    width: 100%;
  }
}

/* Styles for the FAQ section */
.accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #0d6efd;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  background-color: #f8f9fa;
}

.support-box {
  border-top: 3px solid #0d6efd;
  border-bottom: 3px solid #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .accordion-button {
    font-size: 1rem !important;
    padding: 1rem;
  }

  .fa-2x {
    font-size: 1.5em !important;
  }

  h2 {
    font-size: 25px !important;
    /* margin-top: 10px; */
  }
}

/* Feature Cards Styling */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-success));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Minimalist Features Styling */
.minimal-feature-card {
  padding: 2rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  height: 100%;
}

.minimal-feature-card:hover {
  border-color: var(--bs-primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.minimal-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: var(--bs-primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.minimal-feature-card:hover .minimal-icon-wrapper {
  background: linear-gradient(135deg, var(--bs-primary), #6f42c1);
  color: white;
  transform: scale(1.05);
}

.minimal-feature-card h4 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.minimal-feature-card p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Badge Styling */
.badge {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .minimal-feature-card {
    padding: 1.5rem 1rem;
  }

  .minimal-icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-right: 1rem;
  }

  .minimal-feature-card h4 {
    font-size: 1.1rem;
  }

  .use-case-tag {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .minimal-feature-card {
    text-align: center;
  }

  .minimal-feature-card .d-flex {
    flex-direction: column;
    align-items: center;
  }

  .minimal-icon-wrapper {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .use-case-tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* ================ random number css (end) ================== */

/* ================ spin wheel css (start) ================== */
.wheel-container {
  width: 400px !important;
  height: 400px !important;
  margin: 0 auto;
  position: relative;
}

.wheel {
  width: 400px !important;
  height: 400px !important;
  max-width: 100%;
  max-height: 100%;
  transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  transform-origin: center;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.wheel-pointer {
  position: absolute;
  top: 180px;
  /* Adjusted for 400px wheel */
  left: 100%;
  transform: rotate(90deg);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 30px solid var(--primary-color);
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.wheel.spinning {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#btnspin {
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  border: none;
  padding: 12px 30px;
  font-size: clamp(1rem, 3vw, 1.2rem);
  /* Responsive font size */
  border-radius: 50px;
  margin: 20px auto;
  box-shadow: 0 4px 15px rgba(74, 107, 255, 0.3);
  transition: all 0.3s;
  color: white;
  font-weight: 600;
  width: 80%;
  max-width: 300px;
  display: block;
}

#btnspin:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 107, 255, 0.4);
}

#btnspin:active {
  transform: translateY(1px);
}

.options-container {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 8px;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s;
}

.option-item:hover {
  background-color: #e9ecef;
  transform: translateX(5px);
}

.option-text {
  font-weight: 500;
  color: var(--dark-color);
  font-size: clamp(0.9rem, 2vw, 1rem);
  word-break: break-word;
  padding-right: 10px;
}

.btn-remove {
  background-color: #ff6b6b;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* Clear button */

.btn-remove:hover {
  background-color: #ff5252;
}

.btn-clear {
  width: 100%;
  margin-top: 10px;
  background-color: #6c757d !important;
  color: white !important;
  border: none !important;
  padding: 10px !important;
  border-radius: 8px !important;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-clear:hover {
  background-color: #5a6268;
}

/* Main container adjustments */
.container.py-5 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

/* Title adjustments */
/* h1.text-center {
  margin-bottom: 50px !important;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
} */

/* How-to section adjustments */
.how-to-use {
  padding: 30px 15px;
  margin: 40px 0;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 30px;
}

.step-card {
  margin-bottom: 15px;
}

.step-title {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
}

.step-description {
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* SEO content adjustments */
.seo-content {
  padding: 25px 15px;
  margin: 40px 0;
}

.seo-content h2 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
}

.seo-content p {
  font-size: clamp(1rem, 2vw, 1.1rem);
}

/* Keyword tags */
.keyword-tag {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  padding: 6px 12px;
}

/* Help button */
.help-btn {
  width: 40px;
  height: 40px;
  bottom: 15px;
  right: 15px;
}

/* Very small screens (phones) */
@media (max-width: 576px) {
  .wheel-container {
    width: 100% !important;
    height: auto !important;
    max-width: 400px;
    aspect-ratio: 1/1;
  }

  .wheel {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
  }

  .wheel-pointer {
    top: 45%;
    /* Percentage-based for responsiveness */
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid var(--primary-color);
  }

  .options-container {
    padding: 15px;
  }

  .option-item {
    padding: 8px 10px;
  }

  #btnspin {
    padding: 10px 20px;
    width: 90%;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .wheel-container {
    max-width: 500px;
  }

  .options-container {
    padding: 30px;
  }
}

/* Extra large screens */
@media (min-width: 1400px) {
  .container.py-5 {
    max-width: 1400px;
  }
}

.input-group {
  margin-bottom: 15px;
}

.input-group input {
  border-radius: 8px !important;
  padding: 12px;
  border: 1px solid #ced4da;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.input-group button {
  border-radius: 0 8px 8px 0 !important;
  background-color: var(--primary-color);
  border: none;
}

h1 {
  color: var(--dark-color);
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 20px;
}

/* Intro.js Modern Styling */
.introjs-overlay {
  background-color: rgba(33, 37, 41, 0.7) !important;
  backdrop-filter: blur(2px);
}

.introjs-tooltip {
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  max-width: 360px;
  /* font-family: "Segoe UI", system-ui, -apple-system, sans-serif; */
  background: white !important;
}

.introjs-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.introjs-skipbutton {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.introjs-skipbutton:hover {
  color: #495057;
  background: #f1f3f5;
  text-decoration: none;
}

.introjs-tooltiptext {
  font-size: 15px;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 24px;
  padding: 0;
}

.introjs-tooltipbuttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: none !important;
  padding: 0 !important;
}

.introjs-button {
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  flex: 1;
  text-align: center;
}

.introjs-prevbutton {
  background-color: white !important;
  color: #495057 !important;
  border: 1px solid #dee2e6 !important;
}

.introjs-prevbutton:hover {
  background-color: #f8f9fa !important;
  border-color: #ced4da !important;
}

.introjs-nextbutton {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: 1px solid var(--primary-color) !important;
}

.introjs-nextbutton:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-1px);
}

.introjs-helperLayer {
  border-radius: 8px !important;
  box-shadow: 0 0 0 9999px rgba(67, 97, 238, 0.2),
    0 0 0 2px var(--primary-color), 0 4px 12px rgba(67, 97, 238, 0.3) !important;
  transition: all 0.3s ease;
}

.introjs-arrow {
  border-width: 10px;
}

/* Pulse animation for highlighted element */
@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(67, 97, 238, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
  }
}

.introjs-helperLayer {
  animation: pulse-highlight 2s infinite;
}

/* Help button styles */
.help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.help-btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .stat-value {
    font-size: 1.5rem;
  }
}

/* How to Use Section */
.how-to-use {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 40px 20px;
  margin: 60px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.how-to-use::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4a6bff, #ff6b6b, #6bceff, #a78bfa);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  /* font-weight: 700; */
  position: relative;
  padding-bottom: 15px;
  font-size: 25px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4a6bff, #ff6b6b);
  border-radius: 2px;
}

.step-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: none;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}

.step-1 .step-icon {
  background: linear-gradient(135deg, #4a6bff 0%, #6bceff 100%);
}

.step-2 .step-icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffd43b 100%);
}

.step-3 .step-icon {
  background: linear-gradient(135deg, #a78bfa 0%, #cc5de8 100%);
}

.step-4 .step-icon {
  background: linear-gradient(135deg, #20c997 0%, #63e6be 100%);
}

.step-5 .step-icon {
  background: linear-gradient(135deg, #f06595 0%, #ff8787 100%);
}

.step-6 .step-icon {
  background: linear-gradient(135deg, #748ffc 0%, #66d9e8 100%);
}

.step-content {
  padding: 14px;
}

.step-number {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 8px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.step-description {
  color: #666;
  line-height: 1.6;
}

/* SEO Content Section */
.seo-content {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin: 60px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.seo-content h2 {
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.seo-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4a6bff, #ff6b6b);
  border-radius: 2px;
}

.seo-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 18px;
}

.keywords {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9fa 100%);
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
  border-left: 4px solid #4a6bff;
}

.keywords h3 {
  color: #4a6bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-tag {
  background: #4a6bff;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .seo-content {
    padding: 25px;
  }

  .step-content {
    padding: 20px;
  }
}

.content-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.content-card h2 {
  color: #4a6bff;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-highlight {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #4a6bff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  color: #4a6bff;
  font-size: 1.5rem;
}

.cta-section {
  padding: 2rem;
  background: linear-gradient(135deg, #4a6bff 0%, #6bceff 100%);
  border-radius: 12px;
  color: white;
}

.cta-text {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: white;
  color: #4a6bff;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #4a6bff;
}

.lead {
  font-size: 1.2rem;
  color: #495057;
  line-height: 1.7;
}

.why-use-section {
  background: linear-gradient(135deg, #f0f4f8 0%, #e9ecef 100%);
}

.section-title {
  color: #4a6bff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #495057;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #4a6bff;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  background: linear-gradient(135deg, #4a6bff 0%, #6bceff 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-icon i {
  color: white;
  font-size: 1.5rem;
}

.benefit-content h4 {
  color: #4a6bff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.benefit-content p {
  color: #6c757d;
  margin-bottom: 0;
}

.context-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.context-card h3 {
  color: #4a6bff;
  font-weight: 700;
}

.context-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.context-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.context-tag {
  background: linear-gradient(135deg, #4a6bff 0%, #6bceff 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(74, 107, 255, 0.2);
}

.fun-ways-section {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.section-title {
  color: #4a6bff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #495057;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.use-card {
  background: white;
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #4a6bff;
}

.use-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.use-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4a6bff, #6bceff, #4a6bff);
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.use-icon {
  background: linear-gradient(135deg, #4a6bff 0%, #6bceff 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}

.use-icon i {
  color: white;
  font-size: 1.8rem;
}

.use-content h4 {
  color: #4a6bff;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 1.3rem;
}

.use-content p {
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1.05rem;
}

.use-emoji {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.conclusion-section {
  background: linear-gradient(135deg, #4a6bff 0%, #6bceff 100%);
  border-radius: 15px;
  padding: 2.5rem;
  color: white;
  box-shadow: 0 10px 30px rgba(74, 107, 255, 0.2);
}

.conclusion-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.conclusion-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.btn-primary {
  background-color: white;
  color: #4a6bff;
  border: none;
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #4a6bff;
}

.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
  color: #4a6bff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #495057;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.accordion-item {
  border: none;
  border-radius: 10px !important;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.accordion-button {
  background: white;
  color: #4a6bff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #4a6bff 0%, #6bceff 100%);
  color: white;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234a6bff'%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");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%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(-180deg);
}

.accordion-body {
  padding: 1.5rem;
  background: white;
  color: #495057;
  line-height: 1.6;
  font-size: 1.05rem;
}

.faq-number {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: rgb(0, 0, 0);
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  margin-right: 12px;
  font-size: 0.9rem;
}

.accordion-button:not(.collapsed) .faq-number {
  background: white;
  color: #4a6bff;
}

.support-section {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.support-title {
  color: #4a6bff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.support-text {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn-outline-primary {
  color: #4a6bff;
  border-color: #4a6bff;
  padding: 0.7rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #4a6bff;
  color: white;
  /* transform: translateY(-2px); */
  box-shadow: 0 6px 15px rgba(74, 107, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 0.8rem;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin-right: 0;
    margin-bottom: 1rem;
    align-self: center;
  }

  .context-tags {
    gap: 0.5rem;
  }

  .context-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .content-card {
    padding: 1.5rem !important;
  }

  .feature-highlight {
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: 0.8rem;
  }

  .use-card {
    padding: 1.5rem;
  }

  .use-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .use-icon i {
    font-size: 1.5rem;
  }

  .use-content h4 {
    font-size: 1.2rem;
  }

  .conclusion-section {
    padding: 1.8rem;
  }

  .conclusion-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 0.8rem;
  }

  .accordion-button {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-number {
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin-right: 10px;
  }

  .support-section {
    padding: 1.8rem;
  }
}

/* ================ spin wheel css (end) ================== */

/* ================ team generator css (start) ================== */
.result-section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.result-section.visible {
  display: block;
  opacity: 1;
}

.main-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: none;
  margin-bottom: 20px;
}

.card-title {
  color: #2c3e50;
  font-weight: 600;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  display: inline-block;
}

.name-list-item .number {
  font-weight: bold;
}

.btn-add {
  background-color: #2ecc71 !important;
  border: none !important;
  width: 100%;
}

.btn-add:hover {
  background-color: #27ae60 !important;
}

.btn-generate {
  background-color: #e67e22 !important;
  border: none !important;
  width: 100%;
}

.btn-generate:hover {
  background-color: #d35400 !important;
}

.name-list-item {
  background-color: white;
  border-radius: 5px;
  padding: 8px 15px;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-card {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #3498db;
}

.team-card:nth-child(even) {
  border-top-color: #e74c3c;
}

#fullScreenLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.result-section {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guide-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

/* Help button styles */
.help-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.help-btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .stat-value {
    font-size: 1.5rem;
  }
}

/* Intro.js Modern Styling */
.introjs-overlay {
  background-color: rgba(33, 37, 41, 0.7) !important;
  backdrop-filter: blur(2px);
}

.introjs-tooltip {
  border-radius: 12px !important;
  padding: 24px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  border: none !important;
  max-width: 360px;
  /* font-family: "Segoe UI", system-ui, -apple-system, sans-serif; */
  background: white !important;
}

.introjs-tooltip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.introjs-tooltip-progress {
  font-size: 13px;
  color: #6c757d;
  font-weight: 500;
}

.introjs-skipbutton {
  color: #6c757d;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.introjs-skipbutton:hover {
  color: #495057;
  background: #f1f3f5;
  text-decoration: none;
}

.introjs-tooltiptext {
  font-size: 15px;
  line-height: 1.5;
  color: #212529;
  margin-bottom: 24px;
  padding: 0;
}

.introjs-tooltipbuttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-top: none !important;
  padding: 0 !important;
}

.introjs-button {
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  flex: 1;
  text-align: center;
}

.introjs-prevbutton {
  background-color: white !important;
  color: #495057 !important;
  border: 1px solid #dee2e6 !important;
}

.introjs-prevbutton:hover {
  background-color: #f8f9fa !important;
  border-color: #ced4da !important;
}

.introjs-nextbutton {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: 1px solid var(--primary-color) !important;
}

.introjs-nextbutton:hover {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  transform: translateY(-1px);
}

.introjs-helperLayer {
  border-radius: 8px !important;
  box-shadow: 0 0 0 9999px rgba(67, 97, 238, 0.2),
    0 0 0 2px var(--primary-color), 0 4px 12px rgba(67, 97, 238, 0.3) !important;
  transition: all 0.3s ease;
}

.introjs-arrow {
  border-width: 10px;
}

/* Pulse animation for highlighted element */
@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(67, 97, 238, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(67, 97, 238, 0);
  }
}

.introjs-helperLayer {
  animation: pulse-highlight 2s infinite;
}

.how-to-card-team {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.how-to-card-team:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.how-to-card-team i {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 15px;
}

.how-to-card-team h5 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
}

.how-to-card-team p {
  color: #555;
  font-size: 0.95rem;
}

.seo-content-team {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  /* margin-top: 40px; */
  border-left: 4px solid #3498db;
}

.seo-content-team h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .how-to-card-team {
    margin-bottom: 20px;
  }

  .seo-content-team {
    margin-top: 20px;
  }
}

.step-numbers {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: #3498db;
  color: white;
  margin: 0 auto;
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* .step-card {
  border-radius: 10px;
  background: #fff;
  transition: transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 20px;
  text-align: center;
} */

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  /* .step-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 15px;
  } */

  /* .step-number {
    margin: 0 15px 0 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
  } */

  .step-content {
    flex-grow: 1;
  }

  .step-card h5 {
    margin-bottom: 5px;
  }

  .step-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 576px) {
  /* .step-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 15px;
  }

  .step-number {
    margin-right: 15px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
  } */

  .step-card h5 {
    margin-bottom: 5px;
  }

  .step-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
  }
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
  color: #2c3e50;
}

.faq-header h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-header p {
  color: #7f8c8d;
  font-size: 1.1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-question {
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #2c3e50;
  background: #f8fafc;
}

.faq-question:hover {
  background: #f1f8ff;
}

.faq-icon {
  color: #ffffff;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #34495e;
  line-height: 1.6;
  background: white;
}

.faq-answer.open {
  max-height: 200px;
  padding: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.highlight {
  color: #3498db;
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 20px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-answer.open {
    padding: 15px;
  }
}

.faq-graphic {
  text-align: center;
  margin: 30px 0;
}

.faq-graphic i {
  font-size: 3rem;
  color: #3498db;
  margin-bottom: 15px;
}

/* New Content Section Styles */
.content-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  /* padding: 60px 0; */
}

.content-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: none;
}

.content-body .highlight {
  color: #3498db;
  font-weight: 600;
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
}

.feature-icon {
  margin-right: 15px;
  color: #3498db;
  font-size: 1.8rem;
}

.feature-text h5 {
  color: #2c3e50;
  margin-bottom: 8px;
}

.use-case {
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.use-case:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.use-case i {
  font-size: 2rem;
  color: #3498db;
  margin-bottom: 10px;
}

.use-case p {
  margin: 0;
  font-weight: 500;
  color: #2c3e50;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
}

.cta-section .highlight {
  color: #f1c40f;
}

.cta-section .btn-generate {
  background: white;
  color: #2c3e50;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-section .btn-generate:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Quick and Easy Team Generator Section */
.quick-team-section {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.quick-feature-card {
  background: #f8f9fa;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
}

.quick-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--bs-primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quick-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bs-primary), #6f42c1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quick-feature-card h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.quick-feature-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Use Cases */
.quick-use-cases {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e9ecef;
}

.use-case-item {
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: default;
}

.use-case-item:hover {
  background: var(--bs-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.use-case-item i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.use-case-item span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--bs-primary), #6f42c1);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  border: 2px solid var(--bs-primary);
  color: var(--bs-primary);
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--bs-primary);
  /* transform: translateY(-2px); */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .quick-team-section {
    padding: 2rem 1rem;
  }

  .quick-feature-card {
    padding: 1.5rem 1rem;
  }

  .quick-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .quick-visual {
    margin-top: 2rem;
  }

  .use-case-item {
    padding: 1rem 0.5rem;
  }

  .use-case-item i {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-outline-primary {
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .quick-benefits .row {
    justify-content: center;
  }

  .quick-benefits .col-sm-6 {
    text-align: left;
  }
}

/* ================ team generator css (end) ================== */
/* ================ footer (start) ================== */

/* ================ footer (end) ================== */

/* privacy policy */
.card h1 {
  font-size: 32px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  line-height: 1.2;
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

#policycontainer h2 {
  font-size: 25px;
  font-weight: 500;
}

#policycontainer p {
  font-size: 16px;
}

/* privacy policy */

/* term  */
#termcontainer h2 {
  font-size: 25px;
  font-weight: 500;
}

/* term  */


/* ads */
.horizontal-ads {
  margin: 0 auto;
  max-width: 750px;
  /* height: 122px; */
  position: relative;
}

.ad-container {
  position: relative;
}

.ad-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.ad-icons {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;

  /* gap: 6px; */
}

.ad-icons .icon {
  width: 22px;
  height: 22px;
  background: white;
  font-size: 16px;
  font-weight: bold;
  color: #1aaac4cf;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  cursor: pointer;
}

.horizontal-ads img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid black;
}

.right-ad {
  width: 150px;
  height: 600px;
  margin: 10px;
  position: relative;
  margin-top: 100px;
}

.right-ad img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid black;
}

.left-ad {
  width: 150px;
  height: 600px;
  margin: 10px;
  position: relative;
  margin-top: 100px;
}

.left-ad img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid black;
}

.bottom-sticky-ad {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  z-index: 9999;
  object-fit: cover;
  height: auto;
  /* position: relative; */
}

.bottom-sticky-ad img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid black;
}

@media (max-width: 600px) {
  .bottom-sticky-ad {
    display: none;
  }
}

.left-ad-box {
  width: 300px;
  height: 300px;
  margin: 0 20px;
  position: relative;

}

.left-ad-box img {
  /* width: 100%; */
  width: 280px;
  height: auto;
  object-fit: cover;
  border: 1px solid black;
}

.right-ad-box {
  width: 300px;
  height: 300px;
  margin: 0 20px;
  position: relative;
}

.right-ad-box img {
  /* width: 100%; */
  width: 280px;
  height: auto;
  object-fit: cover;
  border: 1px solid black;
}

/* Hide ads in mobile view */
@media (max-width: 768px) {

  .left-ad,
  .right-ad {
    display: none;
  }

  /* Optional: make content full width in mobile */
  .content-area {
    max-width: 100%;
    margin: 0 10px;
  }
}

.what-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.page-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.center-content {
  flex: 1;
  max-width: 800px;
}

/* Full width ads only for randomnumber.php page */
.randomnumber-square-ad img {
  width: 100% !important;
  max-width: 100%;
}

@media (max-width: 1200px) {

  .left-ad-box,
  .right-ad-box {
    display: none;
  }
}

@media (max-width: 1050px) {

  .left-ad-box,
  .right-ad-box {
    display: none;
  }

  .left-ad,
  .right-ad {
    display: none;
  }

  .center-content {
    max-width: 100%;
    margin: 0 10px;
  }
}

.ad-video {

  object-fit: cover;
  display: block;
  width: 100%;
  height: auto;
}

/* ads   */