 /* Global Font Styles */
body {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6, .call-btn {
     font-family: "Lato", sans-serif;

}
  .newcable-navbar {
    background: linear-gradient(to right, #0b132b, #3a506b);
    color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    font-family: 'Segoe UI', sans-serif;
  }

  .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  .logo a {
    font-size: 26px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  .logo span {
    color: #f9c80e;
  }

  .nav-menu ul {
    display: flex;
    gap: 25px;
    list-style: none;
  }

  .nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
  }

  .nav-menu ul li a:hover {
    color: #f9c80e;
  }

  .nav-call a {
    background: #f9c80e;
    color: #0b132b;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .nav-call a:hover {
    background: #ffd95a;
    color: #000;
  }

  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
  }

  @media (max-width: 768px) {
    .nav-menu {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #3a506b;
      padding: 20px 0;
    }

    .nav-menu ul {
      flex-direction: column;
      align-items: center;
    }

    .nav-menu ul li {
      margin: 10px 0;
    }

    .menu-toggle {
      display: block;
    }
    .nav-call a{
      display: none;
    }
  }
   .newcable-banner {
    background: url('../images/logo/Banner.webp') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
  }

  .banner-overlay {
    background: rgba(11, 19, 43, 0.75);
    width: 100%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
  }

  .banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .banner-btn {
    background: #f9c80e;
    color: #0b132b;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
  }

  .banner-btn:hover {
    background: #ffd95a;
    color: #000;
  }

  @media (max-width: 768px) {
    .banner-content h1 {
      font-size: 32px;
    }

    .banner-content p {
      font-size: 16px;
    }

    .banner-btn {
      padding: 10px 25px;
    }

.banner-overlay{
  height: 50vh;
}
  }

    .who-we-are {
    background: #f0f4f8;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .who-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .who-text {
    flex: 1 1 500px;
  }

  .who-text h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 20px;
  }

  .who-text p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .who-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }

  .who-text ul li {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
  }

  .who-text ul li i {
    color: #f9c80e;
    margin-right: 10px;
  }

  .who-call-btn {
    background: #f9c80e;
    color: #000;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }

  .who-call-btn:hover {
    background: #ffd95a;
  }

  .who-visual {
    flex: 1 1 400px;
    text-align: center;
  }

  .who-visual img {
    max-width: 100%;
    height: auto;
  }

  @media (max-width: 768px) {
    .who-container {
      flex-direction: column-reverse;
      text-align: center;
    }

    .who-text ul {
      text-align: left;
    }
  }

    .services-section {
        background: linear-gradient(to right, #0b132b, #3a506b);
    padding: 80px 20px;
    color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }

  .services-container {
    max-width: 1200px;
    margin: auto;
  }

  .services-section h2 {
    font-size: 36px;
    margin-bottom: 75px;
    color: #f9c80e;
  }

  .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }

  .service-item {
    padding: 0 10px;
  }

  .service-item i {
    font-size: 40px;
    color: #f9c80e;
    margin-bottom: 15px;
  }

  .service-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #ffffff;
  }

  .service-item p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .services-section h2 {
      font-size: 28px;
    }
    .service-item i {
      font-size: 32px;
    }
  }

  .cta-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .cta-container {
    max-width: 900px;
    margin: auto;
  }

  .cta-section h2 {
    font-size: 36px;
    color: #121212;
    margin-bottom: 20px;
  }

  .cta-section p {
    font-size: 18px;
    color: #444;
    margin-bottom: 30px;
  }

  .cta-btn {
    display: inline-block;
    background: #f9c80e;
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .cta-btn:hover {
    background: #ffd95a;
  }

  @media (max-width: 768px) {
    .cta-section h2 {
      font-size: 28px;
    }
    .cta-section p {
      font-size: 16px;
    }
  }

  .benefit-section {
        background: linear-gradient(to right, #0b132b, #3a506b);
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .benefit-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .benefit-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #f9c80e;
  }

  .benefit-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }

  .benefit-item {
    background: #fff;
    border-radius: 16px;
    padding: 40px 25px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .benefit-item:hover {
    transform: translateY(-10px);
  }

  .benefit-icon {
    background: #f9c80e;
    width: 64px;
    height: 64px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .benefit-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
  }

  .benefit-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
  }

  .benefit-item p {
    font-size: 16px;
    color: #555;
  }

  @media (max-width: 768px) {
    .benefit-list {
      flex-direction: column;
    }

    .benefit-item {
      margin-bottom: 30px;
    }
  }
  .plans-section {
    background: #ffffff;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
    text-align: center;
  }

  .plans-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #222;
  }

  .plans-container {
    max-width: 1200px;
    margin: auto;
  }

  .plans-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .plan-card {
    background: #f8f9fa;
    padding: 40px 25px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }

  .plan-card:hover {
    transform: translateY(-10px);
  }

  .plan-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
  }

  .price {
    font-size: 28px;
    color: #f9c80e;
    margin: 20px 0;
    font-weight: bold;
  }

  .plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #444;
  }

  .plan-card ul li {
    margin: 8px 0;
  }

  .plan-btn {
    background: #f9c80e;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }

  .plan-btn:hover {
    background: linear-gradient(to right, #0b132b, #3a506b);
  }

  .popular {
    background: #f1f1f1;
    border: 2px solid #f9c80e;
  }

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

    .plan-card {
      max-width: 90%;
    }
  }







   .simple-footer {
    background-color: #101010;
    color: #eee;
    padding: 40px 20px 10px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
  }

  .footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }

  .footer-left {
    flex: 1 1 300px;
    margin-bottom: 20px;
  }

  .footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #00e6b8;
  }

  .footer-links {
    flex: 1 1 200px;
  }

  .footer-links h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #ffffff;
  }

  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }

  .footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }

  .footer-links ul li a:hover {
    color: #f9c80e;
  }

  .bottom-footer {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
  }

  .call-now-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f9c80e;
    color: #101010;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background 0.3s;
  }

  .call-now-button:hover {
    background: #ffd95a;
  }

  @media (max-width: 768px) {
    .footer-wrapper {
      flex-direction: column;
      text-align: center;
    }

    .footer-links {
      margin-top: 20px;
    }

    .call-now-button {
      bottom: 15px;
      right: 15px;
      padding: 10px 18px;
    }
    .footer-left {
    flex:none;

}
  }

  .breadcrumb-section {
    background: #f5f5f5;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .breadcrumb-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .breadcrumb-container h2 {
    margin: 0;
    font-size: 28px;
    color: #222;
  }

  .breadcrumb-nav {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
  }

  .breadcrumb-nav a {
    color: #0f1830;
    text-decoration: none;
  }

  .breadcrumb-nav a:hover {
    text-decoration: underline;
  }
  .contact-section {
    background: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .contact-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }

  .contact-info {
    flex: 1 1 45%;
  }

  .contact-info h2 {
    font-size: 28px;
    color: #00b8e6;
  }

  .contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
  }

  .contact-info ul {
    list-style: none;
    padding: 0;
    color: #444;
  }

  .contact-info ul li {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .contact-info ul li a {
    color: #00b8e6;
    text-decoration: none;
  }

  .contact-form {
    flex: 1 1 45%;
  }

  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    border-radius: 4px;
  }

  .contact-form button {
    padding: 12px;
    background: #00b8e6;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .contact-form button:hover {
    background: #008db7;
  }

  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  }