* {
  font-size: 16px;
}
body {
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  color: #111827;
}

.brand-mark {
  background: #111827;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  margin-right: 10px;
}

.hero{
  background: linear-gradient(135deg, #111827, #374151);
  color: white;
}

.hero-slider {
  position: relative;
  background: linear-gradient(135deg, #111827, #374151);
  color: white;
  padding: 50px 0;
  overflow-x: hidden;
}

.hero-slide {
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;

  position: absolute;
  top: 0;
  left: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  z-index: 2;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

svg {
  vertical-align: middle;
  width: 32px;
  margin-top: 25px;
  color: rgb(109, 109, 109);
}

.section {
  padding: clamp(45px, 6vw, 75px) 0;
}

.section-soft {
  background: #eef2f7;
}

.eyebrow {
  display: inline-block;
  padding: 6px;
  color: white;
  background: black;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-card {
  background: white;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.footer {
  background: #111827;
  color: white;
  padding: 60px 0 20px;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}

.rating {
  color: #f59e0b;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

p {
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.7;

  /* color: #4b5563; */
}
.lead {
  font-size: clamp(16px, 1.6vw, 20px);
}

.section-heading,
.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}
.review-score {
  border-radius: 22px;
  padding: 20px;
}
.review-score strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  color: #132238;
}

h2 {
  font-size: clamp(22px, 3vw, 36px);
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  line-height: 1.14;
  font-weight: 500;
}
h3 {
  font-size: clamp(17px, 2vw, 24px);
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  line-height: 1.14;
  font-weight: 500;
}
h5 {
  font-size: clamp(14px, 1.4vw, 18px);
}
.blog-card-body p {
  margin-bottom: 0;
  color: #607087;
  line-height: 1.7;
}
.review-author {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: gray;
  font-size: 0.92rem;
}

/* Laptop / desktop: normal Bootstrap row */
.reviews-row { 
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;

    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.reviews-row::-webkit-scrollbar {
    display: none;
}

.blog-row {
  display: flex;
}
.blog-card-body {
  padding: 18px;
}
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  color: #607087;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.desktop-menu .nav-link {
  color: #000;
  font-weight: 500;
}

.hamburger-btn {
  display: none;
  border: none;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  padding: 25px;
}

.mobile-menu.active {
  transform: translateY(0);
}

.close-btn {
  border: none;
  background: transparent;
  font-size: 40px;
  cursor: pointer;
}

.mobile-links {
  clear: both;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.mobile-links a {
  color: #000;
  text-decoration: none;
  font-size: 25px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none !important;
  }

  .hamburger-btn {
    display: block;
    margin-left: auto;
  }
}

/* Small screens: horizontal scroll cards */
@media (max-width: 767px) {
  .hero-slider {
    padding: 40px 0;
  }

  .eyebrow {
    font-size: 10px;
  }

  .reviews-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }

  .reviews-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .reviews-row {
    flex-wrap: nowrap;
    margin-left: 0;
    margin-right: 0;
  }

  .review-col {
    flex: 0 0 85%;
    max-width: 85%;
  }

  .review-card {
    height: 100%;
  }

  .blog-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .blog-scroll::-webkit-scrollbar {
    display: none;
  }

  .blog-row {
    flex-wrap: nowrap;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-col {
    flex: 0 0 80%; /* slightly smaller than reviews for better spacing */
    max-width: 80%;
  }

  .card {
    height: 100%;
  }
}

.bt,
.bt:hover {
  background: #f6664c;
  color: white;
}
.content-card,
.contact-form {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(19, 34, 56, 0.1);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-radius: 28px;
  padding: 25px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li + li {
  margin-top: 18px;
}
.contact-list-dark li,
.contact-list-dark a {
  color: #607087;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(19, 34, 56, 0.1);
  border-radius: 14px;
  background: #fff;
  color: #132238;
}

.scroll-wrapper {
  overflow: hidden;
  width: 100%;
}

.scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollLeft 100s linear infinite;
}

.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}

.scroll-card {
  flex: 0 0 calc((100vw - 120px) / 4);
  max-width: calc((100vw - 120px) / 4);
}

.scroll-card img {
  height: 230px;
  object-fit: cover;
}

.rating {
  color: #f5b301;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .scroll-track {
    gap: 16px;
    animation-duration: 22s;
  }

  .scroll-card {
    flex: 0 0 calc((100vw - 48px) / 2);
    max-width: calc((100vw - 48px) / 2);
  }

  .scroll-card img {
    height: 170px;
  }
}

.video-column {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

/* Content above video */
.content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 30px;
}

.card {
  border-radius: 8px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}

.card-body {
  padding: 8px 6px;
}

.card-body h5 {
  font-size: 18px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-body h6 {
  font-size: 18px;
  margin: 0;
}

@media (max-width: 767px) {

  .card img {
    height: 100%;
  }

  .card-body {
    padding: 6px 4px;
  }

  .card-body h5 {
    font-size: 15px;
  }

  .card-body h6 {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  .card img {
    height: 100%;
  }
}

#ht-ctc-chat {
  position: fixed;
  bottom: 145px;
  right: 25px;
  cursor: pointer;
  z-index: 99999999;
  animation: whatsappFloat 1.5s ease-in-out infinite;
}

@keyframes whatsappFloat {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}












