/* ---------- BASE ---------- */
body {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: #0b0b0d;
  /*#000*/
  color: #fff;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* ---------- NAVBAR ---------- */
.navbar {
  background: rgba(0, 0, 0, 0.85);
  height: 60px;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
  display: flex;
  align-items: center;

}

.navbar-brand img {
  height: 60px;
  /* increase logo height */
  width: 70px;
  margin-top: -8px;
  /* shift up */
  margin-bottom: -8px;
  /* shift down */
  padding-left: 0px;
}

.active {
  border: 2px solid #00ff7f;
  border-radius: 20px;
}

#quotes .carousel-item.active {
  background: #0b0b0d !important;
  /* your page background color */
}

/* Animated IgniteWell text */
.brand-text {
  background: linear-gradient(90deg, #00ff7f, #fff);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite alternate;
}

@keyframes shine {
  0% {
    letter-spacing: 1px;
    opacity: 0.7;
  }

  100% {
    letter-spacing: 3px;
    opacity: 1;
  }
}

.nav-link {
  color: #fff !important;
  margin-left: 15px;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 15px;
}

.nav-link:hover {
  color: #00ff7f !important;
}

h1 {
  margin: 30px 0;
  font-weight: bold;
}

h1 {
  margin: 30px 0;
  font-weight: bold;
}

.image {
  border-image: 2px solid #00ff7f;
  height: 300px;
  width: 450px;
  border-radius: 20px;

}

/*cards*/
.card-deck {

  display: flex;
  /* Flexbox for row layout */
  gap: 20px;
  /* Space between cards */
  justify-content: center;
  /* Center cards horizontally */
  flex-wrap: wrap;
  padding: 20px;
}

.card-body {
  background-color: rgb(44, 43, 43);
  color: #fff;
}

.card {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  box-shadow: 3px 4px 10px rgba(189, 189, 189, 0.1);
  transition: transform 1s ease, box-shadow 0.4s;
}


.btn-primary {
  margin-left: 75px;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #00ff7f;
  border: none;
  color: black;
  font-weight: bold;
  transition: 0.3s;

}

.btn-primary:hover {
  background-color: #00ff7f;
  color: white;
}

.btn-primary:hover {
  background-color: #00ff7f;
  color: white;
}

/* main image gradient border */
.ring {
  position: relative;
  border-radius: 1.25rem;
  isolation: isolate;
}

.ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--pf-accent), var(--pf-accent-2));
  border-radius: inherit;
  z-index: -1;
  filter: blur(8px);
  opacity: .35;
}

/* main */
.main {
  min-height: 100vh;
  background: radial-gradient(60% 100% at 70% 50%, rgba(126, 249, 166, 0.08), transparent 60%),
    radial-gradient(50% 100% at 10% 10%, rgba(166, 200, 255, 0.08), transparent 50%),
    #0b0b0d;
  position: relative;
  overflow: hidden;
}

.main-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* opacity: .25;  */
  mix-blend-mode: screen;
  background-image: url("/images/about5.jpg");
  background-size: cover;
  background-position: center;
}

.main-inner {
  position: relative;
  z-index: 1;
}

/* ---------- TEXT ANIMATIONS ---------- */
.main h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
}

.main p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.4s;
}

.main a.btn {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.8s;
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.scene {
  width: 250px;
  height: 250px;
  perspective: 1000px;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: 100PX;
  margin-top: 60PX;

  transform-style: preserve-3d;
  animation: spin 10s infinite linear;
}

.face {
  position: absolute;
  width: 250px;
  height: 250px;
  background-size: cover;
  background-position: center;
  border: 2px solid #00ff7f;
}

.btn-success {
  background: #00ff7f;
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 30px;
  border: 1px solid white;
}

.btn-success:hover {
  box-shadow: 0px 0px 10px #00ff7f;
  border: 1px solid white;

}

/* Four sides only */
.front {
  transform: rotateY(0deg) translateZ(125px);
  
}

.back {
  transform: rotateY(180deg) translateZ(125px);
  background-image: url('/images/abslider4.jpg');
}

.right {
  transform: rotateY(90deg) translateZ(125px);
  background-image: url('/images/about3.jpg');
}

.left {
  transform: rotateY(-90deg) translateZ(125px);
  background-image: url('/images/slide5.jpg');
}

/* Rotation */
@keyframes spin {
  0% {
    transform: rotateY(0deg);
  }

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

.carousel-item {
  height: 80vh;
  min-height: 400px;
  background: no-repeat center center scroll;
  background-size: cover;
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
}

.carousel-caption {
  bottom: 13%;
  z-index: 2;
}

.title {
  font-size: 3.2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #00ff7f, #00ff7f, #00ff7f);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 300%;
  animation: gradientFlow 6s infinite linear;
}

/* ---------- PLANS ---------- */
.plan-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid #00ff7f;
}

.plan-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 25px #00ff7f;
}

.plan-title1 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 3px;
  text-align: center;
  padding-right: 25px;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;

}

.plan-price {
  font-size: 2.2rem;
  font-weight: bold;
  color: #00ff7f;
  margin-bottom: 20px;
}

.plan-price span {
  font-size: 1rem;
  color: #bbb;
}

.ul1 {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 20px 0;
  padding-left: 60px;
}

.li1 {
  margin: 10px 0;
  /* margin: 8px 0;*/
  font-size: 1rem;
}

i {
  margin-right: 10px 0;
  font-size: 1.2rem;
}

.available {
  color: #00ff7f;
  padding-right: 5px;
}

.not-available {
  color: red;
  padding-right: 5px;
}

/* Popular Tag */
.popular {
  position: relative;
  overflow: hidden;
}

.popular::after {
  content: "Most Popular";
  position: absolute;
  top: 20px;
  right: -40px;
  background: #00ff7f;
  color: #111;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 50px;
  padding-right: 33px;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}



.package {

  display: flex;
  /* Flexbox for row layout */
  /* Space between cards */
  justify-content: center;
  /* Center cards horizontally */
  flex-wrap: wrap;

}

.price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #00ff7f;
  text-shadow: 1px 1px 5px #00ff7f;
}

.card-glow {
  width: 340px;
  text-align: center;
  padding: 28px;
  margin: 50px;

  border: 2px solid #00ff7f;

  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.04);
}

.card-glow:hover {
  transform: translateY(-6px);
  box-shadow: 5px 5px 30px #00ff7f;
}

.btn-outline-accent {
  --bs-btn-color: var(--pf-accent);
  --bs-btn-border-color: var(--pf-accent);
  --bs-btn-hover-bg: #00ff7f;
  --bs-btn-hover-border-color: var(--pf-accent);
}

.plan-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 45%;
  margin-bottom: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: 400;
  color: #00ff7f;
  text-shadow: 1px 1px 5px #00ff7f;
}

.card {
  width: 250px;
  height: 250px;
  text-align: center;
  margin: 10px;
  background-color: #111;
  border: 2px solid #00ff7f;
  border-radius: 20px;

  perspective: 1000px;
  /* Needed for 3D effect */
}

.card-glow {
  min-height: 200px;
  /* adjust height here */
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  padding: 20px;
  margin: 0px;
}

.plan-img {
  width: 160px;
  /* medium-large size */
  height: 160px;
  object-fit: cover;
  /* crop to fit circle */
  border-radius: 50%;
  /* makes it circular */
  display: block;
  margin: 0 auto 15px;
  /* center horizontally + space below */
  border: 2px solid #fff;
  /* optional: white border around circle */
}

.card-glow:hover {
  transform: translateY(-10px) scale(0.5rem);
  box-shadow: 0 0 25px #00ff7f;
}

.btn-get-started {
  background-color: #00ff7f;
  /* green */
  color: black;
  padding: 10px 28px;
  border: none;
  border-radius: 50px;
  /* circular curve */
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-get-started:hover {
  background-color: #00ff7f;
  /* darker green on hover */
  transform: scale(1.05);
}


.types {
  font-size: 1.0rem;
  font-weight: 400;
}


.plan-img2 {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 15%;
  margin-bottom: 15px;
}

.fw-bold2 {
  padding-top: 10px;
  text-decoration: none;
}



.container-custom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.card {
  width: 250px;
  height: 250px;
  text-align: center;
  margin: 10px;
  background-color: #111;
  border: 2px solid gray;
  border-radius: 20px;

  perspective: 1000px;
  /* Needed for 3D effect */
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;

}

.card:hover .card-inner {
  transform: rotateY(180deg);
  box-shadow: 5px 5px 30px #00ff7f;
}

.card-front,
.card-back {
  background-color: #111;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  /* Hide back when front is visible */
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

.card-front {
  background: #000;
  color: white;
  display: flex;
  flex-direction: column;
}

.card-back {
  background: #00ff7f;
  color: black;
  transform: rotateY(180deg);
}

.ignitewell-stats {
  background: #0b0b0b;
  color: #fff;
}

.stat-box {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 250px;
  padding-right: 50px;
  border: 1px solid #00ff7f;
}

.r1 {
  width: 100%;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px #00ff7f50;
}

.stat-box h3 {
  color: #00ff7f;
  font-size: 2rem;
  font-weight: bold;
}

.counter::after {
  content: "+";
  margin-left: 2px;
  color: #00ff7f;
  /* optional: same as heading color */
  font-weight: bold;
}

/* ---------- BUTTONS ---------- */
.btn-join,
.carousel-caption a.btn {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 20px;
  border-radius: 30px;
  background: linear-gradient(90deg, #00ff7f, #00c3ff);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-join:hover,
.carousel-caption a.btn:hover {
  background: linear-gradient(90deg, #00c3ff, #00ff7f);
  color: #111;
  transform: scale(1.05);
}

.btn-join::after,
.carousel-caption a.btn::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.3);
  top: -50%;
  left: -50%;
  transform: rotate(45deg);
  transition: 0.6s;
}


.py-3 {
  padding-top: 2rem !important;
  padding-bottom: 0rem !important;
}


.para2 {
  padding-left: 30px;
  margin-left: 30px;
  padding-right: 30px;
  margin-right: 30px;
  text-align: center;
}

.midtitle {
  text-align: center;
  padding-top: 20px;
  color: #00ff7f;
}

.c1 {
  display: flex;
  flex-direction: column;
}




/* ---------- FOOTER ---------- */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h3 {
  color: #00ff7f;
  margin-bottom: 15px;
}

.footer p,
.footer ul li {
  color: #ccc;
  font-size: 0.9rem;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.footer a:hover {
  color: #00ff7f;
  transform: scale(1.1);
}

.footer-social a {
  margin-right: 10px;
  font-size: 1.2rem;
}

.bi-envelope-fill {
  padding-right: 6px;
}

.footer-newsletter form {
  display: flex;
  margin-top: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 30px 0 0 30px;
  border: 1px solid #00ff7f;
  background: #111;
  color: #fff;
  outline: none;
  width: 100px;
  height: 35px;
}

.footer-newsletter button {
  padding: 8px 15px;
  padding-left: 4px;
  border-radius: 0 30px 30px 0;
  border: none;
  background: #00ff7f;
  color: #000;
  cursor: pointer;
  transition: transform 0.3s;
  width: 80px;
  height: 35px;
  font-size: 15px;
  font-weight: 600;
}

.footer-newsletter input::placeholder {
  color: white;
  /* muted secondary */
  font-size: 0.9rem;
}

.footer-newsletter button:hover {
  transform: scale(1.05);
}

.back-color1 {
  color: #1877F2;
  font-size: 22px;

}

.back-color2 {
  color: rgb(160, 15, 78);

}

.back-color3 {
  color: white;

}

/* Animated Background Circles */
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 255, 127, 0.1);
}

.circle1 {
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  animation: floatCircle 6s ease-in-out infinite;
}

.circle2 {
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  animation: floatCircle 8s ease-in-out infinite alternate;
}

@keyframes floatCircle {

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

  50% {
    transform: translateY(-15px) rotate(45deg);
  }
}
