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

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

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

.terms-section, .privacy-policy{
  padding: 0 200px;
}
.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;
}

/* Fixed navbar after scroll */
.navbar-fixed {
  position: sticky;
  top: 0;
  width: 100%;
  height: 90px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 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: calc(100vh - 80px); */
  /* assuming navbar is ~80px high */
  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: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 .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;
  }
}

/* Product Section starts  */

.product-card .product-header h2 {
  color: #555;
  margin-top: 1rem;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.3;
}

.product-card .product-header img {
  width: clamp(100px, 20vw, 150px);
  height: auto;
}

.product-card .description {
  background-color: rgba(142, 140, 215, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  gap: 1rem;
}

.product-card .description .content {
  font-size: clamp(1rem, 2vw, 1.2rem);
  width: 60%;
  font-weight: 600;
}

.product-card .description .feature-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.product-card .carousel {
  position: absolute;
  width: 400px;
  height: 475px;
  right: 75px;
  top: 50px;
  background-color: #8e8cd7;
  border-radius: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  border-radius: 50%;
  background: aliceblue;
  width: 35px;
  height: 35px;
  top: 20px;
  right: 20px;
}

.carousel-control-prev {
  left: auto;
  right: 65px;
}

@media (max-width: 768px) {
  .product-card .product-header h2 {
    margin-top: 0.75rem;
  }

  .product-card .product-header {
    padding-inline: 1rem;
  }

  .product-card .description {
    padding: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .product-card .description .content {
    width: 100% !important;
  }

  .product-card .carousel {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

/* Product Section ends  */

/* About Section Starts */

.about-section .main-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.about-section .subheading {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  margin-bottom: 0.5rem;
}

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

.about-section .values-list {
  padding-left: 1.2rem;
  font-size: clamp(1rem, 2.5vw, 1rem);
  color: #444;
  margin-top: 0.5rem;
}

.about-section {
  padding: 2rem 0;
  min-height: 100vh;

}

/* Centering wrapper (works with flex container above) */
.about-wrapper {
  width: 100%;
}

@media (max-width: 576px) {
  .about-section .values-list {
    padding-left: 1.5rem;
  }

  .form {
    margin-bottom: 20px;
  }


  .navbar-nav {
    margin: 12px 8px;
  }
}

/* Tablet View (768px - 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* Desktop View (992px and above) */
@media (min-width: 992px) {
  .about-section {
    padding: 0;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* About Section Ends */

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

@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);
}