* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #001e3c;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo span {
  color: #c2172e;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar {
  display: flex;
  gap: 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #c2172e;
}

.call-btn {
  background: #c2172e;
  padding: 8px 15px;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Banner */
.banner {
  background: linear-gradient(to right, #001e3c, #003a6b);
  color: #fff;
  padding: 60px 20px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.banner-left {
  flex: 1;
  max-width: 600px;
}

.banner-left h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.banner-left p {
  font-size: 16px;
  margin-bottom: 25px;
}

.banner-btn {
  display: inline-block;
  background: #c2172e;
  padding: 12px 25px;
  color: white;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background: #a01424;
}

.banner-right {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}

.banner-right img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #001e3c;
    padding: 20px;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    border-radius: 8px;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .banner-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-left h1 {
    font-size: 28px;
  }
  .banner-left {
  flex: 1;
  max-width: 600px;
  margin-top: 60px;
}
}
.timeline-services {
  background: #fefefe;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 80px;
  color: #00314d;
}

.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #c2172e;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px 30px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-icon {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #c2172e;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 50px;
  text-align: center;
  z-index: 1;
}

.timeline-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  position: relative;
  z-index: 0;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #00314d;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left !important;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-icon {
    left: 20px;
    transform: none;
  }
}

.cta-section {
  background-color: #00314d;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.cta-section .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-btn {
  background-color: #c2172e;
  color: white;
  padding: 14px 30px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #a51025;
}

.how-it-works {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 60px;
}

.steps {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  text-align: left;
}

.circle {
  width: 50px;
  height: 50px;
  background: #c2172e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 20px;
}

.step-content h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #00314d;
  margin-bottom: 10px;
}

.step-content p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .circle {
    margin-bottom: 15px;
  }

  .step-content {
    padding: 0 10px;
  }
}

.about-quality-cable {
  background: #f0f4f8;
  padding: 80px 20px;
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #00314d;
}

.about-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-about-call {
  background-color: #c2172e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-about-call:hover {
  background-color: #a0101f;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    padding: 0;
  }

  .about-text h2 {
    font-size: 28px;
  }
}


.installation-section {
  background: #ffffff;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: #00314d;
  margin-bottom: 60px;
  font-weight: 700;
}

.install-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.install-step.reverse {
  flex-direction: row-reverse;
}

.install-text {
  flex: 1;
  min-width: 300px;
}

.install-text h3 {
  font-size: 24px;
  color: #c2172e;
  margin-bottom: 15px;
}

.install-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.install-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.install-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .install-step,
  .install-step.reverse {
    flex-direction: column;
    text-align: center;
  }

  .install-text h3 {
    font-size: 20px;
  }
}

.features-modern {
  background: #f0f4f8;
  padding: 80px 20px;
  color: #fff;
}

.features-modern .container {
  max-width: 1200px;
  margin: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  text-align: left;
}

.feature-item i {
  font-size: 32px;
  color: #c2172e;
  margin-bottom: 15px;
  display: inline-block;
}

.feature-item h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14.5px;
  color: #000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .feature-item {
    text-align: center;
  }

  .feature-item i {
    font-size: 28px;
  }
}

.full-image-cta {
  width: 100%;
  height: 60vh;
  background-image: url('../images/logo/cta.webp'); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-image-cta .overlay {
  background-color: rgba(0, 0, 0, 0.6); /* black overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content h2 {
  font-size: 36px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease-in-out;
}

/* Fade animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }
}

.plans-section {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1d1d1f;
}

.plans-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.plan-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  padding: 40px 25px;
  max-width: 300px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.plan-box h3 {
  font-size: 24px;
  color: #1c2c7f;
  margin-bottom: 10px;
}

.price {
  font-size: 32px;
  color: #c2172e;
  margin: 15px 0;
  font-weight: bold;
}

.price span {
  font-size: 16px;
  color: #777;
}

.plan-box ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.plan-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  position: relative;
  padding-left: 20px;
}

.plan-box ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1c2c7f;
  font-size: 14px;
}

.plan-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #1c2c7f;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.popular {
  border: 2px solid #c2172e;
  transform: scale(1.05);
}

.site-footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links a {
  margin-left: 20px;
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.disclaimer {
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.legal-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  color: #333;
}

.legal-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
  border-bottom: 2px solid #4a90e2;
  display: inline-block;
  padding-bottom: 5px;
}

.legal-section p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #444;
}

@media (max-width: 768px) {
  .legal-section {
    margin: 30px 20px;
    padding: 20px;
  }

  .legal-section h1 {
    font-size: 1.5rem;
  }

  .legal-section p {
    font-size: 0.95rem;
  }
}
.contact-section {
  background-color: #f9fafc;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  font-size: 28px;
  color: #001e3c;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #444;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.contact-info i {
  color: #c2172e;
  margin-right: 10px;
}

.contact-info a {
  color: #001e3c;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  background-color: #c2172e;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #a31022;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
.testimonial-strip-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.testimonial-strip-title {
  font-size: 28px;
  color: #001e3c;
  margin-bottom: 10px;
}

.testimonial-strip-subtitle {
  color: #555;
  font-size: 1.1em;
  margin-bottom: 40px;
}

.strip-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.strip-card {
  display: flex;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
  background-color: #f9f9f9;
  overflow: hidden;
  text-align: left;
}

.card-border {
  width: 6px;
  background-color: #c2172e;
}

.card-content {
  padding: 20px;
}

.card-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.card-author {
  font-weight: bold;
  font-size: 14px;
  color: #001e3c;
}

@media (max-width: 768px) {
  .strip-testimonials {
    flex-direction: column;
    align-items: center;
  }

  .strip-card {
    width: 100%;
    max-width: 90%;
  }
}
