 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
/* Dark Theme Navbar for Netbean */
.netbean-navbar {
  background-color: #111;
  padding: 15px 20px;
  color: #fff;
  position: relative;
  z-index: 1000;
}

.netbean-navbar .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.netbean-navbar .logo {
  font-size: 24px;
  font-weight: 700;
  color: #00ff99;
  text-decoration: none;
}

.netbean-navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: revert-layer;
}

.netbean-navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.netbean-navbar .nav-links li a:hover {
  color: #00ff99;
}

.netbean-navbar .btn-call {
  background-color: #00ff99;
  color: #000;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .netbean-navbar .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .netbean-navbar .nav-links.active {
    display: flex;
  }
}
.netbean-banner {
  background-color: #0d0d0d;
  color: #fff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.netbean-banner .container {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.banner-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #00ff99;
}

.banner-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 30px;
}

.banner-btn {
  background: #00ff99;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #00cc77;
}

/* Optional: Hide animated elements on small screens */
.animated-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.animated-elements .circle,
.animated-elements .dot,
.animated-elements .ring {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 6s infinite ease-in-out alternate;
}

.circle {
  width: 300px;
  height: 300px;
  background: #00ff99;
  top: 50px;
  right: -150px;
}

.dot {
  width: 80px;
  height: 80px;
  background: #00ff99;
  bottom: 40px;
  left: -40px;
}

.ring {
  width: 150px;
  height: 150px;
  border: 4px solid #00ff99;
  top: 100px;
  left: 30%;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(30px); }
}

/* Responsive */
@media (max-width: 768px) {
  .netbean-banner {
    padding: 80px 20px;
    min-height: 50vh;
  }

  .animated-elements {
    display: none;
  }

  .banner-text h1 {
    font-size: 30px;
  }

  .banner-text p {
    font-size: 16px;
  }
}
.netbean-about {
  background-color: #121212;
  color: #e0e0e0;
  padding: 100px 20px 75px;
  position: relative;
  text-align: center;
}

.netbean-about .container {
  max-width: 800px;
  margin: auto;
}

.about-content h2 {
  font-size: 36px;
  color: #00ff99;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

.call-now-fixed {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.call-now-fixed a {
  background: #00ff99;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.call-now-fixed a:hover {
  background: #00cc77;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 16px;
  }

  .call-now-fixed a {
    font-size: 14px;
    padding: 10px 20px;
    display: ruby-text;
  }
}
.netbean-services {
  background-color: #1a1a1a;
  color: #eaeaea;
  padding: 100px 20px;
  text-align: center;
}

.netbean-services h2 {
  font-size: 36px;
  color: #00ff99;
  margin-bottom: 60px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.service-item .icon {
  font-size: 36px;
  color: #00ff99;
  min-width: 50px;
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #ffffff;
}

.service-item p {
  font-size: 16px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-item .icon {
    font-size: 30px;
  }
}
.netbean-cta {
  background: linear-gradient(145deg, #0e0e0e, #1f1f1f);
  padding: 100px 20px;
  text-align: center;
  color: #eaeaea;
}

.netbean-cta h2 {
  font-size: 36px;
  color: #00ff99;
  margin-bottom: 20px;
}

.netbean-cta p {
  font-size: 18px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-button {
  background-color: #00ff99;
  color: #000;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #00cc7a;
}
.netbean-plans {
  background-color: #121212;
  color: #f0f0f0;
  padding: 80px 20px;
  text-align: center;
}

.netbean-plans .section-title {
  font-size: 36px;
  color: #00ff99;
  margin-bottom: 60px;
}

.plan-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plan {
  background: #1c1c1c;
  border: 1px solid #2e2e2e;
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.plan:hover {
  transform: translateY(-10px);
}

.plan h3 {
  color: #00ff99;
  margin-bottom: 15px;
  font-size: 24px;
}

.plan .price {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 20px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.plan ul li {
  margin: 10px 0;
  font-size: 16px;
}

.plan-btn {
  background: #00ff99;
  color: #000;
  padding: 12px 26px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.plan-btn:hover {
  background: #00cc7a;
}

.plan.highlight {
  border: 2px solid #00ff99;
}
.netbean-footer {
  background-color: #101010;
  color: #f0f0f0;
  padding: 60px 20px 20px;
  position: relative;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #00ff99;
}

.footer-col p,
.footer-col ul li {
  font-size: 15px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00ff99;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #fff;
}

/* Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00ff99;
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 10px #00ff99;
  z-index: 999;
  transition: background 0.3s ease;
}

.call-now-btn:hover {
  background-color: #00cc7a;
}
.breadcrumb-section {
  background-color: #181818;
  color: #f0f0f0;
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumb-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #00ff99;
}

.breadcrumb-nav {
  font-size: 16px;
  color: #ccc;
}

.breadcrumb-nav a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #00ff99;
}

.breadcrumb-nav span {
  margin: 0 5px;
}
.faq-section {
  background-color: #000000;
  color: #f0f0f0;
  padding: 80px 20px;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  color: #00ff99;
  margin-bottom: 50px;
}

.faq-items {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

.faq-question {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #00ff99;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #bbb;
  font-size: 16px;
  line-height: 1.6;
}

/* Show answer when active */
.faq-item.active .faq-answer {
  display: block;
}
.contact-section {
  background-color: #121212;
  padding: 80px 20px;
  color: #f0f0f0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #00ff99;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #aaa;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 800px;
  margin: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #1f1f1f;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #00ff99;
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #00cc7a;
}


 .highlight-section {
    background-color: #f9f9f9;
    padding: 5rem 1.5rem;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
  }

  .highlight-wrapper {
    max-width: 1000px;
    margin: auto;
    position: relative;
    padding-left: 100px;
  }

  .highlight-badge {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #00bcd4;
    color: white;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 6px 6px 0 0;
    letter-spacing: 1px;
  }

  .highlight-content h2 {
    font-size: 2.2rem;
    color: #003c58;
    margin-bottom: 1rem;
  }

  .highlight-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }

  .highlight-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
  }

  .highlight-content ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #333;
  }

  .highlight-btn {
    background-color: #00bcd4;
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .highlight-btn:hover {
    background-color: #0097a7;
  }

  @media (max-width: 700px) {
    .highlight-wrapper {
      padding-left: 0;
    }

    .highlight-badge {
      position: static;
      transform: none;
      margin-bottom: 1rem;
      text-align: center;
      border-radius: 6px;
    }
  }

  .testimonial-section {
    background-color: #eef7f9;
    padding: 5rem 1.5rem;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }

  .testimonial-content {
    max-width: 800px;
    margin: auto;
    color: #003c58;
  }

  blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
  }

  blockquote::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -10px;
    color: #00bcd4;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .testimonial-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }

  .trust-note {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
  }

  .testimonial-btn {
    background-color: #00ff99;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }

  .testimonial-btn:hover {
    background-color: #0097a7;
  }

  @media (max-width: 600px) {
    blockquote {
      font-size: 1.2rem;
    }

    .testimonial-author {
      flex-direction: column;
      text-align: center;
    }
  }

   .disclaimer-section {
    background: #191919;
    padding: 3rem 1.5rem;
color: #fff;

  }

  .disclaimer-wrapper {
    max-width: 900px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .disclaimer-icon {
    font-size: 2.5rem;
    color: #f57c00;
    flex-shrink: 0;
  }

  .disclaimer-text h3 {
    margin: 0 0 1rem;
    font-size: 1.6rem;
    color: #00ff99;
  }

  .disclaimer-text p {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
  }

  @media (max-width: 600px) {
    .disclaimer-wrapper {
      flex-direction: column;
      text-align: left;
    }

    .disclaimer-icon {
      font-size: 2rem;
    }
  }