* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #fff;
  padding-top: 50px;
}


/* HEADER */
.header {
  position: fixed;
  /* ⭐ ADD THIS */
  top: 0;
  /* ⭐ ADD THIS */
  left: 0;
  /* ⭐ ADD THIS */
  width: 100%;
  /* ⭐ ADD THIS */

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  /* ⭐ ADD THIS */
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
}

.call-btn {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
}

/* HERO */
.hero {
  display: flex;
  min-height: 90vh;
  box-sizing: border-box;

  padding-top: 120px;
  background:

    url("images/slide1.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 140px 20px 25px;
    /* top | LR | bottom */
    align-items: flex-start;
    /* 🔑 KEY FIX */
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
    padding: 160px 15px 20px;
    align-items: flex-start;
    /* 🔑 KEY FIX */
  }
}



.hero-left {
  flex: 1;
}

/* .hero-left h4 {
  margin-bottom: 10px;
} */

.hero-left h1 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #cc0000;
  line-height: 1.3;    
  font-weight: 1000;
  font-family: emoji;  
}


.hero-left p {
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-buttons .btn {
  padding: 12px 22px;
  margin-right: 15px;
  border-radius: 25px;
  text-decoration: none;
}

/* HERO BACKGROUND SLIDER – ADD ONLY THIS */
.hero {
  position: relative;
  /* needed for slider layering */
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* stays behind text & form */
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}


.btn.black {
  background: #000;
  color: #fff;
}

.btn.outline {
  background: #000;
  color: #fff;
}

/* FORM */
/* FORM */
.form-card{
 width: 400px;   /* or 400px for more compact */
  padding:  20px 24px 12px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}
.form-card form{
  margin-bottom: 0;
}

.form-card h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 8px;
}

.form-card .sub {
  text-align: center;
  color: #777;
  margin-bottom: 30px;
}

.row {
  display: flex;
  gap: 20px;
}

.field {
  display: flex;
  align-items: center;
  background: #f6f7f8;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 20px;
  width: 100%;
}
.field input,
.field select {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  margin-left: 10px;
}

.icon {
  pointer-events: none;
}

.field .icon {
  font-size: 18px;
  margin-right: 12px;
  opacity: 0.7;
}

.field input,
.field select {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* =========================
   MOBILE & TABLET RESPONSIVE
   ========================= */
@media (max-width: 900px) {

  /* HEADER */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .logo {
    font-size: 18px;
    font-weight: bold;
  }

  .nav {
    display: none;
    /* hide desktop menu */
  }

  .call-btn {
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 20px;
  }



  /* HERO */
  .hero {
    flex-direction: column;
    padding: 30px 20px;
    min-height: auto;
    gap: 40px;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-left p {
    font-size: 15px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-buttons .btn {
    margin: 0;
  }

  /* FORM */
  .form-card {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 30px 22px;
  }

  .form-card h2 {
    font-size: 24px;
  }

  .form-card .sub {
    font-size: 14px;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }

  .field {
    padding: 14px 16px;
  }

  .field input,
  .field select {
    font-size: 15px;
  }

  .submit-btn {
    padding: 15px;
    font-size: 16px;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .hero-left h1 {
    font-size: 26px;
  }

  .hero-left h4 {
    font-size: 14px;
  }

  .form-card {
    border-radius: 16px;
    padding: 24px 18px;
  }

  .submit-btn {
    border-radius: 30px;
  }
}
.form-card {
  position: relative;
  z-index: 1000;
}

/* hamburger */
/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #000;
  margin: 4px 0;
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 900px) {

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav a {
    font-size: 18px;
  }

  .nav.active {
    display: flex;
  }
}

/* floating button*/

.float-btn {
  position: fixed;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

/* WhatsApp */
.float-btn.whatsapp {
  bottom: 90px;
  background: #25D366;
}

/* Call */
.float-btn.call {
  bottom: 20px;
  background: #1224c9;
}

/* Hover animation */
.float-btn:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

/* second card */

.services {
  padding: 80px 60px;
  background: #fff;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.services-sub {
  color: #666;
  margin-bottom: 30px;
}

.tv-types {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tv-types span {
  background: #0d6efd;
  color: #fff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
}

.note {
  font-size: 14px;
  color: #777;
  margin-bottom: 50px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-card i {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .services {
    padding: 60px 20px;
  }

  .services h2 {
    font-size: 26px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* time audio services */
.av-services {
  padding: 80px 60px;
  background: #fff;
}

.av-services h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.av-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.av-card {
  background: #fff;
}

.av-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.av-card h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.av-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.more-text {
  display: none;
  margin-top: 10px;
}

.learn-btn {
  margin-top: 18px;
  padding: 8px 16px;
  border: none;
  background: #1e90ff;
  color: black;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .av-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .av-services {
    padding: 60px 20px;
  }

  .av-grid {
    grid-template-columns: 1fr;
  }
}

/* professional tv repaui */
.features {
  padding: 80px 60px;
  background: #fff;
  text-align: center;
}

.features h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.features .subtitle {
  color: #7a8aa0;
  margin-bottom: 50px;
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-card {
  padding: 35px 20px;
  border-radius: 10px;
}

.feature-card i {
  font-size: 34px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.feature-card p {
  color: #666;
  font-size: 15px;
}

/* COLORS (exact feel) */
.feature-card.blue {
  background: #eaf2ff;
  color: #1e6bff;
}

.feature-card.green {
  background: #eaf6ef;
  color: #1e8e5a;
}

.feature-card.yellow {
  background: #fff6df;
  color: #f1b400;
}

.feature-card.cyan {
  background: #e9fbff;
  color: #1bb5d8;
}

/* RESPONSIVE */
@media(max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .features {
    padding: 60px 20px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* about us */
.about-section {
  padding: 60px 40px;
  background: #ffffff;
}

.about-card {
  max-width: 100%;
  background: #f9fafb;
  padding: 45px 50px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

/* ABOUT TITLE */
.about-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2563eb;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 22px;
}

.about-title i {
  font-size: 16px;
}

/* PARAGRAPHS */
.about-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 22px;
}

.about-card strong {
  color: #374151;
  font-weight: 600;
}

/* CALL NOW */
.about-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 15px;
  color: #111827;
  text-decoration: none;
  font-weight: 500;
}

.about-call i {
  font-size: 14px;
}

/* MOBILE */
@media(max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-card {
    padding: 30px 22px;
  }

  .about-card p {
    font-size: 15px;
  }
}

.why-choose {
  padding: 70px 50px;
  background: #fff;
  text-align: center;
}

.why-choose h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.why-card i {
  font-size: 34px;
  color: #0d6efd;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
}

/* Responsive */
@media(max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .why-choose {
    padding: 50px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* why choose us */
.why-choose-exact {
  padding: 80px 60px;
  background: #ffffff;
  text-align: center;
}

.why-choose-exact h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 55px;
  color: #000;
}

.why-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.why-box {
  background: #f9fafb;
  padding: 40px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.why-box i {
  font-size: 34px;
  color: #1e6bff;
  margin-bottom: 22px;
}

.why-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.why-box p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE (same feel) */
@media(max-width: 992px) {
  .why-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 576px) {
  .why-choose-exact {
    padding: 60px 20px;
  }

  .why-row {
    grid-template-columns: 1fr;
  }
}

/* sliding images */
.hero-2col {
  background: #fff;
  padding: 60px 20px;
}

.hero-wrap {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT BLACK BOX */
/* SECOND IMAGE – BLACK BOX */
.hero-left-dark {
  background: #1e90ff;
  color: #fff;
  padding: 60px 50px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
}

/* heading */
.hero-left-dark h1 {
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 20px;
}

/* paragraph */
.hero-left-dark p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

/* stats */
.hero-left-dark .hero-stats {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

.hero-left-dark .hero-stats h2 {
  font-size: 42px;
  margin-bottom: 6px;
}

.hero-left-dark .hero-stats span {
  font-size: 14px;
  opacity: 0.8;
}

/* STATS */
.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 40px;
}

.hero-stats h2 {
  font-size: 42px;
}

.hero-stats span {
  font-size: 14px;
  opacity: 0.8;
}





/* MOBILE */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 40px 30px;
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .image-slider {
    min-height: 300px;
  }
}

/* privacy */
.policy-section {
  background: #ffffff;
  padding: 60px 20px;
}

.policy-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.policy-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.policy-card h3 {
  color: #d40000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.policy-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .policy-container {
    grid-template-columns: 1fr;
  }
}

/* google reviews */
/* google reviews  */
.google-review-section {
  padding: 70px 40px;
  background: #fff;
}

.google-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 35px;
}

.google-title h2 {
  font-size: 28px;
  font-weight: 700;
}

.google-title img {
  width: 26px;
}

.title-line {
  width: 60px;
  height: 4px;
  background: #f4b400;
  margin-left: 10px;
  border-radius: 10px;
}

.review-wrapper {
  position: relative;
  overflow: hidden;
}

.review-slider {
  display: flex;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: 320px;
  background: #fff;
  padding: 22px;
  margin: 0 15px;
  border-radius: 16px;

  border: 2px solid white;
  /* ✅ Brown Border Added */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: white;
  /* darker brown on hover */
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-head h3 {
  font-size: 16px;
  margin: 0;
}

.date {
  font-size: 13px;
  color: #888;
}

.g-icon {
  width: 22px;
  margin-left: auto;
}

.profile-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orange {
  background: #f97316;
}

.purple {
  background: #8b5cf6;
}

.green {
  background: #22c55e;
}

.stars {
  color: #fbbc05;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 16px;
  color: black;
  line-height: 1.6;
  font-family: emoji;
}

.read-more {
  color: #777;
  font-size: 14px;
  cursor: pointer;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid grey;
  /* ✅ brown border for arrows also */
  font-size: 22px;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #7a4a2b;
  color: #fff;
}

.left {
  left: -10px;
}

.right {
  right: -10px;
}

@media (max-width: 768px) {
  .review-card {
    min-width: 280px;
  }
}

/* DISCLAIMER */
.disclaimer-section {
  background: #fff3cd;
  border-radius: 10px;
  padding: 25px 30px;
  max-width: 1200px;
  margin: 40px auto;
  color: #7a5a00;
  font-size: 15px;
  line-height: 1.7;
}

.disclaimer-title {
  font-weight: 700;
  margin-bottom: 10px;
}

/* FOOTER */
.footer-info {
  padding: 60px 20px 30px;
  background: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.footer-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-box .bold {
  font-weight: 600;
  margin-top: 10px;
}

.footer-logo {
  width: 90px;
  margin-bottom: 15px;
}

.footer-note {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.footer-bottom {
  background: #000;
  padding: 18px 20px;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-left {
  color: #fff;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #6c63ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}

.footer-right {
  color: #fff;
  font-size: 14px;
  text-align: right;
}

.footer-right span {
  font-weight: 700;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-bottom-container {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}



.hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* image acts as background */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 same as background-size: cover */
  z-index: 1;
}

/* dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* text content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* call button */
.call-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  text-decoration: none;
  font-weight: 600;
}

.call-btn:hover {
  background: #fff;
  color: #000;
}

/* mobile */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
}

/* =========================
   GV IMAGE SLIDER (ISOLATED)
   ========================= */

.gv-slider-wrap {
  border-radius: 24px;
  overflow: hidden;
}

.gv-slider {
  position: relative;
  width: 100%;
  height: 520px;
}

.gv-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.gv-slide.gv-active {
  opacity: 1;
}

/* Mobile */
@media (max-width: 900px) {
  .gv-slider {
    height: 300px;
  }
}

/* ===== Brands Slider ===== */
.brands-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.brands-title {
  font-size: 28px;
  margin-bottom: 40px;
}

.brands-slider {
  overflow: hidden;
  width: 100%;
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brandScroll 60s linear infinite;
}

.brands-track img {
  height: 170px;
  margin: 0 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.brands-track img:hover {
  filter: grayscale(0%);
}

@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.brands-btn {
  margin-top: 30px;
  padding: 10px 24px;
  border: 1px solid #000;
  border-radius: 20px;
  background: transparent;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .brands-track img {
    height: 60px;
    margin: 0 25px;
  }
}

.map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Tablet view */
@media (max-width: 1024px) {
  .map iframe {
    height: 300px;
    /* slightly smaller for tablets */
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .map iframe {
    height: 250px;
    /* smaller height for mobile */
  }
}

/* Small phones */
@media (max-width: 480px) {
  .map iframe {
    height: 200px;
    /* very small screens */
  }
}

.logo img.logo-img {
  height: 50px;
  /* adjust as needed */
  width: auto;
}

.logo-container {
  display: flex;
  align-items: center;
  /* vertical alignment */
  justify-content: center;
  /* center in header */
  gap: 15px;
  /* space between logo and text */
  padding: 10px 0;
}

.logo-img {
  height: 80px;
  /* increased from 50px to 80px */
  width: auto;
}

.logo-text {
  font-size: 28px;
  /* increase text size if needed */
  font-weight: bold;
  color: #000;
}

.tv-brands-section {
  background: #0f172a;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.tv-brands-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 35px;
}

.tv-brands-slider {
  overflow: hidden;
  width: 100%;
}

.tv-brands-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: tvScroll 25s linear infinite;
}

.tv-brands-track img {
  width: 130px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Animation */
@keyframes tvScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .tv-brands-track img {
    width: 100px;
    height: 55px;
  }
}

/* Top 2 buttons - desktop */
.hero-buttons-row {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

/* Vertical buttons */
.hero-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 280px;
}

/* Common button styles */
.hero-buttons-row .btn,
.hero-buttons-vertical .btn {
  text-align: center;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

/* =========================
   📱 MOBILE RESPONSIVE
   ========================= */
@media (max-width: 768px) {

  /* Stack top buttons */
  .hero-buttons-row {
    flex-direction: column;
    gap: 14px;
    max-width: 100%;
  }

  /* Full width buttons */
  .hero-buttons-row .btn,
  .hero-buttons-vertical .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }

  /* Expand vertical buttons */
  .hero-buttons-vertical {
    max-width: 100%;
  }
}

/* =========================
   📱 SMALL MOBILE
   ========================= */
@media (max-width: 480px) {

  .hero-buttons-row .btn,
  .hero-buttons-vertical .btn {
    font-size: 14px;
    border-radius: 26px;
  }
}

/* Below buttons container */
.below-only {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}

/* Below buttons style */
.below-btn {
  display: block;
  background: #007bff;
  /* blue background */
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* Hover effect */
.below-btn:hover {
  background: #0056b3;
}

/* Mobile friendly */
@media (max-width: 768px) {
  .below-only {
    max-width: 100%;
  }

  .below-btn {
    width: 100%;
    font-size: 14px;
  }
}