 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
.intcable-navbar {
  background-color: #000;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #111;
}

.intcable-navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00ff99;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding: 5px;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #62ffc0;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  color: #00ff99;
}

.call-now {
  background: #00ff99;
  color: #000!important;
  padding: 8px 16px!important;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.call-now:hover {
  background: #62ffc0;
  color: #fff;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #00cfff;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 991px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
.intcable-banner {
  background-color: #000;
  background-image: radial-gradient(circle at top left, rgba(0, 255, 153, 0.1), transparent 70%);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-text {
  max-width: 600px;
  animation: fadeInLeft 1s ease;
}

.banner-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #00ff99;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.banner-text p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-banner {
  display: inline-block;
  background: #00ff99;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-banner:hover {
  background: #00cc77;
  color: #fff;
}

.banner-image img {
  max-width: 100%;
  height: auto;
  animation: fadeInRight 1s ease;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-text h1 {
    font-size: 36px;
  }

  .banner-text p {
    font-size: 16px;
  }

  .btn-banner {
    padding: 10px 22px;
  }
}
.about-intcable {
  background: #121212;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 40px;
  color: #00ff99;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
}

.about-box {
  background: #111;
  border: 1px solid #00ff99;
  border-radius: 12px;
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px #00ff99;
}

.about-box i {
  font-size: 40px;
  color: #00ff99;
  margin-bottom: 20px;
}

.about-box h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

.about-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}
.services-intcable {
  background: #000;
  padding: 100px 20px;
  color: #fff;
}

.section-title {
  text-align: center;
  color: #00ff99;
  font-size: 40px;
  margin-bottom: 60px;
}

.service-list {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #00ff99;
}

.service-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.service-item .icon {
  position: absolute;
  left: -30px;
  top: 5px;
  background: #00ff99;
  color: #000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.service-item h4 {
  font-size: 22px;
  color: #00ff99;
  margin-bottom: 10px;
}

.service-item p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .service-list {
    padding-left: 20px;
  }

  .service-item {
    padding-left: 30px;
  }

  .section-title {
    font-size: 30px;
  }
}
.cta-intcable {
  background: #121212;
  padding: 60px 20px;
  text-align: center;
}

.cta-box {
  border: 2px solid #00ff99;
  border-radius: 12px;
  padding: 60px 30px;
  max-width: 800px;
  margin: 0 auto;
  background-color: #111;
  box-shadow: 0 0 25px rgba(0, 255, 153, 0.2);
}

.cta-box h2 {
  font-size: 36px;
  color: #00ff99;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: #00ff99;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #00cc77;
}
.benefits-intcable {
  background-color: #000;
  padding: 100px 20px;
  color: #fff;
}

.section-title {
  text-align: center;
  color: #00ff99;
  font-size: 36px;
  margin-bottom: 60px;
}

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.benefits-list ul {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: #00ff99;
  margin-right: 12px;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-list {
    flex-direction: column;
    align-items: center;
  }

  .benefits-list ul {
    width: 100%;
    max-width: 400px;
  }
}
.plans-intcable {
  background-color: #121212;
  padding: 100px 20px;
  color: #fff;
}

.section-title {
  text-align: center;
  color: #00ff99;
  font-size: 36px;
  margin-bottom: 60px;
}

.plans-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.plan {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00ff99;
  border-radius: 12px;
  padding: 40px 10px;
  text-align: center;
  width: 320px;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.plan:hover {
  transform: translateY(-10px);
}

.plan h3 {
  font-size: 26px;
  color: #00ff99;
  margin-bottom: 20px;
}

.plan .price {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}

.plan .price span {
  font-size: 16px;
  color: #ccc;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.plan ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #ccc;
}

.plan-btn {
  display: inline-block;
  background-color: #00ff99;
  color: #000;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.plan-btn:hover {
  background-color: #00cc77;
}

.featured {
  border: 2px solid #00ff99;
  background: rgba(0, 255, 153, 0.05);
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.2);
}
/* Footer Section */
.footer-intcable {
  background-color: #000;
  padding: 40px 20px;
  color: #ccc;
  text-align: center;
}

.footer-intcable .footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-links li {
  display: inline-block;
  margin: 0 15px;
}

.footer-links li a {
  color: #00ff99;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #00cc77;
}

.footer-intcable p {
  font-size: 16px;
  color: #ccc;
}

/* Fixed Call Now Button */
.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #00ff99;
  color: #000;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(0, 255, 153, 0.4);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.call-now-btn:hover {
  background-color: #00cc77;
}

.call-now-btn i {
  margin-right: 10px;
}
/* Contact Section */
.contact-intcable {
  background-color: #111;
  padding: 100px 20px;
  color: #fff;
}

.section-title {
  text-align: center;
  color: #00ff99;
  font-size: 36px;
  margin-bottom: 60px;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 60px;
}

.contact-item {
  text-align: center;
  color: #ccc;
  width: 30%;
}

.contact-item i {
  font-size: 30px;
  color: #00ff99;
  margin-bottom: 20px;
}

.contact-item p {
  font-size: 18px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 153, 0.4);
}

.contact-form h3 {
  text-align: center;
  color: #00ff99;
  margin-bottom: 40px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  color: #ccc;
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #00ff99;
  background-color: #222;
  color: #fff;
  font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00cc77;
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background-color: #00ff99;
  color: #000;
  border: none;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00cc77;
}
