 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
.hyperlinkz-navbar {
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo img {
  height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff3c77;
}

.nav-call .call-btn {
  background: #ff3c77;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.nav-call .call-btn:hover {
  background: #cc2f61;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background-color: #222;
  border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    padding: 10px 0;
  }

  .nav-call {
    display: none;
  }

  .call-mobile {
    display: block !important;
  }
}

.call-mobile {
  display: none;
}
.hyperlinkz-banner {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 120px 20px;
}

.banner-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.banner-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.banner-img img {
  max-width: 100%;
  height: auto;
}

.banner-text {
  flex: 1;
  min-width: 280px;
}

.banner-text h1 {
  font-size: 38px;
  color: #222;
  margin-bottom: 20px;
  font-weight: 700;
}

.banner-text p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.banner-btn {
  display: inline-block;
  background-color: #ff3c77;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background-color: #cc2f61;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-text h1 {
    font-size: 28px;
  }

  .banner-text p {
    font-size: 16px;
  }
}
.who-we-are {
  padding: 80px 20px;
  background: #f2f2f2;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.section-title p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-box {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about-box:hover {
  transform: translateY(-5px);
}

.about-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ff3c77;
}

.about-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.call-now-box {
  margin-top: 50px;
}

.call-now-btn {
  display: inline-block;
  background-color: #ff3c77;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(255, 60, 119, 0.3);
  transition: background 0.3s ease;
}

.call-now-btn:hover {
  background-color: #cc2f61;
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .call-now-btn {
    font-size: 16px;
  }
}
.our-services {
  padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

.section-title p {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-item {
  flex: 1 1 250px;
  max-width: 300px;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-6px);
  background: #fff8f9;
}

.service-item .icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff3c77;
}

.service-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-flow {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    max-width: 100%;
  }
}
.hyperlinkz-cta {
  background: #ff3c77; /* Solid pink-red color */
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}


.hyperlinkz-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.hyperlinkz-cta p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 0 transparent;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}


.hl-benefits-section {
  padding: 80px 20px;
  background: #f2f2f2;
}

.hl-benefits-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #1a1a1a;
  font-weight: 700;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefits-list li i {
  font-size: 30px;
  color: #ff3c77;
  flex-shrink: 0;
}

.benefits-list li h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.benefits-list li p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefits-list li i {
    margin-bottom: 10px;
  }
}
.hl-plans-section {
  padding: 80px 20px;
  background: #ffffff;
}

.hl-plans-section .section-title {
  text-align: center;
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 40px;
  font-weight: 700;
}

.plan-table {
  margin: auto;
  width: 100%;
  border-collapse: collapse;
  display: grid;
  gap: 10px;
}

.plan-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background: #f8f8f8;
  color: #333;
}

.plan-header {
  background: #e1e1e1;
  font-weight: bold;
  color: #111;
}

.plan-btn {
  background-color: #ff3c77;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.plan-btn:hover {
  background-color: #ff3c77;
}

/* Responsive */
@media (max-width: 768px) {
  .plan-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .plan-row > div {
    margin-bottom: 10px;
  }
}
footer{
  padding-bottom: 100px;
}
.simple-footer {
  background: #f8f9fa;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #333;
}

.simple-footer h6 {
  font-weight: 700;
  margin-bottom: 8px;
}

.simple-footer .affiliate-disclaimer,
.simple-footer .general-disclaimer {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.simple-footer .footer-links-only {
  margin: 15px 0;
}

.simple-footer .footer-links-only a {
  margin: 0 10px;
  color: #007bff;
  text-decoration: none;
}

.simple-footer .footer-links-only a:hover {
  text-decoration: underline;
}

.simple-footer .footer-bottom-text {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

/* Fixed Call Bar */
.call-now-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #007bff;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
}

/*.simple-footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 100px; 
  font-family: Arial, sans-serif;
  text-align: center;
}

.footer-links-only {
  margin-bottom: 20px;
}

.footer-links-only a {
  color: #ff3c77;
  text-decoration: none;
  margin: 0 15px;
  font-size: 15px;
}

.footer-links-only a:hover {
  text-decoration: underline;
}

.footer-bottom-text {
  font-size: 14px;
  color: #fff;
}
*/
/* Fixed Call Now Bar */
.call-now-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #00bfff;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  padding: 14px 0;
  text-align: center;
  text-decoration: none;
  z-index: 999;
  transition: background 0.3s ease;
}

.call-now-fixed:hover {
  background: #009acd;
}


/* Call Now Button */
.call-now-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff3c77;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  z-index: 999;
}

.call-now-fixed:hover {
  background: #ff3c77;
}
.breadcrumb-section {
  background: #f4f4f4;
  padding: 60px 20px 40px;
  text-align: center;
}

.breadcrumb-title {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.breadcrumb-nav {
  font-size: 16px;
  color: #555;
}

.breadcrumb-nav a {
  text-decoration: none;
  color: #ff3c77;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #009966;
}

.breadcrumb-nav span {
  margin: 0 8px;
  color: #888;
}

.breadcrumb-nav .current-page {
  color: #222;
  font-weight: 600;
}
.contact-section {
  padding: 80px 20px;
  background: #f4f4f4;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 18px;
  color: #666;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

.contact-info a {
  color: #ff3c77;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  background: #ff3c77;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ff3c77;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}
.smart-cable-benefits {
  background: #f9f9ff;
  padding: 100px 30px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.smart-cable-benefits .section-title {
  font-size: 36px;
  font-family: 'Canaro', sans-serif;
  margin-bottom: 10px;
  color: #003144;
}

.smart-cable-benefits .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-10px);
}

.benefit-box i {
  font-size: 36px;
  color: #ff3c77;
  margin-bottom: 20px;
}

.benefit-box h3 {
  font-size: 20px;
  font-family: 'Canaro', sans-serif;
  color: #002944;
  margin-bottom: 10px;
}

.benefit-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
