


 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Nunito Sans", sans-serif;
    
      color: white;
    }

    

    .product-section {
      background-color: #27892e;
      padding: 40px 20px;
    }

    .products {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .product-card {
      background: white;
      color: #000;
      padding: 15px;
      border-radius: 10px;
      text-align: center;
      width: 200px;
    }

    .product-card img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .product-card .price {
      color: #cce165;
      font-weight: bold;
    }

   
/* New Ant Navbar Styles */
.ant-nav {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.ant-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.ant-nav-logo img {
  height: 60px;
}

.ant-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ant-nav-link {
  padding: 0 15px;
  color: #333;
  text-decoration: none;
  height: 60px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.ant-nav-link:hover {
  color: #27892e;
}

/* Dropdown Styles */
.ant-nav-dropdown {
  position: relative;
}

.ant-nav-dropdown:hover .ant-dropdown-menu {
  display: block;
}

.ant-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 1001;
}

.ant-dropdown-item {
  padding: 10px 15px;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
#prom-enquiry-forms .fixed-icons {
    position: fixed;
    left: 10px;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#prom-enquiry-forms .fixed-icons a {
    margin: 5px 0;
    color: #fff;
    padding: 10px 10px;
    line-height: 0px !important;
    border-radius: 30px;
    text-align: center;
    font-size: 26px;
    transition: background-color 0.3s ease;
   
}  

#prom-enquiry-forms .fixed-icons .phone-icon {
    background-color: #1321a6;
}
#prom-enquiry-forms .fixed-icons .whatsapp-icon {
    background-color: #27d648;
}
#prom-enquiry-forms .fixed-icons .mail-icon {
    background-color: #d90000;
}

#prom-enquiry-forms .fixed-icons a:hover {
    background-color: #000;
}

/* Popup Form Styles */
#prom-enquiry-forms .popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

#prom-enquiry-forms .form-content {
    background-color: #ffffff;
    padding: 20px;
    
    max-width: 500px;
    position: relative;
    margin: 0 10px;
    width: 100%;
}

#prom-enquiry-forms .form-content h2 {
    color: #000000;
    text-align: center;
}

#prom-enquiry-forms .close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 40px;
    color: #000000;
}

#prom-enquiry-forms .popup-form form input,
#prom-enquiry-forms .popup-form form textarea {
    width: 100%;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#prom-enquiry-forms .popup-form form button {
    width: 100%;
    padding: 10px;
    background-color: #61c467;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 18px;
    transition: background-color 0.4s ease;
}

#prom-enquiry-forms .popup-form form button:hover {
    background-color: #48914d;
}

.ant-dropdown-item:hover {
  background: #f5f5f5;
  color: #27892e;
}

/* Submenu Styles */
.ant-dropdown-submenu {
  position: relative;
}

.ant-dropdown-menu-sub {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 200px;
  background: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.ant-dropdown-submenu:hover .ant-dropdown-menu-sub {
  display: block;
}

/* Mobile Styles */
.ant-nav-mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .ant-nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  
  .ant-nav-links.active {
    display: flex;
  }
  
  .ant-nav-link {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .ant-nav-dropdown .ant-dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }
  
  .ant-nav-dropdown.active .ant-dropdown-menu {
    display: block;
  }
  
  .ant-dropdown-menu-sub {
    position: static;
    box-shadow: none;
    padding-left: 20px;
  }
  
  .ant-nav-mobile-toggle {
    display: block;
  }
}

/* Icons (using pseudo-elements) */
.ant-icon-down::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
}

.ant-icon-right::after {
  content: "▶";
  font-size: 10px;
  margin-left: 5px;
}

.ant-icon-menu::after {
  content: "☰";
  color: black;
}




.video-slider {
  padding: 2rem 1rem;
}

.video-slider h2 {
  margin-bottom: 1rem;
}

.slider-wrapper {
  position: relative;
}

.slider-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.card {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
  background: #1c0033;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.title {
  padding: 0.8rem;
  font-weight: bold;
  font-size: 0.95rem;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: white;
  color: black;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}

.badge.pink {
  background: #ff4785;
  color: white;
}
#navLinks a{
  color: #000;
}
#navLinks  li{
  color: #000;
  width: max-content;
}
#mobileMenu  li{
  color: #000;
}
.bann {
  height: 420px;
}
.baner {
  height: 200px;
}
.new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff00aa;
  color: white;
  padding: 4px 8px;
  font-size: 0.7rem;
  border-radius: 20px;
  z-index: 2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #27892e;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn:hover {
  background: #cce165;
}

.slider-btn.left {
  left: -15px;
}

.slider-btn.right {
  right: -15px;
}

/* Responsive Fix */
@media (max-width: 600px) {
  .card {
    width: 80vw;
  }

  .slider-btn {
    display: none; /* Hide arrows on small screens */
  }
}




.newsletter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #27892e;
  color: #fff;
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 1200px;
  margin: 2rem auto;
  flex-wrap: wrap;
}

.newsletter-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.newsletter-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  min-width: 220px;
}

.newsletter-form button {
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  background: white;
  color: black;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #ddd;
}

.newsletter-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1rem;
}

.newsletter-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-section {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    justify-content: center;
  }

  .newsletter-image {
    margin-top: 2rem;
  }
}



.articles-section {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.articles-header {
  /* display: flex;
  justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
}

.articles-header h2 {
  font-size: 1.8rem;
}

.articles-btn {
  background: #f4f4f4;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
}

.articles-btn:hover {
  background: #ddd;
}

.article-card-wrapper {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.article-card {
  position: relative;
  flex: 1 1 300px;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  overflow: hidden;
  color: #fff;
}

.card-content {
  position: absolute;
  bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  width: 100%;
}

.card-content h3 {
  margin: 0 0 0.5rem;
}

.card-content p {
  font-size: 0.9rem;
  color: #ddd;
}

.arrow-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #27892e;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  padding: 0.4rem 0.7rem;
  font-size: 1rem;
}

.popular-section {
  margin-top: 3rem;
}

.popular-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.popular-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.popular-item {
  flex: 1 1 250px;
}

.popular-item small {
  display: block;
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.3rem;
}

.popular-item p {
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .article-card-wrapper {
    flex-direction: column;
  }

  .popular-list {
    flex-direction: column;
  }
}

.led-hero-section {

  padding: 2rem 2rem;
  text-align: center;
  color: #ccc;
 
}

.led-hero-btn {
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.led-hero-btn:hover {
  background-color: #333;
}

.led-hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(11, 10, 10);
}

.led-highlight {
  color: #27892e;
}

.led-hero-subtext {
  margin-top: 1rem;
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}

.aboutus-section {
  padding: 3rem 2rem;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.aboutus-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.aboutus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  max-width: 350px;
  flex: 1;
}

.aboutus-grid2 {
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  max-width: 350px;
  flex: 1;
}

.aboutus-box {
  grid-row: span 2;
  background-color: #27892e;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  text-align: center;
  padding: 2rem;
}

.aboutus-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.aboutus-text {
  flex: 1;
  max-width: 500px;
}

.aboutus-quote {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.aboutus-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.aboutus-button {
  background-color: #efefef;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s;
}

.aboutus-button:hover {
  background-color: #e0e0e0;
}

.arrow {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}


.about-agency {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.tag {
  display: inline-block;
  background-color: #fbe9e7;
  color: #27892e;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.about-agency h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0 1.5rem;
  color: #1c1c1c;
}

.highlight {
  color: #27892e;
}

.about-description {
  display: flex;
  gap: 2rem;
  /* justify-content: center; */
  flex-wrap: wrap;
  margin-bottom: 3rem;
  color: #666;
}

.about-description p {
  flex: 1 1 300px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 300px;
  flex: 1 1 250px;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin: 0.5rem 0;
  color: #212121;
}

.feature-card p {
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .about-description {
    flex-direction: column;
    text-align: center;
  }
}


.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem 2rem;
  flex-wrap: wrap;
}

.about-content {
  flex: 1 1 400px;
  background-color: #27892e;
  padding: 2rem;
  border-radius: 1rem;
}

.about-subtitle {
  color: #27892e;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-content h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  color: #ffffff;
}

.about-text {
  line-height: 1.6;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.about-image-wrapper {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
}

.experience-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #27892e;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content, .about-image-wrapper {
    flex: 1 1 100%;
  }

  .about-image {
    width: 100%;
  }

  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Section wrapper with background */
.tv-hero-area {
  position: relative;
  background: url('../images/two-mock-up-billboards-bridge.avif') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 2rem;
  margin: auto;
}

/* Dark overlay */
.tv-hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 1;
  margin: auto;
}

/* Content Wrapper */
.tv-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
top: 20%;
  padding: 2rem;
}

/* Heading */
.tv-hero-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Highlighted keyword */
.tv-keyword {
  background-color: #27892e;
  color: #ffffff;
  padding: 0.3em;
  border-radius: 30px;
  display: inline-block;
  margin-left: 0.3em;
}

/* Paragraph */
.tv-hero-desc {
  font-size: 1.125rem;
  color: #e2e2e2;
  margin-bottom: 2rem;
}

/* Button */
.tv-hero-cta {
  display: inline-flex;
  align-items: center;
  background-color: #27892e;
  color: #000;
  padding: 0.8em 1.6em;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.tv-hero-cta:hover {
  background-color: #27892e;
}

.tv-hero-arrow {
  margin-left: 0.5em;
  font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tv-hero-heading {
    font-size: 2.2rem;
  }

  .tv-hero-desc {
    font-size: 1rem;
  }

  .tv-hero-inner {
    padding: 1.5rem;
  }
}



.process-section {
  padding: 2rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.process-tag {
  display: inline-block;
  background-color: #f2f2f2;
  color: #888;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 25px;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: #1c1c1c;
}

.process-section .highlight {
  color: #27892e;
}

.process-section p {
  max-width: 600px;
  margin: 0.5rem auto 3rem;
  color: #666;
  font-size: 0.95rem;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 250px;
  max-width: 300px;
  position: relative;
}

.circle {
  background-color: #fff;
  border: 5px solid #f1f1f1;
  border-radius: 50%;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #27892e;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}

.circle h4 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  color: #222;
}

.circle p {
  font-size: 0.9rem;
  color: #777;
  padding: 0 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step-card {
    margin: 0 auto;
  }
}




.hero-container {
  background: url('../images/back.avif') center/cover no-repeat;
  color: white;
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  border-radius: 20px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 10px 0;
}

.hero-description {
  font-size: 1rem;
  color: #ddd;
  margin: 1.2rem 0 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #27892e;
  color: white;
}

.btn-primary:hover {
  background-color: #27892e;
}

.btn-secondary {
  background-color: white;
  color: #333;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background-color: #f2f2f2;
  color: #000;
}

.hero-brands {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.brand-icon {
  font-size: 28px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.brand-icon:hover {
  transform: scale(1.2);
  color: #27892e;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-brands {
    justify-content: center;
  }
}
.tv-footer {
  background-color: #111;
  color: #eee;
  padding: 3rem 1.5rem 2rem;
  font-family: 'Arial', sans-serif;
}

.tv-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tv-footer-col {
  flex: 1 1 220px;
}

.tv-footer-logo {
  font-size: 1.5rem;
  /* color: #c6ff00; */
  margin-bottom: 1rem;
}

.tv-footer-about {
  font-size: 0.95rem;
  line-height: 1.5;
}

.tv-footer-heading {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.tv-footer-links,
.tv-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tv-footer-links li,
.tv-footer-contact li {
  margin-bottom: 0.5rem;
}

.tv-footer-links a {
  text-decoration: none;
  color: #eee;
  transition: color 0.3s;
}

.tv-footer-links a:hover {
  color: #c6ff00;
}

.tv-footer-socials a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s;
}

.tv-footer-socials img {
  width: 24px;
  height: 24px;
}

.tv-footer-socials a:hover {
  transform: scale(1.1);
}

.tv-footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #bbb;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .tv-footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .tv-footer-col {
    width: 100%;
  }
}


/* Basic Reset */
.z-footer {
  background: #f9f9f9;
 
}

.z-footer-content {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

.z-footer-newsletter {
  margin-bottom: 30px;
}

.z-footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.z-newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.z-newsletter-form input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.z-newsletter-form button {
  background-color: #27892e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.z-footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.z-footer-block {
  flex: 1 1 160px;
}

.z-footer-block h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.z-footer-block ul {
  list-style: none;
  padding: 0;
}

.z-footer-block ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.z-footer-apps img {
  width: 120px;
  margin: 10px 0;
  display: block;
}

.z-footer-bottom {
  background: #27892e;
  color: white;
  padding: 20px;
  text-align: center;
}

.z-footer-help {
  margin-bottom: 10px;
}

.z-footer-contact {
  margin-bottom: 10px;
}

.z-footer-social i {
  margin: 0 8px;
  font-size: 18px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .z-footer-sections {
    flex-direction: column;
  }

  .z-newsletter-form {
    flex-direction: column;
  }

  .z-newsletter-form input,
  .z-newsletter-form button {
    width: 100%;
  }

  .z-footer-bottom {
    text-align: left;
  }

  .z-footer-social {
    text-align: center;
    margin-top: 10px;
  }
}
