/* General Styles */
body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.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;
  width: 70px;
  margin-top: -8px;
  margin-bottom: -8px;
  padding-left: 0px;
}

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

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

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

/* 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;
  }
}

/* Info Cards */
.mt-5 {
  background-image: url("/images/gym_image1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 300px;
  margin-top: 100px;
  width: 100%;
}

.g-4 {
  margin-top: 20px;
  margin: auto;
}

.info-card {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 2px solid #00ff7f;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 127, 0.5);
}

.info-card i {
  font-size: 2rem;
  color: #00ff7f;
  margin-bottom: 10px;
  display: block;
}

.info-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}
.p1{
     text-decoration: none;
     color: #fff;
}
/* Media Query for extra small screens */
@media (max-width: 575.98px) {
  .info-card {
    padding: 15px;
    /* Reduce padding */
  }

  .info-card p {
    font-size: 0.9rem;
    /* Slightly smaller text */
  }

  .mt-5 {
    height: 350px;
    width: 100%;
  }
}

/* Contact Form */
.contact-form {
  background: #000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
  border: 1px solid #00ff7f;
}

.form-control {
  background: #111;
  border: 1px solid #00ff7f;
  color: #fff;
}

.form-control:focus {
  border-color: #00ff7f;
  box-shadow: 0 0 12px #00ff7f;
}

.btn-custom {
  background: #00ff7f;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #00cc66;
  transform: scale(1.05);
}

/* Placeholder styling */
form input::placeholder,
form textarea::placeholder,
form select::placeholder {
  color: #00ff7f !important;
  opacity: 1 !important;
}

form input::-webkit-input-placeholder,
form textarea::-webkit-input-placeholder {
  color: white !important;
}

form input:-ms-input-placeholder,
form textarea:-ms-input-placeholder {
  color: white !important;
}

input:hover::placeholder,
textarea:hover::placeholder {
  color: #00ff7f !important;
  opacity: 1 !important;
}

/* Map */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 15px rgba(0, 255, 127, 0.2);
  margin-top: 20px;
}

/* FAQ Section */
.faq-section {

  padding: 80px 0;
}

.faq-left {
  margin-left: 50px;
}

.faq-right {
  margin-left: -45px;
}

.faq-left h6 {
  font-weight: 600;
  letter-spacing: 1px;
  color: #39ff14;
  margin-bottom: 10px;
}

.faq-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.faq-left p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.faq-left .btn {
  background: #00ff7f;
  color: #000;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}

.faq-left .btn:hover {
  background: #00cc66;
  transform: scale(1.05);
}

.accordion-item {
  background-color: #1a1a1a;
  border: 1px solid #00ff7f;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
  transition: 0.3s;
  margin-left: 20px;
}

.accordion-item:hover {
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.accordion-button {
  background-color: #1a1a1a;
  color: #fff;
  font-weight: 500;
  padding: 15px;
  border: none;
  outline: none;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1) brightness(2);
}

.accordion-button:not(.collapsed) {
  background-color: #111;
  color: #39ff14;
  font-weight: bold;
}

.accordion-body {
  background-color: #111;
  color: #ccc;
  padding: 15px;
}

/* Existing Accordion Styles (for contact section fallback) */
.accordion-button {
  background: #111;
  color: #fff;
  border: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: #00ff7f;
  color: #000;
}

.accordion-body {
  background: #111;
  color: #ddd;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

/* Responsive FAQ */
@media (max-width: 992px) {

  .faq-left,
  .faq-right {
    text-align: center;
    margin-bottom: 30px;
  }

  .faq-right .accordion {
    max-width: 100% !important;
    margin: 0 auto;
  }
}

/* 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: gray;
  /* 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);
  }
}