* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #222;
}
/* Header Base */
.header {
  background: #111;
  padding: 15px 0;
  color: #fff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-width: 100%;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
}

.nav-links a:hover {
  color: #fff;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {

  .banner-section {
 
    padding: 30px 0px!important; 

}

.cta-overlay {
    padding: 30px 0px!important;
}
.cta-btn{
  font-size: 14px!important;
}
.cta-parallax{
  padding: 10px 0px!important;
}
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    margin: 10px 0;
  }
}


/* Banner Section */
.banner-section {
  background: url('../images/logo/banner.webp') no-repeat center center / cover;
  padding: 100px 20px;
  color: #fff;
  position: relative;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.banner-content {
  position: relative;
  display: flex;
  justify-content: center; /* <-- This centers horizontally */
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
  color: #fff;
}

.banner-left {
  flex: 1 1 100%;
  max-width: 700px;
  padding: 20px;
}


.banner-left h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.banner-left p {
  font-size: 16px;
  margin-bottom: 25px;
}

.btn-call {
  background: #f00;
  padding: 12px 25px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn-call:hover {
  background: #d40000;
}

/* Contact Form */
.banner-right {
  flex: 1 1 40%;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  color: #333;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #111;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 12px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
  }

  .banner-left, .banner-right {
    flex: 1 1 100%;
    padding: 0;
  }

  .banner-right {
    margin-top: 30px;
    padding: 30px;
  }

  .banner-left h1 {
    font-size: 28px;
  }
}

.who-we-are {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
  color: #333;
}

.who-we-are .container {
  max-width: 900px;
  margin: 0 auto;
}

.who-we-are h2 {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #c2172e;
}

.who-we-are p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.smart-streaming {
  background: #fefefe;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.streaming-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.streaming-info {
  flex: 1 1 45%;
}

.streaming-info h2 {
  font-size: 32px;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.streaming-info p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}

.badges {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.badge {
  background-color: #f1f1f1;
  padding: 12px 18px;
  border-left: 5px solid #c2172e;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  font-weight: 500;
  color: #000;
}

.stream-btn {
  background: #c2172e;
  color: #fff;
  padding: 12px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.stream-btn:hover {
  background: #a0101f;
}

.streaming-img {
  flex: 1 1 45%;
  transform: rotate(-2deg);
}

.streaming-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .streaming-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .streaming-img {
    transform: rotate(0deg);
  }
}

.benefits-strip {
  background-color: #f7f9fb;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 30px;
  color: #1d1d1f;
  margin-bottom: 50px;
  font-weight: 700;
}

.benefit-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.benefit-box {
  flex: 1 1 30%;
  background: #fff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-box i {
  font-size: 36px;
  color: #c2172e;
  margin-bottom: 15px;
}

.benefit-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #00314d;
}

.benefit-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefit-columns {
    flex-direction: column;
    align-items: center;
  }

  .benefit-box {
    width: 100%;
    max-width: 400px;
  }
}


.cta-parallax {
  background-image: url('../images/logo/cta.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 0px 20px;
  color: #fff;
  text-align: center;
}

.cta-overlay {
 
  padding: 80px 20px;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.cta-btn {
  background-color: #c2172e;
  padding: 14px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #a0101f;
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

.support-guarantee {
  padding: 80px 20px;
  background-color: #fdfdfd;
  color: #00314d;
}

.support-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.support-text {
  flex: 1 1 50%;
}

.support-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.support-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.guarantees {
  list-style: none;
  padding: 0;
}

.guarantees li {
  font-size: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.guarantees i {
  color: #c2172e;
  font-size: 18px;
  margin-right: 10px;
}

.support-image {
  flex: 1 1 40%;
  text-align: center;
}

.support-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .support-wrapper {
    flex-direction: column;
  }

  .support-text, .support-image {
    flex: 1 1 100%;
  }

  .support-text h2 {
    font-size: 26px;
  }
}

.vision-mission-section {
  padding: 80px 20px;
  background-color: #f8f9fb;
  color: #1d1d1f;
}

.vision-mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.vm-block {
  flex: 1 1 45%;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.vm-block h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #c2172e;
}

.vm-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 768px) {
  .vision-mission-grid {
    flex-direction: column;
  }

  .vm-block {
    flex: 1 1 100%;
  }
}
.offer-features {
  padding: 80px 20px;
  background-color: #f5f7fa;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #00314d;
  margin-bottom: 50px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-list i {
  font-size: 32px;
  color: #c2172e;
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-text h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.feature-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-list i {
    margin-bottom: 10px;
  }
}

.site-footer {
  background-color: #111;
  color: #bbb;
  padding: 40px 20px;
  font-size: 14px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.site-footer .disclaimer {
  font-size: 13px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.6;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links span {
  color: #555;
}

.site-footer p {
  margin: 0;
}

.call-now-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #c2172e, #90001e);
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 15px 0;
  font-size: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.3s ease;
}

.call-now-fixed:hover {
  background: linear-gradient(90deg, #a61527, #700017);
}

.call-now-fixed i {
  font-size: 18px;
}
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2em;
  margin-bottom: 10px;
  color: #1e3a8a;
}

.section-subtitle {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
