


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #020617;
  color: white;
  font-family: 'Chakra Petch', sans-serif;

    overflow-x: hidden;
  cursor: none;

  }


html {
  scroll-behavior: smooth;
}


.logo img {
  height: 70px;
  width: fit-content;
  object-fit: contain;
  display: block;
}


.custom-navbar {
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(52, 211, 153, 0.15);
  z-index: 1050;

  }

.navbar-nav .nav-link {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #34d399 !important;
  margin-left: 15px;
  transition: text-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
  text-shadow: 0 0 5px #34d399;
}


.active-blog {
  border-bottom: 2px solid #34d399;
}


.navbar-toggler {
  border-color: rgba(52, 211, 153, 0.5);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(52, 211, 153, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2334d399' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  filter: none;
}


.hero {
  height: 100vh;
  background-color: #020617;

    display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}


.glow-text {
  color: #34d399;
  text-shadow: 0 0 4px #34d399;
}


.glow-text1 {
  color: #ffffff;
  text-shadow: 0 0 4px #34d399;
}


.glow-btn {
  background: transparent;
  border: 1px solid #34d399;
  color: #34d399;

    transition: all 0.3s ease;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.glow-btn:hover {
  background: #34d399;
  color: #020617;
  box-shadow: 0 0 15px #34d399;
}


.book-btn,
.form-btn {
  display: inline-block;
  padding: 15px 45px;
  border-radius: 50px;
  border: 1px solid #34d399;
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.2);
}

.book-btn:hover,
.form-btn:hover {
  background: #34d399;
  color: #020617;
  box-shadow: 0 0 20px #34d399;
  transform: scale(1.05);
}


.section-dark {
  padding: 100px 0;
  background: #020617;
}


.section-alt {
  padding: 100px 0;
  background: #0f172a;
}


.footer-dark {
  background: #020617;
  border-top: 1px solid rgba(52, 211, 153, 0.1);
  color: #9ca3af;
  font-size: 0.9rem;
}


.service-card {
  background: rgba(52, 211, 153, 0.05);
  border: 1px solid #34d399;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.15);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  word-break: break-word;

  }




.neon {
  position: relative;
  overflow: hidden;
}


.neon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;

  background: linear-gradient(60deg,
      transparent,

            rgba(52, 211, 153, 0.08),
      transparent);
  transform: rotate(25deg);
  animation: neonFlow 8s linear infinite;
  pointer-events: none;
}

@keyframes neonFlow {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.blog-link {
  color: #34d399;
  text-decoration: none;
  font-weight: 500;
  transition: text-shadow 0.2s;
}

.blog-link:hover {
  text-shadow: 0 0 5px #34d399;
}


.blog-title,
.blog-description {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.blog-description {
  line-height: 1.6;
}

.blog-date {
  color: #34d399;
  opacity: 0.7;
  display: block;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.blog-title {
  color: white;
}


.services-section {
  background: #020617;
  padding-bottom: 100px;
}

.service-block {
  background: #0f172a;
  padding: 50px;
  padding: 32px 42px;
  margin-bottom: 28px;
  border-radius: 20px;
  margin-bottom: 40px;
  border: 1px solid rgba(52, 211, 153, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-block h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-block p {
  color: #9ca3af;
  font-size: 1.05rem;
}


.service-block::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-block:hover::after {
  opacity: 1;
}

.service-block:hover {
  transform: translateY(-8px);
  border-color: #34d399;
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.2);
}


.service-category {
  color: #ffffff;
  font-size: 42px;
  margin-top: 10px;
  margin-bottom: 8px;
  text-shadow: 0 0 6px rgba(52, 211, 153, 0.3);
  text-align: center;
}

.service-tagline {
  color: #ffffff;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  margin-top: 0;
  opacity: 0.9;
  text-align: center;
}




.price-badge {
  display: inline-block;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid #34d399;
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-left: 12px;
  vertical-align: middle;
  letter-spacing: 1px;
}



.lead-form-section {
  background: #0f172a;
  padding: 80px 0;
}

.lead-form-box {
  background: #0f172a;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.1);
}

.lead-form-box h3 {
  color: #fff;
  text-shadow: 0 0 6px #34d399;
  margin-bottom: 8px;
}

.lead-form-box p {
  color: #9ca3af;
  margin-bottom: 28px;
  font-size: 0.95rem;
}


.lead-input {
  width: 100%;
  background: #020617;
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  outline: none;
  margin-bottom: 16px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lead-input:focus {
  border-color: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.3);
}


.lead-input.input-error {
  border-color: #ff4d4d;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.4);
}

.lead-submit-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid #34d399;
  color: #34d399;
  border-radius: 10px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.15);
}

.lead-submit-btn:hover {
  background: #34d399;
  color: #020617;
  box-shadow: 0 0 15px #34d399;
}


.lead-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


#lead-form-msg {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 22px;
  text-align: center;
}



.product-card {
  background: #0f172a;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 20px;

    padding: 32px 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.product-card:hover {
  border-color: #34d399;
  box-shadow: 0 0 40px rgba(52, 211, 153, 0.4);
  transform: translateY(-6px);
}

.product-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #34d399;

    margin: 16px 0;
}

.pay-btn {
  display: inline-block;
  padding: 13px 38px;
  border-radius: 50px;
  border: 1px solid #34d399;
  color: #34d399;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.2);
}

.pay-btn:hover {
  background: #34d399;
  color: #020617;
  box-shadow: 0 0 20px #34d399;
}

.products-row {
  align-items: stretch;
}



.faq-section {
  background: #020617;
  padding: 80px 0;
}


.faq-accordion .accordion-item {
  background: #0f172a;
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: 12px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: #0f172a;
  color: #fff;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: none;
}


.faq-accordion .accordion-button::after {
  filter: invert(70%) sepia(80%) saturate(400%) hue-rotate(160deg);
}


.faq-accordion .accordion-button:not(.collapsed) {
  background: #1e293b;
  color: #34d399;
  text-shadow: 0 0 4px #34d399;
  box-shadow: none;
}

.faq-accordion .accordion-body {
  background: #1e293b;
  color: #9ca3af;
  line-height: 1.7;
  font-size: 0.95rem;
  border-top: 1px solid rgba(52, 211, 153, 0.1);
}


.blog-search-wrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.search-field {
  background: #0f172a;
  border: 1px solid #34d399;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  outline: none;
  min-width: 250px;
  transition: box-shadow 0.3s;
  font-family: 'Chakra Petch', sans-serif;
}

.search-field:focus {
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.3);
}

.search-btn {
  background: transparent;
  border: 1px solid #34d399;
  color: #34d399;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.2);
  font-family: 'Chakra Petch', sans-serif;
}




.social-icons {
  display: flex;
  justify-content: center;
  gap: 55px;
  flex-wrap: wrap;
}

.social-link {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #34d399;
  color: #34d399;
  font-size: 1.5rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.2);
  text-decoration: none;
}

.social-link:hover {
  background: #34d399;
  color: #020617;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0 15px #34d399;
}







.stats-strip {
  background: #0f172a;
  padding: 50px 0;
  border-top: 1px solid rgba(52, 211, 153, 0.1);
  border-bottom: 1px solid rgba(52, 211, 153, 0.1);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #34d399;
  text-shadow: 0 0 4px #34d399;
  display: block;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}


@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .section-dark,
  .section-alt,
  .faq-section,
  .lead-form-section {
    padding: 60px 0;
  }

  .service-block {
    padding: 30px 24px;
  }

  .social-icons {
    gap: 24px;
  }

  .social-link {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }

  .stats-strip .col-6 {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .lead-form-box {
    padding: 30px 20px;
  }

  .book-btn,
  .form-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}


.contact-wrapper {
  max-width: 400px;
  margin: auto;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #34d399;
  background: transparent;
  color: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #34d399;
  box-shadow: 0 0 8px #34d399;
}

.form-btn {
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #34d399;
  background: transparent;
  color: #34d399;
  cursor: pointer;
}

.form-btn:hover {
  background: #34d399;
  color: black;
  box-shadow: 0 0 15px #34d399;
}

.form-status {
  margin-top: 15px;
  color: #00ffcc;
  opacity: 0;
  transition: opacity 0.3s ease;
}


.contact-flex {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}


.contact-left {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #34d399;
  background: rgba(52, 211, 153, 0.02);
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.15);
}


.contact-form label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #aaa;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 8px;
  border: 1px solid #34d399;
  background: transparent;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 8px #34d399;
}


.contact-right {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    max-width: 100%;
  }
}


.social-icons-horizontal {
  display: flex;
  flex-direction: row;
  gap: 45px;
}


.social-item {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #00eaff;
  transition: 0.3s ease;
}


.social-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid #00eaff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;


    box-shadow: 0 0 8px rgba(0, 234, 255, 0.4);
  transition: 0.3s ease;
}


.contact-icons-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}


.mail-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: underline;
  font-size: 20px;
}


.mail-link i {
  font-size: 35px;
}


.mail-link:hover span {
  color: #34d399;
}


.contact-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}


.mail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
}


.mail-row:hover {
  text-shadow: 0 0 5px #34d399;
}




.social-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
}


.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #34d399;
  font-size: 24px;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
  transition: 0.3s ease;
}


.social-link:hover {
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.8);
}


.social-item span {
  font-size: 15px;
  font-weight: 500;
}


.social-item:hover .social-link {
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.7);
}

.social-item:hover span {
  color: #ffffff;
}


.about-wrapper {
  max-width: fit-content;
  margin: auto;
  padding: 40px 20px;
}


.about-title {
  text-align: center;
  margin-bottom: 25px;
}


.about-text {
  text-align: center;

    line-height: 1.75;
  color: #ccc;
  font-size: 18px;
}


.about-text p {
  margin-bottom: 16px;
}


.about-text .highlight {
  color: #34d399;
  font-weight: 500;
}


.about-text ul {
  margin-left: 20px;
  margin-bottom: 22px;
  list-style: none;

    padding-left: 0;

  }

.about-text li {
  margin-bottom: 10px;
  padding-left: 5px;
}