/* Base Navbar Styling */
.navbar {
  background-color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.navbar-brand .logo {
  height: 60px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00c8ff;
}

/* Call Button */
.btn-call {
 background: linear-gradient(135deg, #00c8ff, #0078ff);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
}

/* Menu Toggle Button (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

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

.feature-ribbon-section {
  width: 100%;
}

.ribbon-step {
  width: 100%;
  position: relative;
  z-index: 1;
}

.ribbon-light {
  background: #b4d9ff;
}

.ribbon-dark {
  background: #00a5ff;
}

.ribbon-accent {
  background: #e0f8ff;
}

.ribbon-step h3 {
  font-size: 1.75rem;
}

.ribbon-step p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
    
    
  .ribbon-step:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    background: inherit;
    z-index: -1;
  }

  .ribbon-step:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    background: inherit;
    z-index: -1;
  }
}

.enhanced-tv-section {
  background: #d1eaff;
  padding: 80px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1c1c1c;
}

.section-text {
  color: #555;
  font-size: 1.1rem;
  margin: 20px 0;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
}

.tv-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tv-frame {
  width: 100%;
  max-width: 320px;
  height: 200px;
  border: 8px solid #1c1c1c;
  border-radius: 20px;
  background: #000;
  position: relative;
}

.tv-screen {
  background: linear-gradient(145deg, #101010, #1a1a1a);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen-text span {
  color: #0df;
  font-size: 1.2rem;
  margin: 0 10px;
  font-weight: bold;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


.fiber-banner {
  /*background: url('../images/logo/banner.jpg') no-repeat center top/cover;*/
  color: #fff;
  position: relative;
  z-index: 1;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.fiber-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(133, 204, 255, 1); /* Stronger dark overlay */
  z-index: -1;
}

.banner-content {
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent box */
  padding: 40px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-subtitle {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.banner-location {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

#location-highlight {
  display: inline-block;
  background: #00c8ff;
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
}

.banner-extra-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.banner-btn {
  background: linear-gradient(135deg, #00c8ff, #0078ff);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background: linear-gradient(45deg, #4caf50, #00bcd4);
}

/* Responsive */
@media (max-width: 768px) {
        .hero-title{
            font-size:50px!important;
        }
  .banner-title {
    font-size: 2rem;
  }

  .banner-subtitle,
  .banner-extra-text,
  .banner-location {
    font-size: 1rem;
  }

  .banner-content {
    padding: 20px;
  }
  .banner-btn {
  font-size: 14px;
}
.fiber-cta .btn-light {
    
    font-size: 15px;
}
}






.about-fiber-section {
  background-color: #d1eaff;
  overflow: hidden;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.section-title .highlight {
  color: #00c8ff;
}

.icon-box {
  background: #00c8ff;
  color: #fff;
  padding: 8px 10px;
  border-radius: 50%;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gradient {
  background: linear-gradient(135deg, #00c8ff, #0078ff);
  color: white;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #0078ff, #00c8ff);
}

.about-image-box {
  position: relative;
  z-index: 2;
}

.about-bg-circle {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(0, 200, 255, 0.15);
  border-radius: 50%;
  z-index: -1;
}

.about-bg-gradient {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: linear-gradient(130deg, rgba(0, 200, 255, 0.1), transparent);
  z-index: 1;
}

.cable-internet-timeline {
  position: relative;
}

.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px solid #00c8ff;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
}

.timeline-step .icon {
  position: absolute;
  left: -28px;
  top: 0;
  background-color: #00c8ff;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-step .content {
  padding-left: 20px;
}

.timeline-step h5 {
  font-weight: 600;
  margin-bottom: 8px;
}

.fiber-services {
  background-color: #f8fafc;
}

.fiber-services .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
}

.service-icon {
  background: #00c8ff;
  color: white;
  padding: 14px;
  font-size: 1.5rem;
  border-radius: 10px;
  min-width: 50px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 200, 255, 0.3);
  transition: 0.3s;
}

.service-icon:hover {
  background: #0078ff;
}
.fiber-cta {
  background: linear-gradient(135deg, #0a58ca, #00c8ff);
  border-top-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.fiber-cta h2 {
  font-size: 2rem;
}

.fiber-cta p {
  font-size: 1.1rem;
}

.fiber-cta .btn-light {
  color: #0a58ca;
  font-weight: 600;
  transition: 0.3s ease;
}

.fiber-cta .btn-light:hover {
  background-color: #f1f1f1;
  color: #0078ff;
}

.fiber-plans h2 {
  font-size: 2rem;
}

.plan-box {
  transition: all 0.3s ease-in-out;
}

.plan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
}
.text-primary{
    color: #00c8ff!important;
}
.btn-outline-primary {
    border: 1px solid #00c8ff!important ;
    color: #00c8ff!important;
}
.fiber-footer a:hover {
  color: #ffffff !important;
}

.fiber-call-bottom {
  font-size: 15px;
  z-index: 999;
}
