@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-ExtraBold.ttf') format('truetype');

}

body {
  font-family: 'Gilroy', sans-serif;
  color: black;
  background: linear-gradient(135deg, #c2b9eb9f 0%, #ffffff 100%);
}

.heroLogo img {
  max-width: 200px;
}

/* Hero Section */
.heroSection {
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(90deg, #d3bdf5 0%, #ffffff 100%);
}


.heroBody h1 {
  font-size: clamp(2rem, 6vw, 8.5rem);
  font-weight: 700;
}

.heroBody h3 {
  font-size: clamp(1.5rem, 4vw, 6.25rem);
  font-weight: 600;
}


/* Product Section */
.productSection h1 {
  font-size: clamp(1.5rem, 4vw, 6.25rem);
  font-weight: 600;
}

.productSection h4 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
}

.productBody {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  text-align: center;
}

.productImage {
  display: flex;
  justify-content: center;
}

.productImage img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.productContent {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.productBrand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.productBrand img {
  height: 50px;
}

.productBrand h6 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.productBrand h6 span {
  color: #696cff;
}

.productContent h4 {
  margin-top: 1rem;
  font-size: 1.25rem;
}

.btn-custom {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #696cff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.3s ease;
}

.btn-custom:hover {
  background-color: #5850d4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .productBody {
    flex-direction: column;
    text-align: center;
  }

  .productContent {
    align-items: center;
  }
}




/* .contentGap {
    gap: 2.1rem;
} */

.contentGap a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 170px;
  border-radius: 30px;
  color: white;
  font-weight: 700;
}


.bi-box-arrow-up-right {
  -webkit-text-stroke: 0.6px currentColor;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-responsive {
    text-align: center !important;
    align-items: center !important;
  }

  .custom-responsive .logo-text {
    flex-direction: column;
  }

  .custom-responsive .logo-text img {
    margin: 0 auto 10px;
  }
}

@media (max-width: 425px) {
  .custom-responsive {
    text-align: center !important;
  }

  .custom-responsive .logo-text h6 {
    font-size: 20px;
    /* slightly smaller */
  }

  .custom-responsive h4 {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .custom-responsive .logo-text h6 {
    font-size: 18px;
  }

  .custom-responsive h4 {
    font-size: 16px;
  }

  .custom-responsive a {
    font-size: 14px;
    padding: 8px 12px;
  }
}



/* Design Section */
.designHeader h1 {
  font-size: clamp(1.5rem, 4vw, 6.25rem);
  font-weight: 600;
}

/* Nav links */
.design-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.design-nav li a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 25px;
  width: 100%;
}

.design-nav li a:hover {
  color: #340FAC;
}

.design-nav li a.active {
  color: #340FAC;
  font-weight: 700;
}




.imgs img {
  max-width: 88%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 10px 25px #00000014 !important;
}




/* Responsive alignment */
.design-nav-dropdown {
  display: none;
}

@media (max-width: 768px) {
  .design-nav {
    display: none;
    /* hide nav links */
  }

  .design-nav-dropdown {
    display: block;
  }
}

/* Dropdown styling */
.design-nav-dropdown select {
  background: linear-gradient(135deg, #c2b9e9 0%, #ffffff 100%);
  border: none;
  color: #340FAC;
  font-weight: 600;
  font-size: 18px;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  appearance: none;
  /* removes default arrow for custom styling */
  text-align: center;
}

/* Bounce Icon */
@keyframes bounceIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-12px);
  }

  60% {
    transform: translateY(6px);
  }
}

.bounce-icon {
  animation: bounceIcon 1s infinite;
  cursor: pointer;
}

/* Blink Icon */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.blinkIcon {
  animation: blink 2s infinite;
}

/* Go Live button */
.go-live-btn {
  background-color: #845EFF;
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  padding: 6px 14px;
  transition: all 0.3s ease;
  text-decoration:underline;
}

.go-live-btn:hover {
  background-color: #270b7f;
  color: #fff;
}

.border {
  background-color: #845EFF;
}

/* Footer Section */
.footerSection h1 {
  font-size: clamp(2rem, 6vw, 8.5rem);
  font-weight: 700;
}