* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
}

.container {
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}

/* Top bar */
.top-bar {
  background: #4c00ff;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar a {
  margin-right: 15px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 15px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #4C00FF;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Banner */
.banner {
  display: flex;
  margin: 40px auto;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-left, .banner-right {
  flex: 1;
  min-width: 300px;
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
}

.banner img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.banner h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.banner p {
  font-size: 16px;
  color: #444;
}

/* Promo Bar */
.promo-bar {
  background: linear-gradient(to right, #4CAF50, #C8E600);
  padding: 12px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 10px;
    border: 1px solid #ccc;
  }

  nav ul.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.check-service {
  text-align: center;
  padding: 50px 20px;
}

.check-service h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.check-service .subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 5px;
}

.check-service .note {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.check-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 250px;
}

.form-group label {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  text-align: left;
  text-transform: uppercase;
}

.form-group input {
  padding: 10px;
  border: 1px solid #ccc;
  background: #f2f3f5;
  border-radius: 2px;
  font-size: 15px;
}

.check-form button {
  padding: 14px 28px;
  background: #32c24d;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.check-form button:hover {
  background: #28a745;
}

@media (max-width: 768px) {
  .check-form {
    flex-direction: column;
    align-items: center;
  }

  .form-group {
    width: 100%;
    max-width: 350px;
  }
}
.partner-tv {
  background-color: #0b1b35;
  color: #fff;
  padding: 60px 20px;
}

.tv-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.tv-content {
  flex: 1;
  min-width: 280px;
}

.tv-content h2 span {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tv-content p {
  font-size: 17px;
  margin: 20px 0;
  line-height: 1.6;
}

.tv-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}

.tv-content ul li {
  margin-bottom: 10px;
  font-size: 15px;
}

.btn-green {
  display: inline-block;
  padding: 12px 25px;
  background-color: #32c24d;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.btn-green:hover {
  background-color: #28a745;
}

.tv-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.tv-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%; /* makes any image auto-rounded */
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .tv-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .tv-image img {
    width: 220px;
    height: 220px;
  }

  .tv-content h2 span {
    font-size: 26px;
  }
}

.promo-cards {
  background: #eef1f5;
  padding: 60px 20px;
}

.promo-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-card {
  flex: 1;
  min-width: 280px;
  max-width: 540px;
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.promo-text {
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  padding: 30px 20px;
  color: #fff;
  width: 100%;
}

.promo-text h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.promo-text p {
  font-size: 15px;
  margin-bottom: 15px;
}

.promo-text a {
  color: #00ff88;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #00ff88;
}

.promo-text a:hover {
  color: #00cc66;
  border-color: #00cc66;
}

@media (max-width: 768px) {
  .promo-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .promo-card {
    height: 380px;
  }
}


.community-impact {
  background: #4b2aad;
  padding: 60px 20px;
  color: #fff;
}

.community-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.community-text {
  flex: 1;
  min-width: 280px;
}

.community-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.community-text p {
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.community-btn {
  background: #fff;
  color: #000;
  font-weight: 600;
  padding: 14px 25px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.community-btn:hover {
  background: #e5e5e5;
}

.community-image {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.community-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .community-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .community-image img {
    max-width: 100%;
  }
}

.our-mission {
  padding: 60px 20px;
  background: #fff;
  color: #111;
}

.mission-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.mission-image {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.mission-image img {
  width: 100%;
  max-width: 400px;
}

.mission-text {
  flex: 1;
  min-width: 280px;
}

.mission-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.mission-btn {
  background: #33aa3c;
  color: #fff;
  padding: 14px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.mission-btn:hover {
  background: #2a8f30;
}

@media (max-width: 768px) {
  .mission-wrapper {
    flex-direction: column;
    text-align: center;
  }
}


.cta-section {
  background-color: #4d2c91;
  color: #fff;
  text-align: center;
  padding: 60px 20px 100px;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #000;
  font-weight: bold;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #f2f2f2;
}

/* Bottom Decorative Wave */
.cta-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.disclaimer-section {
  background-color: #e9e8ed;
  color: #111;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.disclaimer-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.disclaimer-section p {
  font-size: 15px;
  color: #333;
}

.disclaimer-section strong {
  font-weight: 700;
}

.disclaimer-section a {
  color: #1a0dab;
  text-decoration: underline;
}

.footer-section {
  background: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-links h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links p {
  margin: 8px 0;
  font-size: 15px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-socials {
  margin-top: 20px;
}

.footer-socials a {
  display: inline-block;
  margin: 0 8px;
}

.footer-socials img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.services-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.services-section .section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #1d1d1f;
}

.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
}
.service-icon {
  font-size: 40px;
  color: #4b2aad; /* adjust as needed */
  margin-bottom: 20px;
}


.contact-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-details {
  flex: 1 1 40%;
}

.contact-details h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1d1d1f;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}

.contact-details li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.contact-form {
  flex: 1 1 50%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.contact-form button {
  background-color: #28a745;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #218838;
}


.breadcrumb {
  background-color: #f4f4f4;
  padding: 12px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-radius: 8px;
  margin: 20px auto;
  width: fit-content;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.breadcrumb li span {
  margin: 0 8px;
  color: #888;
}


.call-now-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.call-now-btn:hover {
  background-color: #218838;
}

.fa-brands, .fab {
    font-weight: 400;
    color: #fff!important;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #1d1d1f;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 15px 10px;
  cursor: pointer;
  color: #333;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 10px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
}