/* custom */

:root {
  --green: #0b1e33;
  /* heading green */
  --accent-orange: #0d6cb4;
  /* CTA orange */
  --muted: #9aa0a0;
  --card-shadow: 0 6px 0 rgba(0, 0, 0, 0.06), 0 12px 18px rgba(0, 0, 0, 0.15);
  --border-gray: #e6e6e6;
  --max-width: 1180px;
  font-family: "Figtree", sans-serif;
}

.header {
  background:#fff;
  border-bottom: 1px solid #ccc;
  box-shadow: 1px 0px 9px 0px rgba(0, 0, 0, 1);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0px;
  position: relative;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 40px;
  height: 40px;
}

.logo span {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1d1d1d;
}

/* Tagline */
.tagline {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #0b1e33;
  flex: 1;
  line-height: 1.3;
}

/* Call Button */
.call-btn {
  background: #0b1e33;
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  white-space: nowrap;
  font-family: "Figtree", sans-serif;
}

@media screen and (min-width: 600px) {
  .call-btn {
    transform: translateY(-1rem);
  }
}

.call-btn:hover {
  background: #23903f;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 50px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: -10px;
  color: #0b1e33;
}

/* navsigation */
.navs {
     background: #ffffff;
}

@media screen and (min-width: 600px) {
  .header-wrap {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
  }

  .navs {
    display: flex;
    justify-content: end;
    margin-right: 1rem;
  }
}

.navs ul {
  margin: 0;
  padding: 14px 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.25rem;
}

.navs ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 400;
  font-family: "Figtree", sans-serif;
}

.navs ul li a:hover {
  color: #0b1e33;
}

/* Responsive */
@media (max-width: 992px) {
  .tagline {
    flex: 100%;
    margin: 10px 0;
  }
}

@media (max-width: 600px) {
  .tagline {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .tagline {
    order: 3;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .call-btn {
    order: 3;
    margin: 0 auto;
  }

  .navs {
    display: none;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eee;
  }

  .navs.active {
    display: block;
  }

  .navs ul {
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
  }
}

.hero-container {
  width: 100%;
  background: center / cover no-repeat url("Hero image.webp");
}

/* hero section */
.coupon-section {
  font-family: Arial, sans-serif;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.coupon-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.coupon-left {
  flex: 1;
  min-width: 320px;
  background: #ffffffde;
  padding: 20px 0px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.coupon-left h1 {
  text-align: center;
  color: #0b1e33;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.coupon-left h3 {
  text-align: center;
  font-size: 16px;
  margin: 0 0 6px;
  color: #333;
  font-weight: bold;
}

.stars {
  text-align: center;
  font-size: 14px;
  color: #000;
  margin-bottom: 15px;
}

.intro {
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
}

.feature-box {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
}

.features {
  list-style: none;
  padding: 0;
}

.features ul {
  margin-bottom: 0;
}

.features li {
  font-size: 21px;
  font-weight: 900;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: italic;
}

.features img {
  width: 18px;
  height: 18px;
}

.coupon-offer {
  /* border: 2px dashed #f00; */
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  margin: 10px;
}

.coupon-offer h4 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: bold;
}

.price {
  font-size: 20px;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 10px;
}

.new-price {
  color: #0b1e33;
  font-size: 28px;
}

.special {
  background: #f00;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 3px;
}

.small {
  margin: 6px 0;
  font-weight: bold;
}

.fine-print {
  font-size: 11px;
  color: #666;
}

.badges {
  display: flex;
  justify-content: space-between;
  margin: 15px 10px;
  flex-wrap: wrap;
  gap: 5px;
}

.badges img {
  flex-grow:1;
  height: 35px;
  object-fit: contain;
}

.cta-button {
  background: #0d6cb4;
  text-align: center;
  padding: 0.25rem;
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  margin: 10px;
}

.cta-button:hover {
  background: #07304c;
}

.cta-sub {
  display: block;
  font-size: 18px;
  text-align: center;
  text-decoration: underline;
  color: #111;
  margin-top: 6px;
  font-weight: 700;
}

.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: #f7f7f7;
  border-radius: 6px;
  font-size: 14px;
}

.testimonial img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.testimonial p {
  margin: 0 0 8px;
  font-style: italic;
  line-height: 1.5;
}

.coupon-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coupon-right img {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .coupon-container {
    flex-direction: column;
  }

  .coupon-right img {
    max-width: 100%;
  }
}

/* Scoped CSS */
.pest-control-section {
  font-family: Arial, sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  color: #333;
}

.pest-control-section h2 {
  text-align: center;
  color: #0b1e33;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}

.pest-flex {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.pest-left {
  flex: 1;
  min-width: 400px;
  padding: 1rem;
}

.pest-left img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.special-offer-box {
  background: #0b1e33;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  margin: 10px 0;
  border-radius: 4px;
  font-weight: bold;
}

.pest-badges {
  display: flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content: space-around;
  margin: 10px 0;
}

.pest-badges img {
  height: 65px;
  width:auto;
}

.why-choose-box {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 15px;
}

.why-choose-box h3 {
  background: #0b1e33;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 16px;
  margin: 0;
}

.why-choose-box ul {
  list-style: none;
  padding: 0 15px;
  margin: 0;
}

.why-choose-box li {
  margin: 8px 0;
  font-size: 14px;
}

.why-choose-box li::before {
  content: "✔";
  color: #0b1e33;
  margin-right: 6px;
  font-weight: bold;
}

.features li::before {
  content: "✔";
  color: #0b1e33;
  margin-right: 6px;
  font-weight: bold;
}

.pest-right {
  flex: 2;
  min-width: 320px;
}

.pest-right h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 12px 0 8px;
}

.pest-right p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.promo-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 15px 0;
  gap: 10px;
}

.promo-images figure {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.promo-images img {
  width: 100%;
  border-radius: 4px;
}

.promo-images figcaption {
  font-size: 13px;
  margin-top: 5px;
  font-style: italic;
}

.promo-bottom img {
  width: 100%;
  border-radius: 4px;
  margin-top: 10px;
}

.link {
  color: #0b1e33;
  font-weight: bold;
  cursor: pointer;
}

.cta-button {
  background: #0d6cb4;
  color: #fff;
  text-align: center;
  padding: 0.25rem;
  font-size: 23px;
  font-weight: bold;
  margin-top: 20px;
  border-radius: 4px;
  cursor: pointer;
}

.cta-button:hover {
  background: #07304c;
}

.cta-sub {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

/* call to action */
.cta-banner {
  background-color: #0d6cb4;
  /* bright green background */
  text-align: center;
  padding: 0.25rem;
  color: #fff;
}

.cta-banner p {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.cta-banner strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta-banner p {
    font-size: 22px;
    line-height: 1.4;
  }
}

/* c2 starts */
.services-section {
  background-color: #0b1e33;
  background-image: url("https://www.transparenttextures.com/patterns/black-linen.png");
  background-size: cover;
  padding: 90px 0;
  color: #fff;
  text-align: center;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 370px;
  text-align: center;
  background: #07304c;
  border-radius: 4px;
}

.service-card img {
  width: 100%;
  height: 308px;
  object-fit: cover;
  border: 5px solid #fff;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Figtree", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.service-card p {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #dcdcdc;
  margin: 0 20px 30px;
}

.learn-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #fff;
  color: #000;
  font-family: "Figtree", sans-serif;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.learn-btn:hover {
  background-color: #17a85f;
  color: #fff;
}

@media (max-width: 992px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 500px;
  }
}

/* c2 ends */

.wrap {
  max-width: var(--max-width);
  margin: 36px auto;
  padding: 0 28px;
  box-sizing: border-box;
}

.section-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

/* left column */
.left {
  flex: 1 1 62%;
  padding-right: 18px;
}

.left h2 {
  font-family: "Figtree", sans-serif;
  color: var(--green);
  font-size: 56px;
  line-height: 0.9;
  margin: 0 0 26px 0;
  letter-spacing: 1px;
  font-weight: 700;
}

.left .lead {
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 28px;
}

/* testimonial box */
.testimonial {
  background: #f2f2f2;
  padding: 26px;
  border-radius: 6px;
  margin-top: 28px;
  box-shadow: none;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid #eee;
}

.avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  background: #ddd;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial .quote {
  font-style: italic;
  color: #666;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.testimonial .author {
  font-weight: 700;
  color: #111;
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  margin-top: 6px;
}

/* right card */
.right {
  flex: 0 0 36%;
  box-sizing: border-box;
  min-width: 320px;
}

.promo-card {
  background: #fff;
  padding: 22px 24px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06), 0 10px 18px rgba(0, 0, 0, 0.18);
}

.promo-card h3 {
  font-family: "Figtree", sans-serif;
  color: var(--accent-orange);
  font-size: 36px;
  line-height: 1.05;
  margin: 0 0 12px 0;
  letter-spacing: 0.5px;
  white-space: normal;
}

.promo-card .sub {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
  color: #222;
}

.promo-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
  justify-contain:space-between;
  margin: 12px 0 18px 0;
  overflow: hidden;
}

.badges img {
  flex-grow:1;
  height: 84px;
  width: auto;
  display: block;
}

.cta {
  display: block;
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-size: 30px;
  padding: 18px 14px;
  border-radius: 6px;
  background: var(--accent-orange);
  color: #fff;
  text-decoration: none;
  margin: 12px 0 16px 0;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.08) inset;
}

.promo-card .estimate {
  display: block;
  text-align: center;
  text-decoration: underline;
  color: #111;
  margin-top: 6px;
  font-weight: 600;
}

/* small adjustments to more closely mirror screenshot */
.left h2 span {
  display: block;
}

@media (max-width: 980px) {
  .wrap {
    padding: 20px;
  }

  .section-row {
    flex-direction: column;
  }

  .right {
    order: 2;
    width: 100%;
  }

  .left {
    width: 100%;
    order: 1;
  }

  .left h2 {
    font-size: 40px;
  }
}

/* Footer Scoped CSS */
.site-footer {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 30px 20px 10px;
  position: relative;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 32px;
  height: 32px;
}

.footer-logo .logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}

.footer-navs ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-navs a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.footer-navs a:hover {
  color: #0b1e33;
}

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  max-width: 1000px;
  margin: 20px auto;
}

.footer-bottom {
  font-size: 13px;
  margin-top: 15px;
  color: #ddd;
}

.site-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #0b1e33;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-navs ul {
    gap: 12px;
    font-size: 14px;
  }

  .footer-logo .logo-text {
    font-size: 22px;
  }

  .footer-disclaimer {
    font-size: 13px;
    padding: 0 10px;
  }

  .pest-right {
    margin: 15px;
  }
}

body > * {
  font-family: "Figtree", sans-serif !important;
}

.cta-1 .cta-banner p {
  margin: 0;
  font-family: "Figtree", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.cta-1 strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .cta-1 .cta-banner p {
    font-size: 16px;
    line-height: 1.4;
  }
}

.cta-1,
.img-w,
.badges-w {
  display: none;
}

@media (max-width: 600px) {
  .coupon-right {
    display: none;
  }

  .coupon-left {
    width: 100%;
    overflow: hidden;
  }

  .pest-control-section {
    width: 100%;
    overflow: hidden;
  }

  .call-btn {
    display: none;
  }

  .tag-desktop {
    display: none;
  }

  .coupon-offer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .coupon-offer img {
    width: 100%;
    object-fit: contain;
  }

  .cta-1,
  .img-w,
  .badges-w {
    display: block;
    object-fit: contain;
  }

  .feature-box {
    flex-direction: column-reverse;
  }

  .features {
    display: none;
  }
}

form {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 6px;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #07304c;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background-color: ##07304c;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-bottom: 6px;
  display: none;
}

.heading-text {
  font-size: 28px !important;
}

.para-text {
  font-size: 16px !important;
}

.cta-self {
  font-size: 1rem !important;
}

.cta-orange {
  font-size: 23px !important;
}

.special-offers {
  display: none;
}

@media (max-width: 600px) {
  .special-offers {
    max-width: 576px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem;
  }

  .special-offers img {
    width: 100%;
    object-fit: contain;
    overflow: hidden;
  }

  .pest-left {
    min-width: auto;
    padding: 1rem;
  }

  .promo-images {
    flex-direction: column;
  }

  .footer-navs ul {
    flex-direction: column;
  }
}

.form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem;
}

/* Put this after your reboot.css */
.faq-container summary {
  display: flex;
  /* ensure no list-item marker */
  list-style: none;
  /* extra safeguard for list markers */
  cursor: pointer;
  /* keep pointer behavior */
  outline: none;
  /* optional: keep custom focus styling below */
}

/* Remove browser-native triangle/marker */
.faq-container summary::marker {
  content: none;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

/* carousel control overrides — must come after the global `button { width:100% }` */
.carousel-control {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 9999px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

#carousel-dots button {
  width: auto;
  padding: 4px;
  border: none;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  margin-top: 2px;
}
/* ensure these navss always have desired size and ignore your global button rule */
.beforeafter-navs {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  font-size: 20px !important;
  line-height: 1 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  border: none !important;
  cursor: pointer !important;
}

/* make handle pointer friendly */
#handle {
  touch-action: none;
  cursor: grab;
}
#handle:active {
  cursor: grabbing;
}

/* small dot button reset */
#dots button {
  border: none;
  padding: 6px;
  background: transparent;
  cursor: pointer;
}

/* carousel control overrides — must come after global button rules */
.carousel-control {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 9999px !important;
  background: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* ensure these navss always have desired size and ignore your global button rule */
.beforeafter-navs {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  font-size: 20px !important;
  line-height: 1 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
  border: none !important;
  cursor: pointer !important;
}

/* make handle pointer friendly */
#handle {
  touch-action: none;
  cursor: grab;
}
#handle:active {
  cursor: grabbing;
}

/* small dot button reset */
#dots button {
  border: none;
  padding: 6px;
  background: transparent;
  cursor: pointer;
}

/* minimal rest of styles for BA card (rounded, shadow) */
#ba-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  background: #f3f4f6;
}
#ba-card img {
  display: block;
}

/* labels */
#ba-card .label {
  position: absolute;
  bottom: 22px;
  font-weight: 800;
  color: white;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
  font-size: 20px;
}
#ba-card .label.left {
  left: 24px;
}
#ba-card .label.right {
  right: 24px;
}

/* progress */
#progressFill {
  background: #111827;
}

/* small responsive tweak */
@media (max-width: 640px) {
  #handle {
    width: 64px;
    height: 48px;
  }
  .beforeafter-navs {
    width: 36px;
    height: 36px;
  }
}


/* header */
  /* Hide navs by default on small screens */
  @media (max-width: 768px) {
    .navs {
      display: none;
      width: 100%;
      text-align: center;
      border-top: 1px solid #eee;
      background: #fff;
    }

    .navs.active {
      display: block;
    }

    .navs ul {
      flex-direction: column;
      gap: 18px;
      padding: 20px 0;
    }

    .hamburger {
      display: block;
      cursor: pointer;
      font-size: 3rem;
    }
  }

  /* Desktop (keep visible) */
  @media (min-width: 769px) {
    .navs {
      display: flex;
      justify-content: flex-start;
      padding: 0 20px 0 20px;
    }

    .hamburger {
      display: none;
    }
  }

  .buttons{
    width: 50%;
    border-radius:2rem;
    margin: 0 auto;
    transform:translateX(50%);
  }

  @media (max-width:600px){
    .special-offer-box{
      display:none;
    }
  }


  /* ---------- TESTIMONIAL CAROUSEL - FIXED (scroll-based) ---------- */
.testimonial-carousel-wrap {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: 12px;
  box-sizing: border-box;
}

.testimonial-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;            /* allow scrolling */
  scroll-behavior: smooth;     /* smooth programmatic scroll */
  -webkit-overflow-scrolling: touch;
  padding: 0;                  /* remove inner padding to keep calculations simple */
  margin: 0;
  scrollbar-width: none;       /* hide firefox scrollbar */
}

/* hide webkit scroll bar visually */
.testimonial-carousel::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 100%;              /* each slide takes full viewport width of the carousel container */
  box-sizing: border-box;
  padding: 8px;
  scroll-snap-align: start;
}

/* Keep your existing testimonial styles inside each slide */
.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.avatar {
  width: 76px; height: 76px; border-radius: 10px; overflow: hidden; flex-shrink: 0; border: 3px solid white; background: #ddd;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-text .quote { font-style: italic; color: #666; font-weight: 300; font-size: 15px; line-height: 1.6; margin-bottom: 8px; text-align: left; }
.testimonial-text .author { font-weight: 700; color: #111; font-size: 15px; font-family: 'Roboto Condensed', sans-serif; }

/* Controls */
.tc-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; border: none; background: rgba(0,0,0,0.55); color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display:flex; align-items:center; justify-content:center; }
.tc-prev { left: 8px; } .tc-next { right: 8px; }

/* Dots */
.tc-dots { display:flex; gap:8px; justify-content:center; margin-top:10px; }
.tc-dot { width:10px; height:10px; border-radius:50%; background: rgba(0,0,0,0.2); cursor:pointer; border: none;padding:0.25rem }
.tc-dot.active { background: rgba(0,0,0,0.7); }

/* Responsive tweaks */
@media (max-width:480px) {
  .testimonial-carousel-wrap { padding: 8px; }
  .testimonial { padding: 12px; gap:10px; }
  .testimonial-text .quote { font-size: 14px; }
}

