:root {
  --primary-color-1: #4b45ae;
  --primary-color-2: #d566e8;
}

body {
  font-family: "Inter", sans-serif;
}

.credibzLogo {
  width: 108px;
}

.section-label-container{
  width: fit-content;
}

.honeypot{
  display: none;
}

/* Initial state of navbar */
.main-navbar {
  transition: all 0.3s ease;
  position: relative;
  z-index: 1030;
  box-shadow: none;
}

/* Default (large screens) */
.terms-section,
.privacy-policy {
  padding: 0 200px;
}

/* Medium screens (tablets) */
@media (max-width: 991.98px) {
  .terms-section,
  .privacy-policy {
    padding: 0 100px;
  }
}

/* Small screens (phones) */
@media (max-width: 767.98px) {
  .terms-section,
  .privacy-policy {
    padding: 0 40px;
  }
}

/* Extra small screens */
@media (max-width: 575.98px) {
  .terms-section,
  .privacy-policy {
    padding: 0 20px;
  }
}

.terms-section p, .privacy-policy p{
  font-size: 20px;
}

.terms-section li,
.privacy-policy li {
  font-size: 18px;
}

/* Comments - It's global style  */
.heading {
  font-size: 90px;
  font-weight: 700;
}


/* Responsive Navbar font sizing */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
}

.nav-link {
  font-size: 1rem;
}

a.nav-link:hover {
  color: var(--primary-color-1);
}

.nav-pills .nav-link {
  color: var(--primary-color-1);
  border: 2px solid;
  border-radius: 30px;
  min-width: 100px;
}

.nav-pills .nav-link.active {
  background-color: var(--primary-color-1);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Adjust hero section height to fill viewport minus navbar */
.hero-section {
  min-height: 100vh;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
}

/* Responsive Hero Section Text */
.hero-title {
  font-size: clamp(1.4rem, 3.6vw, 2.5rem);
  /* Scales with screen width */
  line-height: 1.2;
  margin: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: #555;
  margin-top: 1rem;
}

.contact-section .description {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: #444;
  line-height: 1.7;
}

/* Special gradient text */
.special-text {
  background: linear-gradient(
    to right,
    var(--primary-color-1),
    var(--primary-color-2)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.special-text--small {
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
}

.call-to-action {
  background-color: var(--primary-color-1);
  color: white;
  transition: background-color 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.1rem);
}

.call-to-action.loading {
  border: 1px solid var(--primary-color-1);
  background-color: white;
  color: var(--primary-color-1);
  cursor: default;
  pointer-events: none;
}

.call-to-action:not(.loading):hover {
  background-color: #615ac0;
  color: white;
}

.product-section .title,
.contact-section .title {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  line-height: 1.2;
  margin: 0;
}

.form-control:focus,
.form-check-input:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.product-section .subtitle {
  font-size: clamp(1rem, 2.2vw, 1.4rem);
}

/* Responsive font sizes using clamp() */
.section-label {
  font-size: clamp(0.875rem, 2vw, 1rem);
  /* letter-spacing: 2px;
    text-transform: uppercase; */
  color: #888;
}

input[type="checkbox"]:checked {
  border: 1px solid #c186eb;
  background-color: #c186eb;
  box-shadow: 0 0 0 0.25rem #ddc4f0;
  outline: none; /* optional to remove default focus ring */
}

/* Responsive spacing for small devices */
@media (max-width: 576px) {
  .hero-section {
    text-align: center;
    padding: 2rem 1rem;
  }

  .hero-subtitle {
    margin-top: 1.5rem;
  }

  .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 766px) {
  .section-label-container {
    margin: 0 auto;
  }
}

.custom-link {
  color: inherit;
  text-decoration: none;
}

.custom-link:nth-of-type(2) {
  color: var(--primary-color-1);
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer {
    height: 440px;
  }
}

@media (max-width: 576px) {
  .footer {
    height: 670px;
  }
}

#goTopBtn {
  z-index: 999;
  transition: opacity 0.3s ease;
  background: linear-gradient(
    to right,
    var(--primary-color-1),
    var(--primary-color-2)
  );
  font-size: clamp(1.3rem, 0.7rem, 2rem);
}

.page-margin {
  margin-top: 95px;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.custom-toast-container {
  z-index: 11; top: 100px;
}

@media (min-width: 768px) and (min-height: 1500px) {
  .hero-section {
    min-height: 650px;
    margin-top: 100px;
  }
}
