@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/Open_Sans/OpenSans-Medium.ttf') format('truetype');
  font-style: normal;
}

body {
  font-family: 'Inter', 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html,
body {
  overflow: auto;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1280px) and (max-width: 1440px) {
  body {
    font-size: 15px;
  }
}

/* =========================
   NAVBAR - IMPROVED RESPONSIVE
========================= */
a:hover {
  color: unset;
  text-decoration: unset;
}

.navbar {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #000;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 45px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: fixed;
  z-index: 10;
}

.logo img {
  width: 182px;
  height: 52px;
  cursor: pointer;
  max-width: 100%;
}

/* ================= DESKTOP NAV ================= */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding: 0;
}

.navbar-brand {
  margin-right: 0rem;
}

.main-menu {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  padding: 25px 0;
}

.main-menu:hover {
  color: #5aa9ff;
}

/* ================= MEGA MENU ================= */
.dropdown.mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #f6f9ff;
  padding: 40px 20px 40px 40px;
  display: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dropdown.mega:hover .mega-menu {
  display: block;
}

.mega-inner {
  margin: auto;
  display: flex;
  gap: 40px;
}

.mega-col h4 {
  font-size: 16px;
  color: #7250CC;
  margin-bottom: 10px;
}

.mega-col a {
  display: block;
  font-size: 14px;
  color: #222;
  margin-bottom: 10px;
  text-decoration: none;
}

/* ================= RESOURCES MEGA MENU ================= */

.nav-item.resources {
  position: relative;
}

/* Desktop dropdown */
.resources-mega {
  position: absolute;
  top: 45px;
  /* main-menu ke bilkul niche */
  left: 50%;
  transform: translateX(-50%);
  background: #f6f9ff;
  display: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  z-index: 99;
  padding: 0px 25px;
  white-space: nowrap;
}

/* Hover only for desktop */
@media (min-width: 992px) {
  .nav-item.resources:hover .resources-mega {
    display: block;
  }
}

/* Grid */
.industries-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: left;
  padding: 0px 15px;
  gap: 0px 30px;
}

.company-grid {
  margin: auto;
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
}

.resources-grid {
  margin: auto;
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

/* Card */
.industries-card {
  display: flex;
  padding: 15px 15px;
  justify-content: left;
}

.industries-card:hover,
.industries-card.active {
  background: #eef4ff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.industries-card h4 {
  font-size: 14px;
  margin: 0 0 6px;
  color: #222;
  text-decoration: none;
  font-weight: 400;
  white-space: nowrap;
}

.resource-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  text-decoration: none;
  transition: 0.25s ease;
  justify-content: center;
}

.resource-card:hover,
.resource-card.active {
  background: #eef4ff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.resource-card h4 {
  font-size: 14px;
  margin: 0 0 6px;
  color: #222;
  font-weight: 400;
  white-space: nowrap;
}

/* login (desktop) */
.login-btn button {
  background-color: #7250CC;
  color: white;
  border: none;
  padding: 4px 24px;
  border-radius: 25px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  margin-right: -5px;
  transition: background-color 0.3s ease;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #000;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  padding: 18px 20px;
  display: none;
  z-index: 100;
}

.mobile-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.mobile-link {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}




/* default (closed) — right arrow */
.mobile-link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;

  background-image: url("/website/images/slider/menu_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  transition: transform 0.2s ease;
}

.mobile-link.open::after {
  transform: rotate(90deg);
}

/* open — arrow rotates down */
.mobile-link.open::after {
  transform: rotate(90deg);
}

.mobile-sub {
  display: none;
  padding: 8px 10px;
}

.mobile-sub a {
  color: #292929;
}

/* second-level submenu (new) */
.mobile-sub-item {
  padding: 6px 0;
}

.mobile-link-2 {
  display: block;
  line-height: 2;
}

.mobile-link-2 a {
  display: block;
}

.mobile-sub-2 {
  display: none;
  padding: 6px 12px;
  border-left: 2px solid #eee;
}

.mobile-sub-2 a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
}

.mobile-link-2::after {
  content: none;
}

/* ✅ arrow only when submenu exists */
.mobile-link-2.has-sub::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 6px;

  background-image: url("/website/images/slider/menu_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  transition: transform 0.2s ease;
}

.mobile-link-2.open::after {
  transform: rotate(90deg);
}


.mobile-login {
  width: 100%;
  margin-top: 18px;
  border: none;
  padding: 10px;
  border-radius: 24px;
  background: #6f4be6;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px) {

  .login-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

.login-btn button:hover {
  background-color: #5532cc;
}

.nav-links .login-btn {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 18px;
  justify-content: space-between;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* =========================
   IMPROVED RESPONSIVE NAVBAR
========================= */

/* Large Desktop */
@media (min-width: 1441px) {
  .navbar {
    padding: 5px 60px;
  }

  .nav-links {
    gap: 60px;
  }
}

/* Standard Desktop */
@media (max-width: 1200px) {
  .navbar {
    padding: 5px 30px;
  }

  .nav-links {
    gap: 40px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .navbar {
    padding: 12px 25px;
  }

  .nav-links {
    gap: 30px;
  }

  .nav-links a {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 25px 0 30px;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .login-btn {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .navbar>.login-btn {
    display: none;
  }

  /* disable hover on mobile (use clicks instead) */
  .dropdown:hover>.dropdown-menu {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .nav-links {
    top: 60px;
    gap: 20px;
    padding: 20px 0 25px;
  }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* =========================
   FOOTER - IMPROVED RESPONSIVE
========================= */
a {
  color: inherit;
  text-decoration: none;
}

footer {
  background: #000;
  padding: 40px 20px 20px;
  color: #C3BEFF;
  font-size: 12px;
  line-height: 16px;
  margin-top: 10rem;
  padding-bottom: 3.5rem;
}

.contact-us h5:hover {
  color: #AFAFAF;
}

.contact-us p:hover {
  color: #AFAFAF;
}

.address h5:hover {
  color: #AFAFAF;
}

.address p:hover {
  color: #AFAFAF;
}

.footer-column .contact-us p {
  margin-bottom: 0.5rem;
}

.footer-column .address {
  margin-top: 1rem;
}

.footer-column .address p {
  margin-bottom: 0.5rem;
}

.gdpr-info {
  padding: 10px 16px;
  background: #6c49c9;
  color: #fff;
  line-height: 20px;
  text-align: center;
  font-size: 10px;
  position: fixed;
  transition: all 0.5s;
  width: 100%;
  z-index: 10000;
}

.gdpr-info.open {
  bottom: 0;
}

.gdpr-info.open.gclose {
  bottom: -103%;
}

.gdpr-info .underline {
  text-decoration: underline;
  color: #fff;
}

a.gdpr-btn,
a.gdpr-btn:hover {
  background-color: #ffffff;
  color: #19171a;
}

/* Top Banner */
.top-banner {
  background-image: url("../images/slider/sub-footer.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: min(1145px, 100%);
  margin: -140px auto 30px;
  border-radius: 18px;
  padding: 30px 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-shadow: 7px 13px 33.4px -3px rgba(255, 255, 255, 0.235);
}

.top-banner-left {
  max-width: 600px;
  padding-top: 0.5rem;
}

.top-banner h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 25px);
}

.top-banner p {
  font-weight: 400;
  font-size: clamp(12px, 2vw, 13px);
  line-height: 22px;
  margin-bottom: 0rem;
}

.btn-connect {
  background: #EDEDED;
  border-radius: 30px;
  padding: 2px 3px 2px 8px;
  font-weight: 600;
  font-size: clamp(12px, 2vw, 14px);
  color: #7250CC;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #7250CC;
  transition: all 0.3s ease;
  white-space: nowrap;
}

button:focus {
  outline: unset;
  outline: unset;
}

.connect-us {
  font-size: 16px;
}

.btn-connect:hover {
  background: #EDEDED;
}

.btn-connect svg {
  width: 40px;
  height: 40px;
  padding: 1px;
  background-color: #7250CC;
  border-radius: 50%;
  stroke: #ffffff;
  transform: rotate(316deg);
}

/* Footer Structure */
.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: clamp(40px, 4vw, 150px);
  padding: 15px 48px;
}

.footer-logo-section img.logo {
  width: min(151px, 90%);
  margin-bottom: 16px;
}

.certifications {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.certifications img {
  height: 55px;
  max-width: 67%;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 18px;
  font-size: 19px;
  color: white;
  flex-wrap: wrap;
}

.social-icons a {
  position: relative;
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons a i {
  font-size: 16px;
  color: #fff;
  /* icon color */
  position: relative;
  z-index: 2;
}

/* WHITE CIRCLE OUTLINE */
.social-icons a::before {
  content: "";
  position: absolute;
  inset: 0;
  outline: 1px solid #fff;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.15;
}

/* OPTIONAL: hover smooth glow (figma feel) */
.social-icons a:hover::before {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-width: min(450px, 100%);
  gap: 60px;
}

.footer-column h5 {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  color: #7250CC;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding-left: 0px;
}

.footer-column li {
  margin-bottom: 12px;
  font-size: clamp(11px, 2vw, 12px);
  line-height: 16px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: column;
  /* 🔥 IMPORTANT */
  grid-template-rows: repeat(12, auto);
  gap: 7.5px 28px;
  /* row-gap | column-gap */
}

.solutions-grid li {
  list-style: none;
}

.footer-column li a {
  color: #C3BEFF;
}

.footer-column li a:hover {
  color: #AFAFAF;
}

.footer-column .highlight {
  color: #FFDA1F;
  font-weight: 700;
  font-size: 8px;
  position: absolute;
  padding-left: 4px;
  letter-spacing: 0.6px;
}

/* Contact Section */
.footer-contact {
  flex: 1.3;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact h5 {
  color: #7250CC;
  margin-bottom: 5px;
}

.footer-contact a,
.footer-contact p {
  color: #C3BEFF;
}

/* Bottom Footer */
.footer-bottom {
  position: relative;
  padding: 15px 25px;
  font-size: clamp(10px, 2vw, 11px);
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
  border-top: 1px solid #3C3745;
}

.footer-bottom-left,
.footer-bottom-right {
  color: white;
  font-size: clamp(12px, 2vw, 14px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  line-height: 19.6px;
  letter-spacing: 0.14px;
}

.footer-bottom-right {
  flex: 2;
  text-align: right;
  min-width: min(200px, 100%);
}

.footer-bottom-right a {
  margin-left: clamp(10px, 2vw, 5%);
  font-size: clamp(11px, 2vw, 12px);
  color: #fff;
  font-weight: 400;
}

.footer-group {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* =========================
   IMPROVED RESPONSIVE FOOTER
========================= */

/* Large Desktop */
@media (min-width: 1441px) {
  .footer-top {
    justify-content: space-around;
  }
}

/* Tablet screens */
@media (min-width: 769px) and (max-width: 1024px) {

  .footer-columns {
    display: flex;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
  }

  /* SOLUTIONS */
  .footer-columns>.footer-column:first-child {
    grid-column: 1 / 2;
  }

  /* SOLUTIONS LIST = 2 COLS */
  .solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 12px;
  }

  /* INDUSTRIES */
  #industries {
    grid-column: 2 / 3;
  }

  /* COMPANY + CONTACT + ADDRESS = NEW ROW */
  .footer-group {
    grid-column: 1 / -2;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
    width: 100%;
  }

  /* CLEANUP */
  .footer-column {
    text-align: left;
    width: 100%;
  }
}


@media (max-width: 768px) {
  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-group {
    display: block;
  }

  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Mobile screens */
@media (max-width: 768px) {
  footer {
    margin-top: 5rem;
    padding: 30px 15px 15px;
  }

  .top-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
    margin: -100px auto 40px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 20px 15px;
  }

  .footer-logo-section img.logo {
    width: 130px;
  }

  .certifications {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icons {
    justify-content: center;
    gap: 20px;
  }

  .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Solutions full width */
  .footer-columns>.footer-column:first-child {
    width: 100%;
  }

  /* Industries + Company row */
  .footer-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
  }

  /* SOLUTIONS 2-column list */
  .solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }

  .solutions-grid li {
    list-style: none;
  }

  /* Text alignment fix */
  .footer-column {
    text-align: left;
  }

  .footer-column {
    min-width: auto;
    width: 100%;
  }

  .footer-contact {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }

  .footer-bottom-right {
    text-align: center;
  }

  .footer-bottom-right a {
    display: inline-block;
    margin: 6px 10px;
  }
}

@media (max-width: 991px) {
  .solutions-grid {
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .btn-connect {
    width: auto;
    justify-content: center;
    font-size: 13px;
    padding: 5px 5px;
  }

  .top-banner {
    padding: 20px 15px;
    border-radius: 14px;
    margin: -80px auto 30px;
  }

  .footer-columns {
    gap: 25px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .footer-bottom-right a {
    margin: 5px;
    font-size: 11px;
  }

  .social-icons {
    gap: 15px;
  }
}

/* =========================
   SLIDER - IMPROVED RESPONSIVE
========================= */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 710px;
  background-image: url(../images/slider/banner_image.svg);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
  padding: 0px 87px 28px 45px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-section>* {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(781px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 6vw, 0px);
  margin-top: -6.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-weight: 800;
  font-size: clamp(32px, 6vw, 57px);
  line-height: clamp(40px, 7vw, 75px);
  color: black;
  font-family: 'Open Sans', sans-serif;
}

.hero-title .highlight {
  color: #7250cc;
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  line-height: clamp(20px, 3vw, 22px);
  color: black;
}

.contact-button-right {
  position: fixed;
  right: 32px;
  bottom: 40px;
  /* thoda upar */
  z-index: 9999;
}

@media (max-width: 768px) {
  .contact-button-right {
    right: 16px;
    bottom: 16px;
  }
}

/* ---------- Button ---------- */
.cta-button {
  width: min(230px, 100%);
  height: clamp(42px, 6vw, 45px);
  background: black;
  border-radius: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #333;
}

/* ---------- Stats Section ---------- */
.stats {
  display: flex;
  align-items: center;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-value {
  font-size: clamp(24px, 4vw, 30px);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: black;
}

.stat-label {
  font-size: clamp(12px, 2vw, 12px);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: clamp(16px, 2vw, 18.93px);
  letter-spacing: 0.5px;
}

.divider {
  width: 1px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0 20px;
}

.team-divider {
  width: 50px;
  margin-bottom: 15px;
  margin-left: -25px;
  height: 0.5px;
  background: #DADADB;
  transform: rotate(90deg);
}

.about-us-divider {
  width: 50px;
  margin-left: -0px;
  height: 0.5px;
  background: #67A49E;
  transform: rotate(90deg);
}

/* ---------- Logo Bar ---------- */
.logo-bar {
  background: black;
  width: 100%;
  overflow: hidden;
  margin-top: -4rem;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}

.logo-list {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}


.logo-list img {
  max-width: 140px;
  height: auto;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.logo-list img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes scroll-logos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.star_postion {
  margin-top: -50px;
  width: 4%;
}

/* =========================
   IMPROVED RESPONSIVE SLIDER
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero-section {
    padding: 50px 40px;
  }

  .hero-content {
    width: 100%;
  }

  .stats {
    justify-content: flex-start;
    gap: 30px;
  }

  .divider {
    display: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
    text-align: center;
    align-items: center;
    margin-top: 0px;
  }

  .logo-bar {
    margin-top: -0.1rem;
  }

  .hero-content {
    align-items: flex-start;
    margin-top: 0rem;
  }

  .hero-text {
    text-align: left;
  }

  .stats {
    /* justify-content: center; */
    text-align: center;
  }

  .stat-box {
    align-items: center;
  }

  .logo-list img {
    max-width: 100px;
  }

  .star_postion {
    margin-top: -20px;
    width: 5%;
  }

  .team-divider {
    display: none;
  }

  .about-us-divider {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  @media (max-width: 480px) {
    .hero-section {
      padding: 50px 15px;
      min-height: 400px;
      background-size: auto;
      background-position: left;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  }

  .stats {
    /* flex-direction: column; */
    gap: 15px;
  }

  .logo-list {
    gap: 15px;
  }

  .logo-list img {
    max-width: 80px;
  }

  .star_postion {
    display: none;
  }
}

/* =========================
   AI SECTION - IMPROVED RESPONSIVE
========================= */
.ai-section {
  background: #efefef;
  padding: 60px 15px 0px 100px;
  overflow: hidden;
}

.ai-header {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ai-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.ai-divider {
  display: inline-block;
  width: 0.5px;
  height: 45px;
  margin-top: 1rem;
  background-color: #5C5C5C;
}

.ai-divider1 {
  display: inline-block;
  width: 0.5px;
  height: 38px;
  background-color: #5C5C5C;
}

.ai-desc {
  flex: 1;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  margin-top: 1rem;
  min-width: min(300px, 100%);
}

/* Carousel Layout */
.ai-carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Card */
.ai-card {
  background: #fff;
  border-radius: 20px;
  flex: 0 0 min(340px, 85vw);
  height: 385px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ai-card-content {
  padding: 15px;
}

.ai-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.ai-card p {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  margin-bottom: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  background: #382078;
  color: #EBEBEB;
  font-size: clamp(11px, 1.2vw, 12px);
  font-weight: 700;
  border-radius: 6px;
  padding: 6px 12px;
  white-space: nowrap;
}

.ai-card img {
  width: 100%;
  margin-bottom: 10px;
  height: clamp(150px, 25vw, 175px);
  object-fit: cover;
}

/* Controls */
.carousel-controls {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.nav-btn {
  width: clamp(22px, 4vw, 25px);
  height: clamp(22px, 4vw, 25px);
  background: #424242;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s ease;
  border: 1px solid #424242;
}

.nav-btn:hover {
  background: #303030;
}

.nav-btn svg {
  width: clamp(16px, 3vw, 18px);
  height: clamp(16px, 3vw, 18px);
  stroke: #ffffff;
  stroke-width: 2.5;
  fill: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dots span {
  width: clamp(8px, 2vw, 10px);
  height: clamp(8px, 2vw, 10px);
  background: #cfcfcf;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.carousel-dots .active {
  background: #7B61FF;
  width: clamp(10px, 2vw, 12px);
  height: clamp(10px, 2vw, 12px);
}

/* =========================
   FEATURES SECTION - IMPROVED RESPONSIVE
========================= */
.features-section {
  background: #000;
  padding: clamp(40px, 8vw, 60px) clamp(20px, 6vw, 125px);
  text-align: center;
  color: #fff;
  width: 100%;
  height: auto;
  background-image: url("../images/slider/feature_section.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.features-title {
  font-family: "open", sans-serif;
  font-size: clamp(32px, 6vw, 44px);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: left;
}

.features-grid {
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 20px 16px;
  max-width: 1200px;
}

.feature-card {
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 20px 15px 0px;
  text-align: left;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.08);
  width: 325px;
  height: 165px;
  min-height: 165px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  font-size: clamp(28px, 5vw, 32px);
  margin-bottom: 15px;
}

.feature-images {
  width: clamp(25px, 4vw, 30px);
  margin-bottom: 15px;
}

.feature-card h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 2px;
}

.feature-card p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #323232;
  line-height: 1.4;
}

/* =========================
   TESTIMONIALS - IMPROVED RESPONSIVE
========================= */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  max-width: 1220px;
  padding: 60px 0px 0px 95px;
}

.testimonial-header h2 {
  font-weight: 700;
  font-size: 48px;
  font-family: 'Open Sans';
  margin: 0;
  color: #000;
}

.testimonial-arrows {
  display: flex;
  gap: 8px;
}

.testimonial-arrow-btn {
  width: 25px;
  height: 25px;
  background-color: #3f3d56;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s;
}

.testimonial-arrow-btn:hover:not(:disabled) {
  background-color: #5a4ad1;
}

.testimonial-arrow-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Carousel container with horizontal scroll and blur edges */
.testimonial-wrapper {
  position: relative;
  padding-left: 50px;
}

.testimonial {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
  /* Firefox */
}

.testimonial::-webkit-scrollbar {
  display: none;
  /* WebKit */
}

/* Blur overlays on left and right edges */
.testimonial-wrapper::before,
.testimonial-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  pointer-events: none;
  z-index: 10;
  border-radius: 10px;
}

.testimonial-wrapper::before {
  left: 0px;
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.5) 100%);
}

.testimonial-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0.5) 100%);
}

/* Individual testimonial card */
.testimonial-card {
  width: 360px;
  height: 270px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 16px 20px 24px;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

#testimonial {
  padding-right: 80px;
}

/* Quote icon */
.quote-icon {
  font-size: 22px;
  color: #5a4ad1;
  user-select: none;
}

/* Profile container */
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 0.5rem;
}

.profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 3px rgba(90, 74, 209, 0.25);
}

/* Name and role */
.profile-info {
  font-size: 13px;
  color: #222;
}

.profile-info strong {
  font-weight: 700;
  display: block;
  font-size: 21px;
}

.profile-role {
  font-weight: 400;
  color: #414141;
  font-size: 12px;
}

/* Testimonial text */
.testimonial-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0;
  color: #474747;
  margin-top: 12px;
}

.testimonial-text strong {
  font-weight: 600;
  /* Bold for "Enalytix" just like screenshot */
  font-style: italic;
  /* Keep italic even when bold */
}

/* =========================
   CAROUSEL RESULTS - IMPROVED RESPONSIVE
========================= */
.container-result {
  background-color: #EBEBEB;
  padding-bottom: 2rem;
}

.container-result .header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 22px);
  font-size: clamp(26px, 4vw, 48px);
  margin-bottom: 20px;
  padding-top: clamp(30px, 6vw, 60px);
  text-align: center;
  flex-wrap: wrap;
}

.container-result .header strong {
  white-space: nowrap;
}

.container-result .header span {
  font-weight: 500;
  font-size: clamp(12px, 2vw, 14px);
  color: #414141;
  max-width: 600px;
  font-family: 'Inter', sans-serif;
}

/* Carousel wrapper */
.carousel {
  position: relative;
  width: 100%;
  height: 360px;
  user-select: none;
}

/* Slide container with perspective */
.slides {
  margin-left: .5rem;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow: visible;
  perspective: 1500px;
}

/* Card base */
.slide {
  position: absolute;
  top: 30px;
  left: 50%;
  transform-origin: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Front card styling */



.slide.front {
  width: 720px;
  height: 372px;
  transform: translateX(-50%) scale(1);
  z-index: 10;
  opacity: 1;
}

/* Image container and overlay */
.slide.front .image-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
}

.carousel-result {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Brand logo top-left on image */
.slide.front .brand-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 142px;
  height: 38px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom-right-radius: 25px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

/* Title text over image, bottom left */
.slide.front .title {
  position: absolute;
  bottom: 206px;
  left: 14px;
  right: 14px;
  color: white;
  font-weight: 700;
  font-size: 19px;
  user-select: none;
  z-index: 2;
  line-height: 1.15;
}










/* Content area below image */
.slide.front .content {
  padding: 02px 20px;
  background: white;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 -3px 10px rgb(0 0 0 / 0.05);
}

.badge {
  font-size: 68%;
}

.slide.front .badge {
  background-color: #382078;
  color: white;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 16px;
}

.slide.front .read-more {
  color: #9473EA;
  font-weight: 500;
  font-size: 14px;
  float: right;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  cursor: pointer;
  margin-right: 1rem;
  margin-top: 5px;
  text-decoration: underline;
}

.slide.front .read-more svg {
  width: 14px;
  height: 14px;
  fill: #9473EA;
}

.slide.front .desc {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: #333;
}

.slide.front .desc strong {
  font-weight: 700;
}

/* Side cards styling */
.slide.side {
  width: 370px;
  height: 345px;
  top: 40px;
  border-radius: 40px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  color: white;
  font-weight: 700;
  font-size: 13px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.12);
  user-select: none;
}

.slide.side .brand {
  margin-bottom: 12px;
  position: absolute;
  top: 0px;
  left: 0;
  width: 145px;
  height: 42px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom-right-radius: 25px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.slide.side .text {
  white-space: normal;
  line-height: 1.18;
  margin-top: 3rem;
}

.slide.side.left1 {
  width: 650px;
  height: 350px;
  transform: translateX(calc(-18% - 420px)) scale(0.82);
  opacity: 0.65;
  z-index: 6;
}

.slide.side.left2 {
  width: 750px;
  height: 350px;
  transform: translateX(calc(-5% - 635px)) scale(0.65);
  opacity: 0.4;
  z-index: 3;

}

.slide.side.right1 {
  width: 650px;
  height: 350px;
  transform: translateX(calc(-82% + 420px)) scale(0.82);
  opacity: 0.65;
  z-index: 6;
}

.slide.side.right2 {
  width: 625px;
  height: 350px;
  transform: translateX(calc(-100% + 650px)) scale(0.65);
  opacity: 0.4;
  z-index: 3;
}

/* Hide all slides by default (except active front and visible sides) */
.slide.front.active {
  opacity: 1;
  pointer-events: auto;
  border-radius: 40px;
}

.slide.side.active {
  opacity: 1;
  pointer-events: auto;
}

/* Nav Controls */
.nav-arrow {
  font-size: 24px;
  color: #999;
  cursor: pointer;
  border: none;
  background: none;
  padding: 8px 14px;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-arrow:focus {
  outline: unset;
  outline: unset;
}

.nav-controls {
  position: relative;
  width: 100%;
  margin-top: 70px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  user-select: none;
}

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .slide.front {
    width: 90%;
    height: auto;
  }

  .slide.front .image-container {
    height: 320px;
  }

  .slide.front .title {
    bottom: 180px;
    font-size: 18px;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 1024px) {

  .container-result .header {
    font-size: 36px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .nav-controls {
    margin-top: 100px;
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {

  .container-result .header span {
    font-size: 13px;
  }

  .testimonial-header {
    padding: 35px 0px 0px 45px;
  }

  .testimonial-wrapper {
    padding-left: 0px;
  }

  .ai-divider1 {
    display: none;
  }

  .testimonial-arrows {
    padding-right: 35px;
  }

  .nav-controls {
    margin-top: 110px;
    margin-bottom: 20px;
  }
}

/* Large Mobile (max-width: 768px) */
@media (max-width: 768px) {

  .container-result .header {
    font-size: 30px;
    gap: 6px;
  }

  .container-result .header strong {
    white-space: normal;
    /* Allow text to wrap */
  }

  .container-result .header span {
    font-size: 12px;
  }

  .slide.side {
    display: none;
  }

  .slide.front {
    width: 95%;
    transform: translateX(-50%) scale(1);
  }

  .slide.front .image-container {
    height: 310px;
  }

  .slide.front .title {
    bottom: 200px;
    font-size: 17px;
  }

  .slide.front .desc {
    font-size: 12px;
  }

  .testimonial-header {
    padding: 35px 0px 0px 12px;
  }

  .testimonial-wrapper {
    margin-left: -20px;
  }

  .testimonial-arrows {
    padding-right: 15px;
  }

  .testimonial-wrapper::before,
  .testimonial-wrapper::after {
    height: unset;
    width: unset;
  }

  .slide.front .read-more {
    margin-top: 0px;
  }

  .feature-card {
    width: 100%;
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {

  .container-result .header {
    flex-direction: column;
    font-size: 26px;
    text-align: center;
    gap: 4px;
  }

  .container-result .header span {
    font-size: 12px;
    padding: 0px 15px;
  }

  .slide.front {
    width: 95%;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.15);
  }

  .slide.front .image-container {
    height: 300px;
  }

  .slide.front .title {
    bottom: 200px;
    font-size: 16px;
  }

  .slide.front .content {
    padding: 12px 15px;
  }

  .slide.front .desc {
    font-size: 12px;
    line-height: 1.4;
  }

  .slide.front .read-more {
    font-size: 13px;
    margin-right: 0;
  }
}






/* =========================
   EXTRA SMALL SCREEN OPTIMIZATIONS
========================= */
@media (max-width: 360px) {

  .ai-section,
  .features-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonial-header {
    justify-content: center;
    text-align: center;
  }

  .feature-card {
    padding: 15px;
  }

  .logo-list img {
    max-width: 70px;
  }

  .slide.front .image-container {
    height: 170px;
  }

  .slide.front .title {
    bottom: 200px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .ai-section {
    padding: 25px 15px 0px;
  }

  .ai-header {
    flex-direction: column;
    gap: unset;
  }

  .ai-title {
    font-size: 32px;
  }

  .ai-card {
    flex: 0 0 min(340px, 85vw);
    height: 350px;
  }

  .ai-divider {
    display: none;
  }
}

/* =========================
   PRINT STYLES
========================= */
@media print {

  .navbar,
  .footer,
  .gdpr-info,
  .nav-controls,
  .testimonial-arrows,
  .carousel-controls {
    display: none !important;
  }
}

@media (max-width: 360px) {
  .nav-controls {
    margin-top: 0px;

  }
}

/* Abour-us page css */
/* MAIN SECTION */
.impact-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 110px 45px;
  height: auto;
  min-height: 420px;
  background: linear-gradient(0deg, #FFFFFF 0%, #EADBFF 50%, #FFFFFF 100%);
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(120, 80, 220, 0.07);
}

/* LEFT CONTENT */
.impact-section .content {
  padding-right: 40px;
  margin-top: -90px;
}

.about-us {
  letter-spacing: 2px;
  color: #8f57ee;
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 0.5rem;
}

.impact-section h1 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.impact-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #393647;
}

/* RIGHT IMAGE */
.impact-section .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impact-section .image-container img {
  width: 384px;
  height: 380px;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(120, 80, 220, 0.07);
  object-fit: cover;
}


/* 992px – Tablets / Small Laptops */
@media (max-width: 992px) {
  .impact-section {
    padding: 0px 40px;
    gap: 30px;
  }

  .impact-section .content {
    margin-top: 140px;
  }

  .impact-section h1 {
    font-size: 25px;
  }

  .impact-section p {
    font-size: 13.5px;
  }

  .impact-section .image-container img {
    max-height: 300px;
  }
}

/* 768px – Tablets & Large Phones */
@media (max-width: 768px) {
  .impact-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
    height: auto;
  }

  .impact-section .content {
    padding-right: 0;
    padding-bottom: 30px;
    margin-top: 0px;
  }

  .impact-section h1 {
    font-size: 34px;
  }

  .impact-section p {
    font-size: 14px;
  }

  .impact-section .image-container img {
    max-height: 280px;
    width: 100%;
  }
}

/* 576px – Mobile Phones */
@media (max-width: 576px) {
  .impact-section {
    padding: 40px 20px;
    gap: 20px;
  }

  .about-us {
    font-size: 14px;
    padding-left: 0;
    margin-bottom: 10px;
  }

  .impact-section h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .impact-section p {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
  }
}

/* 400px – Small Phones */
@media (max-width: 400px) {
  .impact-section h1 {
    font-size: 24px;
  }

  .impact-section p {
    font-size: 12.5px;
  }
}

.dark-band {
  background-color: #24212A;
  padding: 44px 0;
  position: relative;
  width: 100%;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flex auto adjust */
.dark-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 20px 0px 20px 0px;
}

.dark-left {
  flex: 1 1 320px;
  max-width: 400px;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.4;
  letter-spacing: 1px;
  color: #FFFF;
  margin-left: -25px;
}

.dark-right {
  flex: 1 1 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  color: #fff;
}

.dark-right .col {
  flex: 1 1 250px;
  max-width: 350px;
}

.dark-right h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(16px, 2.3vw, 20px);
}

.dark-right p {
  font-size: 12px;
  line-height: 2;
  margin: 0;
}

/* Dot overlay auto adjust */
.dot-overlay {
  position: absolute;
  left: 3%;
  top: 35%;
  width: clamp(60px, 10vw, 80px);
  height: clamp(120px, 20vw, 210px);
  background-image: url(../images/about/squares.svg);
  background-size: cover;
  pointer-events: none;
}

/* --------------------------------------- */
/* Extra Smoothness for Very Small Screens */
/* --------------------------------------- */
@media (max-width: 768px) {
  .dark-left {
    margin-left: 0px;
  }
}

@media (max-width: 480px) {
  .dark-right {
    gap: 25px;
    justify-content: center;
  }

  .dot-overlay {
    left: 50%;
    top: auto;
    bottom: 10px;
    transform: translateX(-50%);
    opacity: 0.4;
  }
}

.timeline-section {
  width: 100%;
  padding: 40px 45px;
  font-family: 'Open Sans', sans-serif;
}

.timeline-section .title {
  font-size: 33px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
}

.timeline-box {
  background: #744DCE;
  padding: 35px 25px;
  border-radius: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap;
  gap: 20px;
}

/* Center horizontal line */
.timeline-box:before {
  content: "";
  position: absolute;
  top: 150px;
  left: 3%;
  right: 3%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

/* Arrow right */
.timeline-box:after {
  content: "";
  position: absolute;
  top: 147px;
  right: 35px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid white;
}

.timeline-item {
  width: 16%;
  min-width: 150px;
  text-align: left;
  position: relative;
}

.timeline-item h3 {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 10px;
  line-height: 1.5;
  width: 75%;
  margin-bottom: 22px;
}

/* Dot */
.timeline-item .dot {
  width: 18px;
  height: 18px;
  background: #cbbef5;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: 106px;
  left: 0;
  z-index: 3;
}

/* Active dot */
.timeline-item .dot.active {
  background: #00FFE6;
}

/* Year pill */
.timeline-item .year {
  background: #333;
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 2px 13px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 40px;
}

/* Active year pill color */
.year.active-year {
  background: #00FFE6;
  color: #000;
}

.year_margin_top {
  margin-top: 25px !important;
}

/* ---------------------------------------------------
   RESPONSIVE TABLET
---------------------------------------------------*/
@media (max-width: 992px) {

  .timeline-box {
    flex-wrap: wrap;
    gap: 50px;
  }

  .timeline-item {
    width: 48%;
    min-width: auto;
  }

  /* hide main horizontal line */
  .timeline-box:before {
    display: none;
  }

  .timeline-box:after {
    display: none;
  }

  /* reposition dots */
  .timeline-item .dot {
    position: relative;
    top: 0;
    margin-bottom: 10px;
  }

  /* year below dot */
  .timeline-item .year {
    margin-top: 0px;
    display: inline-block;
  }

  .timeline-section {
    padding: 40px 20px;
  }
}

/* ---------------------------------------------------
   MOBILE: all items full width
---------------------------------------------------*/
@media (max-width: 600px) {

  .timeline-item {
    width: 100%;
  }

  .year_margin_top {
    margin-top: 0px;
  }

  .timeline-item h3 {
    font-size: 16px;
  }

  .timeline-item p {
    font-size: 12px;
    width: 100%;
  }

  .dark-row {
    padding: 0px;
  }

  .timeline-item .dot {
    display: none;
  }
}

.about-impect {
  padding: 40px 0px 60px 0px;
}

.about-impect h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.about-impect .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: center;
}

.about-impect .card {
  background: #F1F0F0;
  border-radius: 36px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.02);
  width: 295px;
  padding: 20px 20px 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: unset;
}

.about-impect .icon-circle {
  background: #e9e3f7;
  color: #50446d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.about-impect .card h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-impect .card p {
  color: #555;
  font-size: 14px;
  margin: 0;
  font-weight: 400;
}

.team-section {
  width: 100%;
  background: #1f1d28;
  padding: 60px 160px;
  color: white;
  font-family: "Inter", sans-serif;
}

.team-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.team-header h2 {
  font-size: 30px;
  line-height: 1.3;
}

.team-header-title {
  max-width: 45%;
}

.team-subtext {
  opacity: 0.8;
  font-size: 14px;
  font-weight: 400;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 35px;
}

/* Team Card */
.team-card {
  position: relative;
}

.team-card .img-box {
  width: 100%;
  height: 225px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card .img-box img {
  width: 100%;
  height: 225px;
  display: block;
  object-fit: cover;
}

.team-card h4 {
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
}

.team-card .role {
  font-size: 13px;
  opacity: 0.75;
}

/* LinkedIn Icon */
.team-card .linkedin {
  position: relative;
  bottom: 30px;
  right: 3px;
  transform: translateY(100%);
}

.team-card .linkedin img {
  width: 22px;
  height: 22px;
}

.team-card .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.team-card .left-info h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.team-card .left-info .role {
  margin-top: 4px;
  font-size: 13px;
  color: #A0A0A0;
  font-weight: 500;
}

.team-card .linkedin i {
  font-size: 25px;
  color: #0A66C2;
  transition: 0.2s;
}

.team-card .linkedin:hover i {
  color: #004182;
}


/* ===== Responsive: Mobile & Tablet (max-width: 768px) ===== */
@media (max-width: 768px) {

  /* Grid 1 column */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0px !important;
  }

  /* Image below everything center aligned */
  .team-card {
    text-align: center !important;
  }

  .team-card .info-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-top: 14px;
  }

  .team-card .left-info h4,
  .team-card .left-info .role {
    text-align: center !important;
    width: 100%;
    margin-bottom: 0px;
  }

  /* LinkedIn icon center me */
  .team-card .linkedin {
    position: static !important;
    margin-top: -20px !important;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .team-card .linkedin i {
    font-size: 26px;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {

  /* Grid 1 column */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px !important;
  }
}

/* --- Compromise Section --- */
.compromise-section {
  width: 100%;
  margin-top: 40px;
}

.compromise-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.compromise-grid {
  display: flex;
  background: #0CD3BF;
  padding: 20px 20px;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: 17px;
  min-height: 100px;
}

.compromise-grid .icon {
  margin-top: 8px;
}

.compromise-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.compromise-item h4 {
  margin: 0;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 500;
  text-shadow: 0 0 0.6px currentColor;
  color: #000;
}

.compromise-item p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #414141;
  opacity: 0.8;
}

.icon {
  font-size: 18px;
  color: #000;
}

/* --- Career Section --- */
.career-section {
  margin-top: 60px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.career-left img {
  margin-left: 10rem;
  height: 308px;
}

.career-right {
  max-width: 510px;
}

.career-right h2 {
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 500;
  text-shadow: 0 0 0.6px currentColor;
  color: #000;
}

.career-right p {
  font-size: 15px;
  width: 90%;
  line-height: 1.6;
  margin-bottom: 25px;
}

.open-positions-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 3px 2px 8px;
  border-radius: 30px;
  background: #fff;
  border: 1.5px solid #7250CC;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #7250CC;
  transition: 0.3s ease;
  box-shadow: 3px 5px 4px rgba(0, 0, 0, 0.25),
    -4px -2px 4px rgba(0, 0, 0, 0.25);
}

.open-positions-btn .arrow {
  background: #7250CC;
  color: #fff;
  padding: 5px 5px;
  border-radius: 50%;
}

.open-positions-btn:hover {
  transform: translateY(-2px);
  color: #7250CC;
}

.media-coverage {
  text-align: center;
  padding: 40px 20px;
  background: #000;
}

.media-coverage h2 {
  font-size: 26px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 0 0.6px currentColor;
}

.media-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.media-logos img {
  height: auto;
  width: auto;
  object-fit: contain;
}

.media-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #7250CC;
  text-decoration: none;
  transition: 0.3s;
}

.media-link:hover {
  text-decoration: underline;
  color: #7250CC;
}

/* ============================
   RESPONSIVE — TABLETS (≤1024px)
============================ */
@media (max-width: 1024px) {

  .team-section {
    padding: 50px 60px;
  }

  .team-header {
    flex-direction: column;
    gap: 15px;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 25px;
  }

  .career-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding-bottom: 2rem;
  }

  .career-left img {
    margin-left: 0;
    width: 420px;
    height: auto;
  }

  .career-right p {
    width: 100%;
  }

  .compromise-grid {
    flex-wrap: wrap;
    padding: 20px;
  }

  .compromise-item {
    flex-basis: 48%;
  }

  .about-us-divider {
    display: none;
  }
}


/* ============================
   RESPONSIVE — MOBILE (≤768px)
============================ */
@media (max-width: 768px) {

  .team-section {
    padding: 40px 25px;
  }

  .team-header h2 {
    font-size: 26px;
    max-width: 100%;
  }

  .team-header-title {
    max-width: 100%;
  }

  .team-subtext {
    max-width: 100%;
  }

  .team-card .img-box img {
    width: 170px;
    height: 170px;
  }

  .career-section {
    flex-direction: column;
    gap: 30px;
  }

  .career-left img {
    width: 350px;
    height: auto;
    margin: 0 auto;
  }

  .career-right {
    padding: 10px;
  }

  .career-right h2 {
    font-size: 28px;
  }

  .career-right p {
    width: 100%;
    padding: 10px;
    text-align: left;
  }

  .open-positions-btn {
    font-size: 14px;
  }

  .compromise-grid {
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }

  .compromise-item {
    width: 100%;
    flex: 1;
  }

  .media-logos {
    flex-wrap: wrap;
    gap: 25px;
  }

  .media-logos img {
    width: 80px;
  }
}

/* ============================
   RESPONSIVE — SMALL MOBILE (≤480px)
============================ */
@media (max-width: 480px) {

  .team-section {
    padding: 30px 15px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-card .img-box img {
    width: 140px;
    height: 150px;
  }

  .career-left img {
    width: 280px;
  }

  .career-right h2 {
    font-size: 24px;
  }

  .compromise-section h2 {
    font-size: 22px;
  }

  .media-coverage h2 {
    font-size: 20px;
  }

  .media-logos img {
    width: 65px;
  }
}


.second-section {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 45px 45px 0px 45px;
  background: linear-gradient(0deg, #FFFFFF 0%, #C3BEFF 50%, #FFFFFF 100%);
  align-items: flex-end;
}

/* LEFT CONTENT */
.second-section .content {
  padding-right: 40px;
  margin-top: 75px;
}

.second-section h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}
.facility_intelligence h1 {
  font-size: 39px;
}
.second-section p {
  font-size: 14px;
  line-height: 1.7;
  color: #393647;
  padding-right: 5rem;
}

.open-postion {
  margin-top: 2rem;
}

.traffic_intelligence_button {
  margin-top: 4.5rem;
}

.smart-operation-postion {
  margin-top: 4rem;
}

.facial-based-position-button {
  margin-top: 3rem;
}

/* RIGHT IMAGE */
.second-section .image-container {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  width: 100%;
}

/* VIDEO OVERLAY */
.video-overlay {
  position: absolute;
  bottom: 2px;
  left: 2px;
  width: 170px;
  height: 120px;
  background: #fff;
  border-radius: 22px;
  padding: 5px;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* VIDEO */
.video-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.second-section .image-container img {
  width: 380px;
  height: 400px;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(120, 80, 220, 0.07);
  object-fit: cover;
}


/* Main Section */


.vms-feature-section {
  padding: 30px 40px 0px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.feature-left {
  display: flex;
  padding: 0 0px 0 50px;
  align-items: center;
}

.feature-left h1 {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
}

.feature-right {
  flex: 1 1 68%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 4rem 4rem 2.5rem;
}

.feature-row {
  display: flex;
  flex-direction: row;
  gap: 38px;
}

.feature-block {
  flex: 1 1 0;
  min-width: 230px;
  margin-bottom: 0;
}

.feature-block h3 {
  font-size: 15px;
  font-weight: 600;
}

.feature-block p {
  font-size: 14px;
  color: #3b3b3b;
}

.logo-block {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* ============================
   RESPONSIVE — TABLET (<=1024px)
   ============================ */
@media (max-width: 1024px) {

  /* ------ HERO SECTION ------ */
  .second-section {
    height: auto;
    padding: 60px 30px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .second-section .content {
    padding-right: 0;
    margin-top: 20px;
  }

  .second-section p {
    padding-right: 0;
  }

  .second-section .image-container img {
    width: 420px;
    height: 410px;
  }

  /* ------ FEATURE SECTION ------ */
  .vms-feature-section {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .feature-left {
    padding: 0 20px;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }

  .feature-left h1 {
    font-size: 28px;
  }

  .feature-right {
    padding: 1rem;
  }

  .feature-row {
    gap: 20px;
  }
}



/* ============================
   RESPONSIVE — MOBILE (<=768px)
   ============================ */
@media (max-width: 768px) {

  /* HERO SECTION */
  .second-section h1 {
    font-size: 30px;
  }

  .second-section p {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
  }

  .open-postion {
    margin-top: 2rem;
  }

  .traffic_intelligence_button {
    margin-top: 2rem;
  }

  .smart-operation-postion {
    margin-top: 2rem;
  }

  .facial-based-position-button {
    margin-top: 2rem;
  }

  .second-section .image-container img {
    width: 300px;
    height: 290px;
  }

  /* FEATURES SECTION */
  .feature-right {
    padding: 1rem 0;
    gap: 24px;
  }

  .feature-row {
    flex-direction: column;
    gap: 25px;
  }

  .feature-block {
    min-width: auto;
  }

  .feature-block h3 {
    font-size: 14px;
  }

  .feature-block p {
    font-size: 13px;
  }

  .logo-block {
    display: none;
  }

  .second-section .image-container {
    margin-top: 10px;
  }
}



/* ============================
   SMALL MOBILE (<=480px)
   ============================ */
@media (max-width: 480px) {

  .second-section {
    padding: 20px 15px;
  }

  /* HERO */
  .second-section h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .second-section p:nth-of-type(1) {
    font-size: 18px !important;
  }

  .second-section .image-container img {
    width: 100%;
    height: 320px;
  }

  /* FEATURES */
  .feature-left h1 {
    font-size: 22px;
  }

  .feature-block h3 {
    font-size: 13px;
  }

  .feature-block p {
    font-size: 12px;
  }

  .divider2 {
    display: none;
  }
}

/* Section wrapper */
.trust-section {
  padding: 72px 65px 90px;
  color: #111;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  --bg: #26242A;
  --card-bg: #ffffff;
  --muted: #6b6b6b;
  --accent: #7b3df2;
  --accent-100: rgba(235, 219, 255, 0.18);
}

.trust-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* Title */
.trust-title {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  margin: 0 0 36px 0;
  line-height: 1.05;
  /* left align like screenshot */
  text-align: left;
}

/* Cards row */
.trust-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  justify-content: flex-start;
}

/* Each card */
.trust-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 15px 15px;
  width: 400px;
  height: 200px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
}

/* icon circle (top-left inside card) */
.trust-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #DDD7EE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.trust-icon-circle img {
  width: 28px;
  height: 28px;
  display: block
}

/* tag pill */
.trust-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  padding: 0px 14px;
  border-radius: 7px;
  font-size: 16px;
  margin-bottom: 2px;
  width: max-content;
}

/* thin divider */
.trust-hairline {
  height: 1px;
  background: #e9e7eb;
  margin: 10px 0 10px 0;
  width: 60%;
}

/* card title + desc */
.trust-card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #111;
  line-height: 20px;
}

.trust-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  max-width: 420px;
  font-weight: 400;
}

/* subtle spacing at bottom so cards are visually like screenshot */
/* Responsive: tablets -> 2 columns */
@media (max-width: 1024px) {
  .trust-title {
    font-size: 40px
  }

  .trust-row {
    gap: 20px
  }

  .trust-card {
    width: calc((100% - 20px) / 2);
    padding: 28px;
    border-radius: 20px
  }

  .trust-icon-circle {
    width: 50px;
    height: 50px
  }
}

/* Mobile: single column stacked; center content inside cards */
@media (max-width: 640px) {
  .trust-section {
    padding: 48px 16px
  }

  .trust-title {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center
  }

  .trust-row {
    flex-direction: column;
    gap: 20px
  }

  .trust-card {
    width: 100%;
    padding: 22px;
    border-radius: 16px;
    align-items: center;
    /* center inside card on mobile */
    text-align: center;
  }

  .trust-icon-circle {
    margin-bottom: 12px
  }

  .trust-tag {
    margin-bottom: 12px
  }

  .trust-hairline {
    width: 60%;
    margin-left: auto;
    margin-right: auto
  }

  .trust-card-title {
    font-size: 16px
  }

  .trust-card-desc {
    max-width: 100%;
    font-size: 14px
  }
}

/* very small phones */
@media (max-width: 380px) {
  .trust-title {
    font-size: 22px
  }

  .trust-tag {
    padding: 6px 12px;
    font-size: 13px
  }

  .trust-icon-circle {
    width: 50px;
    height: 50px
  }
}

.dispute-section {
  margin-bottom: -50px;
  background: #ffffff;
}

.dispute-container {
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 125px 45px 60px 88px;
}

/* LEFT SIDE */
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.2;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step {
  background: #e9d9fe;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  color: #1a1a1a;
  width: 563px;
  height: 57px;
  box-sizing: border-box;
  text-align: center;
}

/* RIGHT SIDE IMAGES */
.right-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 26px;
  position: relative;
}

.bottom-img {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.long-img {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  height: 391px;
  width: 267px;
}

.dispute-container .img-box img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
}

.dispute-container .img-box video {
  width: 90%;
  height: 95%;
  object-fit: cover;
  border-radius: 26px;
  display: block;
  margin-left: -2rem;
}

/* -------------------------------------------------
   📱 TABLET RESPONSIVE (max-width: 1024px)
---------------------------------------------------*/
@media (max-width: 1024px) {
  .dispute-container {
    flex-direction: column;
    padding: 60px 30px;
    gap: 50px;
  }

  .step {
    width: 100%;
  }

  .right-block {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .long-img {
    height: 350px;
    width: 100%;
  }
}

/* -------------------------------------------------
   📱 MOBILE RESPONSIVE (max-width: 768px)
---------------------------------------------------*/
@media (max-width: 768px) {

  .dispute-container {
    flex-direction: column;
    padding: 40px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .right-block {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  /* All boxes take full width */
  .img-box {
    width: 100% !important;
    height: auto !important;
  }

  .bottom-img,
  .long-img {
    grid-column: 1 / 2 !important;
    grid-row: auto !important;
    height: auto;
  }

  .dispute-container .img-box img,
  .dispute-container .img-box video {
    height: auto;
    width: 100%;
    margin-left: 0rem;
  }
}

/* -------------------------------------------------
   📱 SMALL MOBILE RESPONSIVE (max-width: 480px)
---------------------------------------------------*/
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .step {
    height: auto;
    padding: 12px;
    font-size: 13px;
  }

  .right-block {
    gap: 15px;
  }
}



/* -------------------------------------------------
  Turn spaces into intelligent, responsive environments Page CSS
---------------------------------------------------*/
.features-container {
  margin: 0 auto;
  padding: 80px 45px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT HEADING */
.left-content h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
}

.features-container .left-content h2 {
  margin-bottom: 70px;
}

/* RIGHT SECTION GRID */
.right-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}

/* FEATURE BOXES */
.feature-box h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.feature-box p {
  font-size: 12px;
  line-height: 1.6;
  color: #444;
  max-width: 260px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .right-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-container {
    padding: 40px 45px 0px;
    gap: 25px;
  }

  .right-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-container .left-content h2 {
    margin-bottom: 0px;
  }
}

@media (max-width: 600px) {
  .features-container {
    flex-direction: column;
    align-items: unset;
  }

  .right-content {
    grid-template-columns: 1fr;
  }
}

/* SECTION 2 – Smart Infrastructure Icons */
.infra-section {
  padding: 40px 0px 60px;
  border-top: 1px solid #eee;
  text-align: center;
}

.infra-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.infra-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.infra-item span {
  font-size: 16px;
  font-weight: 600;
}

.infra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eaeaea;
  padding: 15px 25px;
  border-radius: 40px;
  font-size: 17px;
}

.infra-item img {
  width: 32px;
  height: 32px;
  margin-top: 5px;
}

.background-design {
  background: #EADEFF;
  border-radius: 50%;
  width: 35px;
  height: 35px;
}

/* Section Layout */
.why-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 60px 60px;
  background: #faf8ff;
}

/* LEFT SIDE */
.why-left {
  width: 50%;
}

.why-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}

.why-box {
  margin-bottom: 18px;
  width: 100%;
  background: #e8d6ff;
  padding: 12px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* RIGHT SIDE IMAGE GRID */
.why-right {
  display: flex;
  gap: 25px;
  width: 50%;
  align-items: flex-start;
}

/* Two stacked images on left */
.why-images {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Shared styling for all images */
.why-right-img-box {
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
}

/* Sizes */
.small {
  width: 289px;
  height: 192px;
}




/* RIGHT SIDE BIG IMAGE WRAPPER */
.alert-wrapper {
  position: relative;
  width: 360px;
  border-radius: 22px;
  overflow: hidden;
}

.bg-img {
  width: 251px;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

/* POSITIONING FOR PHONE + ALERT */
.overlay-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* ALERT BOX */
.alert-box {
  position: relative;
  width: 85%;
  background: #fff;
  padding: 10px 18px;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0px 5px -125px auto;
  transition: 0.3s ease;
  box-shadow: 3px 5px 4px rgba(0, 0, 0, 0.25), -4px -2px 4px rgba(0, 0, 0, 0.25);
}

/* ICON */
.alert-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* TEXT */
.alert-text h4 {
  text-align: left;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.alert-divider {
  display: block;
  width: 130%;
  height: 1px;
  background: #e6e6e6;
  margin: 8px -38px;
  margin-top: 15px;
}

.alert-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
  margin-left: -39px;
  text-align: left;
}

/* PHONE IMAGE */
.phone-img {
  width: 150px;
  margin: 0 auto;
  display: block;
}



/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* TABLETS */
@media (max-width: 1024px) {
  .why-right {
    width: 60%;
  }

  .alert-box {
    width: 85%;
    margin-left: 32px;
  }
}

@media (max-width: 992px) {
  .why-section {
    flex-direction: column;
    text-align: center;
  }

  .why-left {
    width: 100%;
  }

  .why-right {
    justify-content: center;
    width: 100%;
  }

  .why-right-img-box,
  .small {
    max-width: 100%;
  }

  .alert-box {
    width: 68%;
    margin-left: 80px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .why-title {
    font-size: 26px;
  }

  .why-section {
    padding: 40px 20px;
  }

  .why-right {
    flex-direction: column;
    align-items: center;
  }

  .alert-wrapper {
    max-width: unset;
    text-align: center;
  }

  .phone-img {
    width: 120px;
  }

  .alert-box {
    margin-bottom: -70px;
    padding: 8px 14px;
    width: 80%;
    margin-left: 50px;
  }

  .infra-section {
    padding: 30px 0;
  }

}


/* MAIN SECTION */
.impact-glance-section {
  background: #24212a;
  padding: 30px 60px 60px;
  text-align: left;
  height: auto;
  box-shadow: 0 2px 16px rgba(120, 80, 220, 0.07);
}

/* TITLE */
.impact-title {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

/* GRID */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 50px;
  max-width: 1100px;
  margin: 0 auto;
}

/* CARD */
.impact-card {
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #333;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* ICON WRAPPER */
.impact-icon {
  background: #f2f2f7;
  padding: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

/* TEXT */
.impact-card p {
  margin: 0;
  text-align: left;
  line-height: 1.4;
  font-size: 14px;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .impact-card {
    padding: 18px 22px;
  }

  .impact-title {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .impact-glance-section {
    padding: 30px 15px 60px;
  }

  .impact-card {
    flex-direction: row;
    gap: 14px;
    border-radius: 30px;
  }

  .impact-icon img {
    width: 24px;
    height: 24px;
  }
}

/*===========================
  AUTOMATED PASSENGER COUNTING
=========================== */
.actionable-section {
  max-width: var(--max-w);
  margin: 48px auto;
  padding: 80px 45px 30px;
}

/* top area: two-column with left small title and right long paragraph (like image) */
.actionable-section .top {
  display: flex;
  gap: 50px;
}

.actionable-section .eyebrow {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0.2px;
  min-width: 425px;
}

.actionable-divider {
  display: inline-block;
  width: 0.5px;
  height: 65px;
  margin-top: 0.8rem;
  background-color: #5C5C5C;
}

.actionable-section .lead {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin-top: 6px;
}

.actionable-features {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-left: 200px;
  padding-right: 215px;
}

.actionable-feature {
  display: grid;
  grid-template-columns: 1fr 220px;
  /* text then image by default */
  gap: 22px;
  align-items: center;
}

/* alternate: image on left for even items */
.actionable-feature:nth-child(even) {
  grid-template-columns: 220px 1fr;
}

.actionable-feature .imgwrap {
  width: 220px;
  height: 132px;
  overflow: hidden;
  border-radius: 12px;
}

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

.actionable-feature h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 600;
}

.actionable-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

/* ----------------------------- */
/* ----------------------------- */

/* Large Tablets & Small Screens */
@media (max-width: 1200px) {
  .actionable-features {
    padding-left: 120px;
    padding-right: 120px;
  }
}


/* Tablets */
@media (max-width: 992px) {
  .actionable-section {
    padding: 60px 30px 30px;
  }

  .actionable-section {
    margin: 0px auto;
  }

  .actionable-divider {
    display: none;
  }

  .actionable-section .top {
    flex-direction: column;
    gap: 25px;
  }

  .actionable-section .eyebrow {
    min-width: auto;
    font-size: 28px;
  }

  .actionable-features {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .actionable-feature {
    grid-template-columns: 1fr;
  }


  .actionable-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }


  .actionable-feature .imgwrap {
    width: 100%;
    height: 180px;
  }
}


/* Mobile Portrait */
@media (max-width: 480px) {
  .actionable-section {
    padding: 0px 18px 20px;
  }


  .actionable-section .eyebrow {
    font-size: 24px;
  }


  .actionable-section .lead {
    font-size: 14px;
  }


  .actionable-features {
    padding-left: 0;
    padding-right: 0;
    gap: 28px;
  }


  .actionable-feature h3 {
    font-size: 16px;
  }


  .actionable-feature p {
    font-size: 13.5px;
  }
}

.rtai-section {
  margin: 48px auto;
  padding: 50px 45px 30px;
  font-family: "Inter", sans-serif;
  border-top: 1.5px solid #C7C4C4;
}

/* Top heading row */
.rtai-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 40px;
}

.divider2 {
  width: 35px;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  transform: rotate(90deg);
}

.rtai-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.rtai-header p {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin: 0;
}

/* Features row */
.rtai-features {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}

.rtai-item {
  width: 30%;
}

.rtai-icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.rtai-icon-circle img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

/* icon background colors */
.green {
  background: #CBFFA8;
}

.orange {
  background: #FFCEA8;
}

.blue {
  background: #AFCBFF;
}

.rtai-item h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.rtai-item p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .rtai-features {
    flex-direction: column;
    gap: 50px;
  }

  .rtai-item {
    width: 100%;
  }

  .rtai-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .rtai-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .rtai-section {
    padding: 50px 30px 30px;
  }

  .rtai-header h2 {
    font-size: 32px;
  }

  .rtai-icon-circle {
    width: 55px;
    height: 55px;
  }

  .rtai-icon-circle img {
    width: 45px;
  }
}

.modern-transit {
  background: #2A262C;
  margin: 48px auto;
  padding: 25px 45px 30px;
  color: #fff;
  font-family: sans-serif;
}

.modern-transit h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 25px;
}

.transit-grid {
  display: flex;
  justify-content: space-between;
  gap: 23px;
  flex-wrap: wrap;
}

.modern-transit-item {
  text-align: center;
  width: 23.5%;
}

.modern-transit-item img {
  width: 100%;
  height: 245px;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

.modern-transit-label {
  margin: 16px auto 0;
  background: #fff;
  color: #000;
  padding: 1px 0;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .modern-transit-item {
    width: 31.5%;
    /* 3 per row */
  }
}

/* ========================= */
/*         TABLET            */
/* ========================= */
@media (max-width: 992px) {
  .smart-top-left video {
    width: clamp(160px, 22vw, 262px);
    height: clamp(130px, 18vw, 213px);
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0px;
    left: 170px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    z-index: 4;
  }

  .smart-top-right img {
    width: clamp(220px, 30vw, 350px);
    height: clamp(320px, 40vw, 450px);
    object-fit: cover;
    border-radius: 22px;
    position: absolute;
    margin-right: 20vw;
    right: clamp(10px, 4vw, 50px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 3;
  }

  .smart-alert-box {
    width: 30%;
  }
}

/* ========================= */
/*         MOBILE            */
/* ========================= */
@media (max-width: 600px) {
  .modern-transit-item {
    width: 100%;
    /* 1 per row */
  }

  .modern-transit-item img {
    height: 220px;
    width: 100%;
  }
}

/* ============================= */
/*       BASE LAYOUT DESKTOP     */
/* ============================= */
.smarter-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 45px 30px;
  gap: clamp(20px, 4vw, 50px);
}

/* RIGHT SIDE WRAPPER */
.smarter-right-wrapper {
  width: 50%;
  position: relative;
  min-height: 300px;
}

/* ============================= */
/*   TOP LEFT SMALL VIDEO        */
/* ============================= */
.smart-top-left video {
  width: clamp(160px, 22vw, 262px);
  height: clamp(130px, 18vw, 213px);
  object-fit: cover;
  border-radius: 20px;
  position: absolute;
  top: -20px;
  left: -20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  z-index: 4;
}

/* ============================= */
/*   TOP RIGHT LARGE IMAGE       */
/* ============================= */
.smart-top-right img {
  width: clamp(220px, 30vw, 350px);
  height: clamp(320px, 40vw, 450px);
  object-fit: cover;
  border-radius: 22px;
  position: absolute;
  right: clamp(10px, 4vw, 50px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

/* ============================= */
/*   BOTTOM LARGE IMAGE          */
/* ============================= */
.smart-bottom-img img {
  width: clamp(300px, 40vw, 500px);
  border-radius: 22px;
  position: absolute;
  top: clamp(150px, 22vw, 230px);
  right: clamp(0px, 4vw, 40px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* ============================= */
/*   PHONE OVERLAY IMAGE         */
/* ============================= */
.smart-phone-img {
  width: clamp(70px, 10vw, 120px);
  position: absolute;
  right: clamp(20px, 4vw, 68px);
  margin-top: clamp(130px, 20vw, 207px);
  z-index: 5;
  filter: blur(1.5px);
}

/* ============================= */
/*         ALERT BOX             */
/* ============================= */
.smart-alert-box {
  position: absolute;
  top: clamp(150px, 24vw, 240px);
  right: 0;
  background: #fff;
  padding: 10px 18px;
  border-radius: 18px;
  width: clamp(45%, 32vw, 45%);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  z-index: 6;
}

.smart-alert-box h4 {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  margin-top: 5px;
}

.smart-alert-box p {
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 400;
}

.alert-divider1 {
  background: #ddd;
  margin: 14px -50px 5px;
  display: block;
  width: 135%;
  height: 1px;
}

.alert-icon {
  width: clamp(20px, 3vw, 30px);
  margin-top: 5px;
}

/* ========================================= */
/*               TABLET RESPONSIVE           */
/* ========================================= */
@media (max-width: 1024px) {
  .smarter-section {
    flex-direction: column;
    align-items: center;
  }

  .smarter-right-wrapper {
    width: 75%;
    min-height: 300px;
  }

  .smart-phone-img {
    width: clamp(70px, 10vw, 120px);
    position: absolute;
    margin-right: 200px;
    right: clamp(20px, 4vw, 68px);
    margin-top: clamp(130px, 20vw, 207px);
    z-index: 5;
    filter: blur(1.5px);
  }

  .smart-alert-box {
    width: 30%;
    margin-right: 190px;
  }
}

/* ========================================= */
/*               MOBILE RESPONSIVE           */
/* ========================================= */
@media (max-width: 768px) {
  .smarter-right-wrapper {
    min-height: 350px;
  }

  .smart-top-right img,
  .smart-bottom-img img,
  .smart-top-left video,
  .smart-phone-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 15px auto;
    display: block;
  }

  .smart-alert-box {
    position: relative;
    width: 50%;
    margin: 170px 170px 0px;
    right: 0;
    top: 0;
  }

  .smart-top-left video {
    margin-top: 0px;
    margin-left: -38px;
  }

  .smart-phone-img {
    margin-top: 132px;
    margin-right: 30px;
    width: 100px;
  }
}

/* ========================================= */
/*      SMALL MOBILE (≤ 480px)               */
/* ========================================= */
@media (max-width: 480px) {
  .smarter-section {
    padding: 30px 20px;
  }

  .smart-alert-box {
    width: 45%;
    padding: 12px;
  }
}


.safety-right-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.safety-hygiene-header-section p {
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .safety-right-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .safety-right-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
  }

  .safety-hygiene-header-section p {
    margin-bottom: 0rem;
  }
}

@media (max-width: 480px) {
  .safety-right-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.ai-cleaner-section {
  padding: 0px 45px 40px;
}

.ai-cleaner-container {
  display: flex;
  align-items: flex-start;
}

.ai-cleaner-container h1 {
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 11px;
}

/* LEFT SIDE SECTION */
.ai-cleaner-left-section {
  width: 50%;
}


/* MAIN IMAGE WRAPPER */
.ai-cleaner-main-image-wrapper {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.ai-cleaner-main-img {
  width: 327px;
  height: 266px;
  border-radius: 20px;
}

/* PHONE IMAGE OVERLAY */
.ai-cleaner-phone-img {
  position: absolute;
  top: 30%;
  right: 25%;
  width: 93px;
  height: 189px;
  filter: blur(1px);
}

/* ALERT CARD ON TOP OF PHONE */
.ai-cleaner-alert-box {
  position: absolute;
  top: 38%;
  right: 15%;
  padding: 0px 30px;
  border-radius: 14px;
  max-width: 330px;
}

.ai-cleaner-alert-icon {
  font-size: 20px;
  background: #e7eeff;
  padding: 10px;
  border-radius: 50%;
}

.ai-cleaner-alert-text h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.ai-cleaner-alert-text p {
  margin: 3px 0 0 0;
  font-size: 13px;
  color: #555;
}

/* RIGHT SIDE CONTENT */
.ai-cleaner-right {
  width: 50%;
}

.subtitle-wrap {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  /* line & text space */
  margin-bottom: 25px;
}

.v-line {
  width: 0.5px;
  height: 50px;
  background: #000;
}

.ai-cleaner-subtitle {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}


/* BENEFIT CARD */
.ai-cleaner-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 14px;
  background: #f3eaff;
  margin-bottom: 15px;
}



/* ============================ */
/*        RESPONSIVE CSS        */
/* ============================ */

/* ------- TABLET (≤ 992px) ------- */
@media (max-width: 992px) {

  .ai-cleaner-container {
    flex-direction: column;
    gap: 40px;
  }

  .ai-cleaner-left-section,
  .ai-cleaner-right {
    width: 100%;
  }

  .ai-cleaner-main-image-wrapper {
    max-width: 100%;
    text-align: center;
  }

  .ai-cleaner-main-img {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .ai-cleaner-phone-img {
    width: 90px;
    height: auto;
    right: 20%;
    top: 32%;
  }

  .ai-cleaner-alert-box {
    right: 5%;
    top: 42%;
  }
}

/* ------- MOBILE (≤ 768px) ------- */
@media (max-width: 768px) {

  .ai-cleaner-section {
    padding: 50px 20px;
  }

  .ai-cleaner-container h1 {
    font-size: 28px;
  }

  .ai-cleaner-main-img {
    max-width: 300px;
  }

  .ai-cleaner-phone-img {
    width: 75px;
    right: 10%;
    top: 35%;
  }

  .ai-cleaner-alert-box {
    top: 47%;
    right: 0%;
    padding: 0 10px;
    max-width: 250px;
  }

  .ai-cleaner-benefit-card {
    padding: 15px;
    gap: 12px;
    display: block;
  }

  .benefit-icon {
    width: 40px;
  }

  .v-line {
    display: none;
  }
}

/* ------- SMALL MOBILE (≤ 480px) ------- */
@media (max-width: 480px) {

  .ai-cleaner-container h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .ai-cleaner-main-img {
    max-width: 260px;
  }

  .ai-cleaner-phone-img {
    width: 65px;
    right: 0%;
    top: 38%;
  }

  .ai-cleaner-alert-box {
    top: 50%;
    right: -5%;
    max-width: 250px;
    padding: 0 5px;
  }

  .ai-cleaner-alert-text h4 {
    font-size: 14px;
  }

  .ai-cleaner-alert-text p {
    font-size: 12px;
  }

  .ai-cleaner-benefit-card {
    padding: 14px;
  }
}

.smart-steps {
  background: #000;
  text-align: center;
  padding: 50px 60px;
  font-family: 'Inter', sans-serif;
}

.smart-steps h2 {
  color: white;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.smart-steps-container {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

/* Each Step */
.smart-step {
  width: 20%;
  min-width: 200px;
  position: relative;
  text-align: center;
}

/* Circle icon */
.smart-step-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Triangle tab */
.smart-step-tab {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  margin: 15px auto -1px auto;
}

/* Box */
.smart-step-box {
  padding: 45px 20px 0px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.safety-hygiene-smart-step-box {
  padding: 34px 20px 0px;
}

.reward-recognition-smart-step-box {
  padding: 45px 20px 0px;
}

.smart-operation-smart-step-box {
  padding: 45px 20px 0px;
}

.smart-operation-smart-step-box1 {
  padding: 43px 0px 0px;
}

.traffic-intelligence-smart-step-box {
  padding: 45px 20px 0px;
}

.smart-step:nth-child(3) .step-box,
.smart-step:nth-child(3) .step-tab {
  background: #d0b0ff;
  border-top-color: #d0b0ff;
}

.smart-step:nth-child(4) .step-box,
.smart-step:nth-child(4) .step-tab {
  background: #b880ff;
  border-top-color: #b880ff;
}

.smart-step-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.1;
  white-space: nowrap;
}

.smart-step-box p {
  font-size: 15px;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  font-weight: 500;
  text-shadow: 0 0 0.6px currentColor;
}

/* ===================================== */
/*              RESPONSIVE               */
/* ===================================== */
/* ---------- Tablets (≤ 992px) ---------- */
@media (max-width: 992px) {

  .smart-steps {
    padding: 40px 30px;
  }

  .smart-step {
    width: 45%;
    min-width: unset;
    margin-bottom: 40px;
  }

  /* Rounded corners for 2-column layout */
  .smart-step:first-child .smart-step-box {
    border-radius: 25px;
  }

  .smart-step:last-child .smart-step-box {
    border-radius: 25px;
  }
}

/* ---------- Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {

  .smart-step {
    width: 100%;
    margin-bottom: 40px;
  }

  .smart-step-box {
    height: auto;
    padding: 20px 18px;
  }

  .smart-step-box h3 {
    font-size: 17px;
  }

  .smart-step-box p {
    font-size: 15px;
  }

  .smart-step-icon {
    width: 45px;
    height: 45px;
  }

  .smart-step-tab {
    margin: 12px auto -1px auto;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom-width: 35px !important;
  }

  /* On mobile every box has full radius */
  .smart-step-box {
    border-radius: 18px !important;
  }
}

/* ---------- Small Mobile (≤ 480px) ---------- */
@media (max-width: 480px) {

  .smart-steps h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .smart-step-icon {
    width: 40px;
    height: 40px;
  }

  .smart-step-box {
    padding: 18px 15px;
  }

  .smart-step-box h3 {
    font-size: 16px;
  }

  .smart-step-box p {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* SECTION */
.safer-road-section {
  padding: 80px 0;
}

.safer-road-section-title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* LEFT TEXT AREA */
.safer-road-wrapper {
  margin-left: 8rem;
  margin-right: 0;
}

.left-text-area {
  text-align: left;
}

.safer-road-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.safer-road-text {
  font-size: 14px;
  font-weight: 400;
}

/* CARDS */
.violation-card,
.violation-card1,
.violation-card2,
.violation-card3,
.violation-card4 {
  width: 150px;
  height: 150px;
  background: #f5f5f5;
  padding: 25px 10px;
  text-align: center;
}

/* Top Row Shapes */
.violation-card {
  border-radius: 30px 30px 0px 30px;
}

.violation-card1 {
  border-radius: 30px 30px 0 0;
}

.violation-card2 {
  border-radius: 30px 30px 30px 0px;
}

/* Bottom Row Shapes */
.violation-card3 {
  border-radius: 0 0 30px 30px;
}

.violation-card4 {
  border-radius: 0 0 30px 30px;
}

/* Gap Between Cards */
.violation-card-section {
  gap: 15px;
}

/* Card Text */
.violation-card-section p {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding-top: 10px;
}

/* Divider Line Center */
.center-divider {
  border-top: 3px solid #000;
  max-width: 49%;
  margin: 0 auto;
}

/* RESPONSIVE SETTINGS */
@media(max-width: 992px) {
  .safer-road-wrapper {
    margin-left: 2rem;
    margin-right: 0;
  }

  .center-divider {
    max-width: 42%;
  }
}

@media(max-width: 768px) {
  .safer-road-section-title {
    font-size: 28px;
  }

  .violation-card,
  .violation-card1,
  .violation-card2,
  .violation-card3,
  .violation-card4 {
    width: 130px;
    height: 130px;
  }

  .center-divider {
    max-width: 68%;
  }

  .violation-card-section p {
    font-size: 12px;
  }

  .violation-card3,
  .violation-card4 {
    padding-top: 10px;
  }
}

@media(max-width: 576px) {
  .safer-road-wrapper {
    margin-left: 1rem;
    margin-right: 0;
  }

  .violation-card,
  .violation-card1,
  .violation-card2,
  .violation-card3,
  .violation-card4 {
    width: 120px;
    height: 120px;
  }

  .center-divider {
    max-width: 75%;
  }
}

/* MAIN SECTION */
.opportunity-section {
  width: 100%;
  padding: 60px 100px 20px;
}

/* HEADING */
.opportunity-title {
  font-size: 32px;
  font-weight: 600;
}

/* FLEX LAYOUT */
.opportunity-wrapper {
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* IMAGE BOX */
.opportunity-image-box {
  max-width: 471px;
  height: 176px;
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.opportunity-image {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  object-fit: cover;
}

/* TEXT */
.opportunity-text {
  flex: 1 1 40%;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .opportunity-title {
    font-size: 34px;
  }

  .opportunity-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .opportunity-text {
    text-align: center;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .opportunity-title {
    font-size: 28px;
  }

  .opportunity-wrapper {
    gap: 25px;
  }

  .opportunity-text {
    font-size: 14px;
    text-align: justify;
  }

  .opportunity-section {
    padding: 40px 15px 0px;
  }
}

.one-platform-section {
  width: 100%;
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* vertical center */
  gap: 50px;
}

.one-platform-section .left-content h2 {
  margin-bottom: 60px;
}

/* RIGHT CONTENT */
.safety-right-content {
  flex: 1;
}

.feature-box {
  margin-bottom: 35px;
}

.feature-box h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* -----------------------------------
   RESPONSIVE DESIGN
----------------------------------- */

/* Tablet */
@media (max-width: 992px) {
  .one-platform-section {
    flex-direction: column;
    padding: 40px 40px;
    text-align: center;
  }

  .left-content h2 {
    font-size: 23px;
    margin-bottom: 25px;
  }

  .safety-right-content {
    width: 100%;
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .one-platform-section {
    padding: 0px 15px;
    display: flow;
    text-align: left;
    gap: 0px;
  }

  .left-content h2 {
    font-size: 28px;
  }

  .feature-box p {
    max-width: unset;
    text-align: left;
  }

  .one-platform-section .left-content h2 {
    margin-bottom: 15px;
  }
}

.my-brand-section {
  width: 100%;
  padding: 0px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.my-brand-section .small {
  width: 244px;
  height: 178px;
}

.my-brand-section .bg-img {
  width: 244px;
  height: 380px;
  object-fit: cover;
  border-radius: 22px;
}

.my-brand-section .why-right {
  margin-top: 4rem;
}

.case-study-section {
  width: 100%;
  padding: 60px 100px 0px;
}

.case-study-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT IMAGE BOX */
.case-image-box {
  width: 50%;
}

.case-image-box img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.case-content {
  width: 50%;
}

.case-badge {
  display: inline-block;
  color: #0CD3BF;
  padding: 8px 18px;
  border-radius: 12px;
  border: 2px solid #0CD3BF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  cursor: pointer;
}

.case-subtitle {
  color: #7250CC;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 15px;
}

.case-title {
  font-size: 29px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;

}

.case-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .case-study-container {
    flex-direction: column;
    text-align: left;
  }

  .case-image-box,
  .case-content {
    width: 100%;
  }

  .case-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .case-study-section {
    padding: 40px 20px;
  }

  .my-brand-section {
    padding: 0px 15px;
    display: flow;
  }

  .case-title {
    font-size: 26px;
  }

  .case-text {
    font-size: 15px;
  }
}

/* -----------------------------------
   INTRUSION DETECTION SECTION
----------------------------------- */

.prevent-section {
  width: 100%;
  padding: 80px 100px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}

.prevent-left-text h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 450px;
}

.prevent-features-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
  flex: 1;
  max-width: 900px;
}

.prevent-feature-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.prevent-feature-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .prevent-section {
    flex-direction: column;
    gap: 40px;
  }

  .prevent-left-text h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .prevent-features-section {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .features-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prevent-left-text h2 {
    font-size: 32px;
  }

}

@media (max-width: 480px) {
  .prevent-section {
    padding: 40px 20px;
  }

  .prevent-left-text h2 {
    font-size: 28px;
  }
}

.flex-scale-section {
  width: 100%;
  padding: 60px 100px 0px;
  border-top: 1px solid #BDBDBD;
}

/* TOP HEADING ROW */
.flex-scale-section-top-heading {
  display: grid;
  grid-template-columns: auto 80px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

/* CENTER HEADING */
.flex-scale-section-top-heading h2 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}


/* PARAGRAPH */
.flex-scale-section-top-heading p {
  grid-column: 3;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

/* CONTENT ROW */
.flex-scale-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* LEFT IMAGES */
.flex-scale-left-images {
  display: flex;
  gap: 30px;
  align-items: center;
}

.flex-scale-img-box {
  position: relative;
}

.flex-scale-img-box1 {
  width: 311px;
  height: 279px;
  object-fit: cover;
  border-radius: 30px;
}

.flex-scale-img-box2 {
  width: 167px;
  height: 279px;
  object-fit: cover;
  border-radius: 30px;
}

/* ALERT BOX */
.flex-scale-alert-box {
  position: absolute;
  top: 38%;
  right: 50%;
  padding: 0px 30px;
  border-radius: 14px;
  width: 330px;
  margin-top: 66px;
}

.flex-scale-alert-icon {
  font-size: 26px;
}

.flex-scale-alert-text h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.flex-scale-alert-text p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}

/* RIGHT FEATURES */
.flex-scale-right-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.flex-scale-feat-item {
  background: #EBD9FF;
  padding: 17px 20px;
  border-radius: 16px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {

  /* SECTION PADDING */
  .flex-scale-section {
    padding: 40px 40px;
  }

  /* TOP HEADING STACK */
  .flex-scale-section-top-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .flex-scale-section-top-heading .divider {
    height: 40px;
    width: 1px;
    margin: 15px auto;
  }

  .flex-scale-section-top-heading p {
    font-size: 15px;
  }

  /* CONTENT STACK */
  .flex-scale-content {
    flex-direction: column;
    align-items: center;
  }

  /* IMAGES */
  .flex-scale-left-images {
    justify-content: center;
  }

  .flex-scale-img-box1 {
    width: 260px;
    height: 240px;
  }

  .flex-scale-img-box2 {
    width: 150px;
    height: 240px;
  }

  /* ALERT BOX – CENTER SAFE */
  .flex-scale-alert-box {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    padding: 0;
  }

  /* FEATURES */
  .flex-scale-right-features {
    width: 100%;
    align-items: center;
    margin-top: 30px;
  }

  .flex-scale-feat-item {
    width: 100%;
    max-width: 420px;
    font-size: 15px;
  }
}


@media (max-width: 992px) {
  .flex-scale-section {
    padding: 40px 30px;
  }

  .top-heading {
    flex-direction: column;
  }

  .flex-scale-section .top-heading h2 {
    font-size: 20px;
  }

  .flex-scale-content {
    flex-direction: column;
  }

  .flex-scale-left-images {
    justify-content: center;
    flex-wrap: wrap;
  }

  .flex-scale-img-box img {
    width: 100%;
    max-width: 340px;
  }

  .flex-scale-right-features {
    padding-top: 20px;
  }

  .flex-scale-feat-item {
    text-align: center;
    font-size: 18px;
  }

  .flex-scale-alert-box {
    position: absolute;
    top: 31%;
    right: 15%;
    padding: 0px 30px;
    border-radius: 14px;
    width: 100%;
    margin-top: 66px;
  }
}

@media (max-width: 600px) {
  .flex-scale-alert-box {
    width: 100%;
    top: 39%;
    right: 5%;
    padding: 0px 30px;
    border-radius: 14px;
    margin-top: 66px;
  }

  .flex-scale-section-top-heading {
    display: inline;
  }

  .flex-scale-alert-box .alert-text p {
    margin-left: -20px;
  }
}

/* -----------------------------------
  TIMESHEETS SECTION
----------------------------------- */
.accounted-section {
  max-width: var(--max-w);
  padding: 80px 45px 30px;
}

.accounted-section .accounted-top {
  display: flex;
  padding-left: 165px;
  padding-right: 165px;
}

.accounted-section .accounted-eyebrow {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0.2px;
}



/* ================================
   CONTAINER
================================ */
.accounted-actionable-features {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-left: 165px;
  padding-right: 165px;
}

/* ================================
   SINGLE FEATURE ROW
================================ */
.accounted-actionable-feature {
  display: flex;
  /* REQUIRED */
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ================================
   ZIG-ZAG LOGIC
================================ */

/* Default (odd rows) → Image LEFT, Text RIGHT */
/* ODD ROWS (default) */
.accounted-actionable-feature .accounted-imgwrap {
  order: 1;
}

.accounted-actionable-feature .accounted-actionable-row {
  order: 2;
}

/* EVEN ROWS */
.accounted-actionable-feature:nth-child(even) .accounted-actionable-row {
  order: 1;
}

.accounted-actionable-feature:nth-child(even) .accounted-imgwrap {
  order: 2;
}

/* ================================
   IMAGE CARD
================================ */
.accounted-imgwrap {
  border-radius: 28px;
  display: flex;
}

.accounted-imgwrap img {
  width: 350px;
  height: 250px;
  display: block;
  border-radius: 16px;
}

/* ================================
   TEXT CONTENT
================================ */
.accounted-actionable-row h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 14px;
}

.accounted-actionable-row p {
  font-size: 14px;
  line-height: 1.6;
}


@media (max-width: 1024px) {
  .accounted-section {
    padding: 0px 30px 30px;
  }

  .accounted-section .accounted-top {
    padding-left: 0px;
    padding-right: 0px;
  }

  .accounted-top,
  .accounted-actionable-features {
    padding: 0;
  }

  .accounted-eyebrow {
    font-size: 28px;
  }

  .accounted-actionable-feature {
    gap: 50px;
  }

  .accounted-imgwrap {
    flex: 0 0 300px;
  }
}

/* =================================================
   SMALL TABLET & MOBILE (≤768px)
================================================= */
@media (max-width: 768px) {
  .accounted-actionable-feature {
    flex-direction: unset;
    text-align: left;
    gap: 30px;
  }

  /* Remove zig-zag on mobile */
  .accounted-actionable-feature .accounted-imgwrap,
  .accounted-actionable-feature .accounted-actionable-row {
    order: unset;
  }

  .accounted-imgwrap {
    width: 100%;
    max-width: 380px;
  }

  .accounted-actionable-row {
    max-width: 100%;
  }

  .accounted-actionable-row h3 {
    font-size: 17px;
  }
}

/* =================================================
   MOBILE (≤480px)
================================================= */
@media (max-width: 480px) {
  .accounted-actionable-feature {
    flex-direction: column;
    text-align: left;
    gap: 10px;
  }

  .accounted-imgwrap {
    flex: 0 0 220px;
  }

  .accounted-section {
    padding: 60px 20px 20px;
  }

  .accounted-eyebrow {
    font-size: 24px;
  }

  .accounted-imgwrap img {
    height: 220px;
  }

  .accounted-actionable-row p {
    font-size: 12px;
  }
}



/* ===============================
   JUST TRACKING SECTION
================================ */
.just-tracking-section {
  --bg: #26242A;
  --card-bg: #ffffff;
  --muted: #6b6b6b;
  --accent: #7b3df2;
  --accent-100: rgba(235, 219, 255, 0.18);
  background: var(--bg);
  color: #fff;
  padding: 50px 45px 30px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.just-tracking-container {
  padding: 0px 165px 40px;
}

.just-tracking-title {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 25px 0;
  line-height: 1.05;
  text-align: center;
}

.just-tracking-icon-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #DDD7EE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.just-tracking-card-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: #111;
  line-height: 20px;
}

.just-tracking-card-desc {
  margin: 0;
  color: #414141;
  font-size: 12px;
  max-width: 420px;
  font-weight: 400;
}

/* ===============================
   RESPONSIVE
================================ */

/* ---- Large Laptop ---- */
@media (max-width: 1200px) {
  .just-tracking-container {
    padding: 0 100px;
  }
}

/* ---- Tablet Landscape ---- */
@media (max-width: 1024px) {
  .just-tracking-container {
    padding: 0 60px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .just-tracking-title {
    font-size: 22px;
  }
}

/* ---- Tablet Portrait ---- */
@media (max-width: 768px) {
  .just-tracking-container {
    padding: 0 35px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .just-tracking-icon-circle {
    margin-bottom: 14px;
  }

  .just-tracking-title {
    font-size: 20px;
    margin-bottom: 35px;
  }
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
  .just-tracking-section {
    padding: 50px 0 60px;
  }

  .just-tracking-container {
    padding: 0 20px;
  }

  .just-tracking-title {
    font-size: 18px;
  }

  .trust-card {
    padding: 22px 20px;
  }

  .just-tracking-card-title {
    font-size: 15px;
  }

  .just-tracking-card-desc {
    font-size: 12px;
    text-align: left;
  }
}

/* ================================
   SECTION WRAPPER
================================ */
.one-module-section {
  max-width: var(--max-w);
  width: 100%;
  padding: 0 45px;
}

.one-module-container {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 165px;
  padding-right: 50px;
}

/* ================================
   TOP HEADING ROW
================================ */
.one-module-section-top-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.one-module-section-top-heading h2 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.one-module-section-top-heading p {
  border-left: 2px solid #000;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

.one-module-right-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.one-module-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* ================================
   TABLET (≤ 1024px)
================================ */
@media (max-width: 1024px) {
  .one-module-container {
    padding-left: 60px;
    padding-right: 20px;
  }

  .one-module-content {
    flex-direction: column;
    align-items: center;
  }
}

/* ================================
   TABLET PORTRAIT (≤ 768px)
================================ */
@media (max-width: 768px) {
  .one-module-container {
    padding-left: 0;
    padding-right: 0;
  }

  .one-module-content {
    gap: 0px;
    flex-direction: column;
    align-items: center;
  }

  .one-module-section {
    padding: 0 24px;
  }

  .one-module-section-top-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .one-module-section-top-heading p {
    border-left: none;
    padding-left: 0;
  }

  .one-module-right-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 30px;
  }
}

/* ================================
   MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {
  .one-module-section-top-heading h2 {
    font-size: 20px;
  }

  .one-module-section-top-heading p {
    font-size: 14px;
  }
}

/* ================================
   WEBINAR HERO SECTION
================================ */
.webinar-hero {
  width: 100%;
  min-height: 250px;
  margin-top: 7rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #FFFFFF 0%, #C3BEFF 50%, #FFFFFF 100%);
  padding: 0px 20px;
}

.webinar-hero-inner {
  max-width: 920px;
  text-align: center;
}

/* Eyebrow text */
.webinar-eyebrow {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #7b61ff;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

/* Main heading */
.webinar-hero h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #000;
}

/* Description */
.webinar-hero p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4b4b4b;
  max-width: 820px;
  margin: 0 auto;
}

.webinar-contact-us {
  margin-top: 6rem;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .webinar-hero h1 {
    font-size: 42px;
  }

  .webinar-hero p {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .webinar-hero {
    padding: 60px 16px;
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .webinar-hero h1 {
    font-size: 32px;
  }

  .webinar-eyebrow {
    font-size: 16px;
  }
}

/* ================================
   WEBINAR SECTION
================================ */
.webinar-page {
  background: #000;
  color: #fff;
  padding: 60px 20px;
}

/* TABS */
.webinar-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.webinar-tabs .tab {
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  border: 1px solid #7b5ce6;
  background: #fff;
  color: #7b5ce6;
  cursor: pointer;
}

.webinar-tabs .tab.active {
  background: #7b5ce6;
  color: #fff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.webinar-featured-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

/* CARD */
.webinar-card {
  background: #f3eeee;
  border-radius: 22px;
  overflow: hidden;
  width: 420px;
  max-width: 100%;
  margin: auto;
}

/* IMAGE */
/* .webinar-thumb {
  position: relative;
} */

.webinar-thumb img {
  width: 100%;
  display: block;
}

/* BADGE */
.webinar-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ff2c2c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
}

/* CONTENT */
.webinar-content {
  padding: 22px 22px 26px;
  color: #111;
}

.webinar-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.webinar-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #444;
  margin-bottom: 22px;
}

/* WATCH BUTTON */
.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #10cfc9;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
}

.watch-btn:hover {
  color: #10cfc9;
}


.webinar-page .tab-content {
  display: none;
}

.webinar-page .tab-content.active {
  display: block;
}


/* BLOG / STORY GRID */
.insights-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.insight-item {
  display: flex;
  gap: 20px;
}

.insight-item img {
  width: 220px;
  height: 140px;
  object-fit: fill;
  border-radius: 12px;
}

.insight-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 🔑 MAIN MAGIC */
}

.insight-item h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}

.insight-item span {
  font-size: 14px;
  color: #aaa;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .webinar-featured-title {
    font-size: 24px;
  }

  .insight-item {
    flex-direction: column;
  }

  .insight-item img {
    width: 100%;
    height: 200px;
  }

  .webinar-tabs .tab {
    font-size: 14px;
    padding: 10px 16px;
  }
}


.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  padding: 10px 40px 0px;
}

/* CARD */
.story-card {
  border-radius: 24px;
  overflow: hidden;
  background: #f2eeee;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

/* TOP */
.story-top {
  background: #7250CC;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 190px;
  border-radius: 0px 0px 20px 20px;
}

.story-top img {
  max-width: 190px;
  max-height: 140px;
}

/* CONTENT */
.story-content {
  padding: 15px;
  color: #111;
}

.story-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* COLLAPSIBLE TEXT */
.story-text {
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  height: 72px;
  transition: height 0.4s ease;
}

/* MORE BUTTON */
.more-btn {
  margin-top: 0px;
  background: none;
  border: none;
  color: #7250CC;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  float: inline-end;
  gap: 7px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .stories-grid {
    grid-template-columns: 1fr;
    padding: 5px 15px 0px;
  }
}

.story-hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 6% 0px;
}

/* WRAPPER */
.story-hero-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT CONTENT */
.story-hero-content {
  max-width: 600px;
}

.story-hero-content h1 {
  font-size: 35px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 20px;
}

.story-hero-content h1 span {
  color: #7b5ce6;
  font-weight: 700;
}

.story-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #d0d0d0;
  margin-bottom: -40px;
}


/* RIGHT IMAGE */
.story-hero-visual {
  flex-shrink: 0;
}

.story-hero-circle {
  border-radius: 45%;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-hero-circle img {
  width: 248px;
  height: 186px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .story-hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .story-hero-content h1 {
    font-size: 35px;
  }

  .story-hero-visual {
    margin-top: 40px;
  }

  .story-hero-content p {
    margin-bottom: 0px;
    text-align: left;
  }

  .story-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 0px;
  }
}

@media (max-width: 600px) {
  .story-hero-content h1 {
    font-size: 20px;
  }

  .story-hero-circle {
    width: 288px;
    height: 216px;
  }

  .story-hero-section {
    padding: 45px 1px 0px;
  }
}

.webinar-published-section {
  padding: 60px 130px 20px;
  background: #ffffff;
  text-align: center;
}

.webinar-published-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #000;
}

.webinar-published-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 50px;
  align-items: center;
  justify-items: center;
}

.webinar-published-logos img {
  max-height: 50px;
  max-width: 160px;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 1024px) {
  .webinar-published-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .webinar-published-section {
    padding: 30px 15px;
  }

  .webinar-published-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .webinar-published-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .webinar-published-logos img {
    max-height: 45px;
  }
}

/* ================================
  SMART OPERATION SECTION
================================ */
.second-section .smart-opration-heading {
  max-width: 80%;
}

.smart-operation-cafe-section {
  padding: 80px 90px;
}

.smart-operation-cafe-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.smart-operation-cafe-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.smart-operation-cafe-card {
  border: 1px solid #d6ceca;
  border-radius: 28px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.smart-operation-cafe-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 6px;
  text-align: center;
}

.smart-operation-cafe-card-image {
  position: relative;
  height: 235px;
  border-radius: 22px;
  overflow: hidden;
}

.cafe-card-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
  transform: scale(1.05);
  z-index: 1;
}

.smart-operation-cafe-card-image .cafe-card-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.05);
  /* blur edges fix */
}

/* Overlay alert card (matches image) */
.smart-operation-cafe-alert-card {
  position: absolute;
  /* 🔴 MUST */
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  width: 85%;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
  z-index: 2;
}

.cafe-card-second-image {
  position: absolute;
  bottom: 0;
  left: 75%;
  transform: translateX(-50%);
  width: 35%;
  z-index: 2;
  filter: blur(1px);
}

.smart-operation-cafe-alert-section {
  position: absolute;
  bottom: 60px;
  left: 62%;
  transform: translateX(-50%);
  width: 68%;
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  z-index: 3;
}

.smart-operation-cafe-alert-title {
  display: flex;
  align-items: center;
  font-size: 8px;
  font-weight: 600;
}

.smart-operation-cafe-alert-title .alert-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  margin-top: -5px;
}

.border-line {
  border-top: 1px solid #DDDDDD;
  margin: 2px 0px;
}

.smart-operation-cafe-alert-content {
  font-size: 8px;
  line-height: 1.4;
}

.smart-operation-cafe-card p {
  font-size: 14px;
  line-height: 1.3;
  padding-top: 1rem;
  text-align: center;
}

@media (max-width: 1200px) {
  .smart-operation-cafe-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .second-section .smart-opration-heading {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .smart-operation-cafe-section {
    padding: 50px 20px;
  }

  .smart-operation-cafe-card-image {
    width: 100%;
    height: 250px;
  }

  .smart-operation-cafe-cards {
    grid-template-columns: 1fr;
  }

  .smart-operation-cafe-section h2 {
    font-size: 22px;
  }

  .cafe-card-second-image {
    width: 30%;
  }

  .smart-operation-cafe-alert-section {
    left: 65%;
    width: 60%;
  }
}

.smart-operation-build-section {
  padding: 0px 90px 60px;
}

.smart-operation-build-top-label {
  color: #7250CC;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 16px;
}

.smart-operation-build-heading-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 10px;
}

.smart-operation-build-heading-row h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.smart-operation-build-heading-row p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  border-left: 1px solid #ccc;
  padding-left: 20px;
}

.smart-operation-build-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.smart-operation-build-image-card {
  width: 459px;
  height: 283px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.smart-operation-build-image-card img {
  width: 100%;
  display: block;
}

.smart-operation-build-info-box {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  border: 6px solid #EADBFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 10px;
}

.smart-operation-build-info-box strong {
  color: #7b61ff;
  font-size: 16px;
}

.smart-operation-build-box-top {
  top: 20px;
  right: 12px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.smart-operation-build-box-left {
  bottom: 55px;
  left: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 1px solid #EADBFF;
  padding-right: 11.5px;
}

.smart-operation-build-box-left-second {
  bottom: 10px;
  left: 20px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 4px solid #EADBFF;
}

.smart-operation-build-info-box .fa-clock-o {
  font-size: 12px;
}

.smart-operation-build-box-right {
  bottom: 20px;
  right: 12px;
  text-align: center;
}

.smart-operation-build-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.smart-operation-build-feature {
  background-color: #EADBFF;
  padding: 18px 22px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

/* ========================= */
/*        TABLET (≤1024px)   */
/* ========================= */
@media (max-width: 1024px) {

  .smart-operation-build-section {
    padding: 0px 40px 40px;
  }

  .smart-operation-build-heading-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .smart-operation-build-heading-row p {
    border-left: none;
    padding-left: 0;
  }

  .smart-operation-build-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .smart-operation-build-image-card {
    width: 100%;
    height: auto;
  }

  .smart-operation-build-image-card img {
    height: auto;
  }

  .smart-operation-build-features {
    gap: 14px;
  }
}

/* ========================= */
/*        MOBILE (≤768px)    */
/* ========================= */
@media (max-width: 768px) {

  .smart-operation-build-section {
    padding: 0px 15px 40px;
  }

  .smart-operation-build-top-label {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .smart-operation-build-heading-row h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .smart-operation-build-heading-row p {
    font-size: 14px;
  }

  .smart-operation-build-content {
    gap: 24px;
  }

  /* IMAGE CARD */
  .smart-operation-build-image-card {
    border-radius: 20px;
  }

  /* INFO BOXES SCALE DOWN */
  .smart-operation-build-info-box {
    padding: 8px 12px;
    font-size: 9px;
  }

  .smart-operation-build-info-box strong {
    font-size: 14px;
  }

  .smart-operation-build-box-top {
    top: 12px;
    right: 5px;
  }

  .smart-operation-build-box-left {
    bottom: 48px;
    left: 12px;
    padding-right: 8px;
  }

  .smart-operation-build-box-left-second {
    bottom: 10px;
    left: 12px;
  }

  .smart-operation-build-box-right {
    bottom: 12px;
    right: 5px;
  }

  /* FEATURES */
  .smart-operation-build-feature {
    font-size: 14px;
    padding: 14px 16px;
    border-radius: 14px;
  }
}

/* ========================= */
/*     SMALL MOBILE (≤480px) */
/* ========================= */
@media (max-width: 480px) {

  .smart-operation-build-heading-row h2 {
    font-size: 22px;
  }

  .smart-operation-build-feature {
    font-size: 13px;
    padding: 12px 14px;
  }

  .smart-operation-build-box-left {
    left: 5px;
  }

  .smart-operation-build-box-left-second {
    left: 5px;
  }
}

.second-section .crowding-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.crowding-header-section p {
  margin-bottom: 2rem;
}

.second-section .crowding-image-container img {
  width: 430px;
  height: 480px;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(120, 80, 220, 0.07);
  object-fit: cover;
}

@media (max-width: 1024px) {
  .second-section .crowding-image-container img {
    width: 420px;
    height: 410px;
  }
}

@media (max-width: 768px) {
  .second-section .crowding-image-container img {
    width: 360px;
    height: 350px;
  }

  .crowding-header-section p {
    margin-bottom: 0rem;
  }
}

@media (max-width: 480px) {
  .second-section .crowding-image-container img {
    width: 340px;
    height: 320px;
  }
}

.video-analytics-section {
  padding: 80px 45px 15px;
}

/* HEADER */
.va-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 25px;
}

.va-header h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.va-subtext {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  color: #444;
  border-left: 1px solid #ccc;
  padding-left: 24px;
  width: 700px;
}

/* ROW */
.va-row {
  display: grid;
  grid-template-columns: 460px 1fr;
  /* exact proportion */
  align-items: center;
  column-gap: 32px;
  /* 🔑 exact visual gap */
  margin-bottom: 40px;
}

/* REVERSE */
.va-row.reverse {
  grid-template-columns: 1fr 460px;
}

/* IMAGE */
.va-media img {
  width: 460px;
  height: 210px;
  object-fit: cover;
  object-position: right bottom;
  border-radius: 26px;
  display: block;
}

/* TITLE */
.va-content h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
}

/* BLUE DOT */
.va-content h4 span {
  width: 21px;
  height: 20px;
  background: linear-gradient(180deg, #0CD3BF, #7250CC);
  border-radius: 50%;
  flex-shrink: 0;
}

/* TEXT */
.va-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  margin: 0;
}

/* ============================= */
/*        RESPONSIVE CSS         */
/* ============================= */

/* ---------- Tablet (<= 1024px) ---------- */
@media (max-width: 1024px) {

  .video-analytics-section {
    padding: 60px 30px 10px;
  }

  .va-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .va-subtext {
    width: 100%;
    border-left: 0;
    padding-left: 0;
  }

  .va-row,
  .va-row.reverse {
    grid-template-columns: 380px 1fr;
    column-gap: 24px;
  }

  .va-media img {
    width: 380px;
    height: 190px;
  }
}

/* ---------- Mobile (<= 768px) ---------- */
@media (max-width: 768px) {

  .video-analytics-section {
    padding: 40px 20px 10px;
  }

  /* Header Stack */
  .va-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .va-header h2 {
    font-size: 26px;
  }

  .va-subtext {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Rows Stack */
  .va-row,
  .va-row.reverse {
    grid-template-columns: 1fr;
    row-gap: 18px;
    margin-bottom: 32px;
  }

  .va-media img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .va-content h4 {
    font-size: 17px;
  }

  .va-content p {
    font-size: 14px;
  }
}

/* ---------- Small Mobile (<= 480px) ---------- */
@media (max-width: 480px) {

  .va-header h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .va-content h4 span {
    width: 16px;
    height: 16px;
  }

  .va-content p {
    font-size: 13.5px;
  }
}

/* ========================= */
/* SMART OPERATION TRANSFORMING SECTION
/* ========================= */
.smart-operation-transforming-section {
  padding: 80px 90px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.transforming-title {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 15px;
  font-weight: 500;
  text-shadow: 0 0 0.6px currentColor;
}

/* ---------- Mobile (<= 768px) ---------- */
@media (max-width: 768px) {
  .smart-operation-transforming-section {
    padding: 50px 20px;
    display: grid;
    gap: 50px;
  }
}

/* ============================= */
/*        NEWSROOM CSS         */
/* ============================= */
.news-hero-inner {
  text-align: center;
}

.newsroom-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  border-bottom: 1px solid #7250CC;
}

.newsroom-tab-btn {
  padding: 10px 20px;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border: 1px solid #7250CC;
  background: #fff;
  color: #7250CC;
  cursor: pointer;
  font-weight: 600;
}

.newsroom-tab-btn.active {
  background: #7250CC;
  color: #fff;
}

/* SECTION TITLE */
.newsroom-section-title {
  text-align: center;
  margin: 30px 0px 25px;
  font-size: 32px;
  font-weight: 600;
}

.newsroom-featured-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 40px 80px 20px;
  gap: 40px;
}

/* LEFT CONTENT */
.newsroom-featured-left {
  margin-bottom: 4rem;
}

/* LOGO ROW */
.newsroom-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Bigger badge only */
.newsroom-brand-logo.newsroom-brand-right-logo {
  max-height: 100px;
  margin-right: -8rem;
  margin-top: 2rem;
}

/* TEXT */
.newsroom-featured-left h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.newsroom-featured-left p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* RIGHT IMAGE */
.newsroom-featured-right img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
  margin-left: auto;
}

.newsroom-read-article {
  color: #7250cc;
  font-weight: 600;
  text-decoration: none;
}

.read-article-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 15px;
  border-radius: 30px;
  background: #7250CC;
  border: 1.5px solid #7250CC;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease;
}

.read-article-btn .arrow {
  background: #fff;
  color: #7250CC;
  border-radius: 50%;
}

.read-article-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.read-article-position {
  margin-top: 3rem;
}

.newsroom-featured-right img {
  width: 68%;
  height: 435px;
  float: inline-end;
}

/* ARTICLES */
.newsroom-articles-section {
  padding: 0px 80px;
}

.newsroom-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.newsroom-article-card {
  background: #EFEFEF;
  border-radius: 18px;
  padding: 15px;
}

.newsroom-article-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

.newsroom-article-card h4 {
  font-size: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
}

.newsroom-article-card h6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-word;
}

.newsroom-article-card span {
  font-size: 12px;
  color: #7250cc;
}

/* ===============================
   RESPONSIVE – TABLET
================================ */
@media (max-width: 1024px) {

  .newsroom-featured-news {
    padding: 0 40px;
    gap: 30px;
  }

  .newsroom-featured-left h3 {
    font-size: 28px;
  }

  .newsroom-featured-left p {
    font-size: 18px;
  }

  .newsroom-brand-logo.newsroom-brand-right-logo {
    max-height: 80px;
    margin-right: -4rem;
  }

  .newsroom-articles-section {
    padding: 50px 40px;
  }

  .newsroom-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {

  /* Tabs */
  .newsroom-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Featured Section */
  .newsroom-featured-news {
    grid-template-columns: 1fr;
    padding: 0 20px;
    text-align: center;
  }

  .newsroom-featured-left {
    margin-bottom: 2rem;
  }

  .newsroom-logo-row {
    justify-content: center;
  }

  .newsroom-brand-logo.newsroom-brand-right-logo {
    margin-right: 0;
    margin-top: 1rem;
    max-height: 70px;
  }

  .newsroom-featured-left h3 {
    font-size: 24px;
  }

  .newsroom-featured-left p {
    font-size: 16px;
  }

  .read-article-btn {
    justify-content: center;
    margin: 0 auto;
  }

  /* Featured Image */
  .newsroom-featured-right img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    float: none;
  }

  /* Articles */
  .newsroom-articles-section {
    padding: 40px 20px;
  }

  .newsroom-articles-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {

  .newsroom-section-title {
    font-size: 24px;
  }

  .newsroom-tab-btn {
    padding: 8px 14px;
    font-size: 14px;
  }

  .newsroom-featured-left h3 {
    font-size: 20px;
  }

  .newsroom-featured-left p {
    font-size: 14px;
  }

  .read-article-btn {
    font-size: 14px;
  }
}

.news-detail-container {
  max-width: 1022px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

/* Back link */
.news-detail-back-link {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
  color: #7250CC;
  text-decoration: underline;
}

.news-detail-back-link:hover {
  color: #7250CC;
  text-decoration: underline;
}

/* Title */
.news-detail-news-title {
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 14px;
}

/* Subtitle */
.news-detail-news-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  max-width: 850px;
  margin-bottom: 40px;
}

/* Meta row */
.news-detail-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.news-detail-news-date {
  font-size: 16px;
  color: #444;
  font-weight: 500;
}

.news-detail-share-icon {
  font-size: 22px;
  color: #6b5cff;
  text-decoration: none;
}

.news-detail-share-icon:hover {
  opacity: 0.7;
}

/* Image */
.news-detail-news-image-wrapper {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.news-detail-news-image-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.more-news-section-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* Grid */
.more-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.more-news-card {
  display: flex;
  flex-direction: column;
}

/* Image */
.more-news-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.more-news-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Title */
.more-news-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

/* Description */
.more-news-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 14px;
}


/* Footer */
.more-news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.more-news-date {
  font-size: 13px;
  color: #444;
}

.more-news-read {
  font-size: 14px;
  color: #6b5cff;
  text-decoration: none;
  font-weight: 500;
  text-decoration: underline;
}

.more-news-read:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .news-detail-news-title {
    font-size: 25px;
  }

  .news-detail-news-subtitle {
    font-size: 17px;
  }

  .more-news-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================== */
/*              CAREER               */
/* ===================================== */
.career-header-section p {
  margin-bottom: 3rem;
}

.career-feature-section {
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.feature-left-career {
  align-items: center;
}

.feature-left-career h1 {
  font-size: 30px;
  font-weight: 600;
}

.career-image-container {
  width: 551px;
  height: 242px;
  overflow: hidden;
}

.career-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.perks-section {
  background: linear-gradient(135deg, #1a1822, #2a2633);
  padding: 50px 40px 70px;
  color: #fff;
}

/* CONTAINER */
.perks-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.perks-left {
  flex: 1;
}

.perks-left h2 {
  font-size: 33px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* GRID */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.perk-card {
  width: 273px;
  height: 125px;
  background: #ffffff;
  color: #222;
  border-radius: 22px;
  padding: 24px 28px;
  gap: 18px;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.perk-card .icon {
  color: #7b5cff;
  font-size: 22px;
}

.perk-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* RIGHT */
.perks-right {
  flex: 1;
  text-align: center;
}

.perks-right img {
  width: 575px;
  height: 335px;
}


/* ===============================
   TABLET (max-width: 1024px)
================================*/
@media (max-width: 1024px) {

  .career-feature-section {
    grid-template-columns: 1fr;
    padding: 60px 30px 30px;
    gap: 40px;
  }

  .career-image-container {
    width: 100%;
    height: auto;
  }

  .career-image-container img {
    height: auto;
  }

  .perks-container {
    flex-direction: column;
    gap: 50px;
  }

  .perks-left h2 {
    text-align: center;
    font-size: 30px;
  }

  .perks-grid {
    justify-content: center;
  }

  .perks-right img {
    width: 100%;
    max-width: 480px;
    height: auto;
  }
}

/* ===============================
   MOBILE (max-width: 768px)
================================*/
@media (max-width: 768px) {

  .career-header-section p {
    margin-bottom: 0rem;
  }

  .career-feature-section {
    padding: 50px 15px 20px;
  }

  .feature-left-career h1 {
    font-size: 26px;
    text-align: center;
  }

  .perks-section {
    padding: 40px 20px 50px;
  }

  .perks-left h2 {
    font-size: 26px;
  }

  .perks-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .perk-card {
    width: 100%;
    max-width: 320px;
    margin: auto;
    height: auto;
  }

  .perk-card p {
    font-size: 15px;
  }

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

/* ===============================
   SMALL MOBILE (max-width: 480px)
================================*/
@media (max-width: 480px) {

  .feature-left-career h1 {
    font-size: 24px;
  }

  .perks-left h2 {
    font-size: 24px;
  }

  .perk-card {
    padding: 20px;
  }
}

/* SECTION */
.employee-review {
  padding: 50px 0px 40px 40px;
  margin: auto;
}

/* HEADER */
.review-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.review-header h2 {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.reviewDivider {
  width: 1px;
  margin-top: -10px;
  height: 30px;
  background: #ccc;
}

.review-header p {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

/* ARROWS */
.review-nav-buttons {
  margin-left: 8rem;
  display: flex;
  gap: 12px;
}


/* CARDS CONTAINER */
.review-cards {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* HIDE SCROLLBAR */
.review-cards::-webkit-scrollbar {
  display: none;
}

.review-cards {
  scrollbar-width: none;
}

/* CARD */
.review-card {
  min-width: 420px;
  background: #7456cc;
  color: #fff;
  border-radius: 35px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TEXT */
.review-text {
  font-size: 14px;
  line-height: 1.6;
}

/* FOOTER */
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.review-user h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 0px;
}

.review-user span {
  font-size: 10px;
  opacity: 0.9;
  font-weight: 400;
  color: #E9EFFF;
}

.review-quote {
  font-size: 60px;
  opacity: 0.25;
  line-height: 1;
}

/* ===============================
   TABLET (max-width: 1024px)
================================*/
@media (max-width: 1024px) {

  .employee-review {
    padding: 40px 20px 60px;
  }

  .review-header {
    flex-wrap: wrap;
    gap: 15px;
  }

  .review-nav-buttons {
    margin-left: auto;
  }

  .review-header p {
    width: 100%;
  }

  .review-card {
    min-width: 360px;
  }
}

/* ===============================
   MOBILE (max-width: 768px)
================================*/
@media (max-width: 768px) {

  .employee-review {
    padding: 35px 15px 50px;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .reviewDivider {
    display: none;
  }

  .review-header h2 {
    font-size: 22px;
  }

  .review-header p {
    font-size: 13px;
  }

  .review-nav-buttons {
    margin-left: 0;
    align-self: flex-end;
  }

  .review-cards {
    gap: 20px;
  }

  .review-card {
    min-width: 90%;
    border-radius: 28px;
  }

  .review-text {
    font-size: 13px;
  }

  .review-user img {
    width: 42px;
    height: 42px;
  }

  .review-user h4 {
    font-size: 13px;
  }

  .review-user span {
    font-size: 9px;
  }
}

/* ===============================
   SMALL MOBILE (max-width: 480px)
================================*/
@media (max-width: 480px) {

  .employee-review {
    padding: 30px 12px 45px;
  }

  .review-header h2 {
    font-size: 20px;
  }

  .review-card {
    padding: 16px;
  }

  .review-quote {
    font-size: 48px;
  }
}

/* ================= CONTAINER ================= */
.career-wrapper {
  margin: auto;
  padding: 50px 40px 40px;
  background: radial-gradient(circle at top, #2b2836, #1b1a22);
  color: #fff;
}

/* ================= HEADER ================= */
.career-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.career-header h1 {
  font-size: 35px;
  font-weight: 400;
}

.career-header p {
  max-width: 800px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #c8c8d0;
}

.career-mail-btn {
  border: 1px solid #fff;
  padding: 10px 50px;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

/* ================= MAIN GRID ================= */
.career-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* ================= FILTER ================= */
.career-filter-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

.career-filter-box select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  margin-bottom: 15px;
  font-size: 14px;
}

/* ================= JOB HEADER ================= */
.career-jobs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  max-width: 800px;
}

.career-jobs-header h2 {
  font-size: 25px;
  font-weight: 600;
}

.career-jobs-header span {
  font-size: 22px;
}

/* ================= JOB CARD ================= */
.career-job-card {
  max-width: 800px;
  background: #fff;
  color: #111;
  border-radius: 22px;
  padding: 12px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.career-job-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.career-job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.career-job-tags span {
  border: 1px solid #222;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.career-apply-btn {
  background: #6e4fd8;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  border: unset;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

a.career-apply-btn:hover,
a.career-apply-btn:focus {
  color: #fff;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

  .career-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }

  .career-job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .career-apply-btn {
    align-self: flex-end;
  }
}

.job-detail-wrapper {
  margin: auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 380px 1fr;
}

/* LEFT CARD */
.job-detail-left-card {
  width: 300px;
  height: 302px;
  background: #c9c6ff;
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.job-detail-back-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 14px;
  margin-bottom: 30px;
  cursor: pointer;
}

.job-detail-left-card h1 {
  font-size: 35px;
  font-weight: 600;
  margin: 0px 0 10px;
  text-align: left;
}

.job-detail-meta {
  color: #555;
  font-size: 16px;
  margin-bottom: 12px;
}

.job-detail-exp {
  color: #666;
  font-size: 14px;
  margin-bottom: 8px;
}

/* APPLY BUTTON */
.job-detail-apply-btn {
  background: #6f54c6;
  color: #fff;
  border-radius: 40px;
  padding: 6px 6px 6px 15px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none;
  width: fit-content;
  border: none;
  cursor: pointer;
}

.job-detail-apply-btn span {
  background: #fff;
  color: #6f54c6;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* RIGHT CONTENT */
.job-detail-right h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.job-detail-right p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 32px;
}

.job-detail-right ul {
  padding-left: 18px;
}

.job-detail-right li {
  margin-bottom: 14px;
  font-size: 15px;
  color: #222;
}

a.job-detail-apply-btn:hover,
a.job-detail-apply-btn:focus {
  color: #fff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .job-detail-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .job-detail-left-card h1 {
    font-size: 34px;
  }

  .job-detail-left-card {
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .job-detail-left-card {
    width: 300px;
  }
}

/* ===================================== */
/*              CONTACT US               */
/* ===================================== */
.contact-wrapper {
  max-width: 700px;
  margin: 150px auto;
  padding: 0 20px;
  position: relative;
}

/* SOCIAL ICONS */
.contact-social-bar {
  position: absolute;
  right: 20px;
  top: -20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-social-bar a {
  width: 45px;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  text-decoration: none;
  transition: .25s;
}

.contact-social-bar a:hover {
  background: #f7f7f7;
}

/* HEADINGS */
.contact-wrapper h4 {
  font-size: 18px;
  font-weight: 600;
  color: #6a5be2;
  margin: 0 0 10px 0;

}

.contact-wrapper h1 {
  font-size: 45px;
  margin: 0 0 35px 0;
  font-weight: 700;
  line-height: 1.2;
}

/* CARD */
.contact-card {
  border: 1.5px solid #DDE2E5;
  border-radius: 14px;
  padding: 35px;
  margin-top: 5rem;
}

.contact-row {
  display: flex;
  gap: 35px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.contact-row>div {
  flex: 1;
  min-width: 220px;
}

/* FORM ELEMENTS */
.contact-card label {
  font-size: 12px;
  color: #777;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1.5px solid #DDE2E5;
  border-radius: 8px;
  margin-top: 6px;
  font-size: 14px;
}

.contact-card textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
.contact-btn {
  display: inline-block;
  background: #7250CC;
  color: #fff;
  border: none;
  padding: 12px 45px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 14px;
}

.post-contact-btn {
  display: inline-block;
  background: #7250CC;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  margin-top: 14px;
}

.contact-btn:hover {
  opacity: .9;
  background: #7250CC;
}

/* PHONE VALIDATION COLORS */
.contact-invalid {
  border-color: red !important;
}

.contact-valid {
  border-color: #DDE2E5 !important;
}

input:focus-visible {
  outline: none;
  border: 1.5px solid #DDE2E5;
}

select:focus-visible {
  outline: none;
  border: 1.5px solid #DDE2E5;
}

textarea:focus-visible {
  outline: none;
  border: 1.5px solid #DDE2E5;
}

/* ----------------------- */
/*      RESPONSIVE CSS     */
/* ----------------------- */

/* Tablets */
@media (max-width: 992px) {
  .contact-wrapper {
    margin: 40px auto;
  }

  .contact-wrapper h1 {
    font-size: 30px;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-social-bar {
    right: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .contact-wrapper {
    padding: 0 15px;
  }

  .contact-wrapper h1 {
    font-size: 26px;
  }

  /* SOCIAL BAR GOES INSIDE, BOTTOM */
  .contact-social-bar {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 18px;
    gap: 12px;
  }

  .contact-card {
    padding: 20px;
    margin-top: 0px;
  }

  .contact-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-row>div {
    min-width: 100%;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }
}

/* Very small devices */
@media (max-width: 420px) {
  .contact-wrapper h1 {
    font-size: 22px;
  }

  .contact-card {
    padding: 16px;
  }
}

/* ----------------------- */
/* PILFERAGE MONITORING    */
/* ----------------------- */

/* ========= BASE (your styles) ========= */

.pilferage-store-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pilferage-trusted-text {
  color: #7c5cf1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  width: 87%;
  text-align: left;
}

.pilferage-store-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  width: 87%;
  text-align: left;
}

.pilferage-store-grid {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
}

.pilferage-store-image img {
  width: 385px;
  height: 375px;
  object-fit: cover;
  border-radius: 35px;
}

.pilferage-store-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pilferage-feature-box {
  background: #e9d7ff;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 15px;
  width: 500px;
  text-align: center;
}

/* ========= RESPONSIVE ========= */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .pilferage-store-grid {
    gap: 25px;
  }

  .pilferage-feature-box {
    width: 420px;
  }

  .pilferage-store-image img {
    width: 330px;
    height: 320px;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .pilferage-store-grid {
    flex-direction: column;
    text-align: center;
  }

  .pilferage-store-image img {
    width: 100%;
  }

  .pilferage-feature-box {
    width: 100%;
    text-align: center;
  }

  .pilferage-store-title,
  .pilferage-trusted-text {
    width: 100%;
  }
}

/* Small mobile (<=480px) */
@media (max-width: 480px) {
  .pilferage-store-title {
    font-size: 26px;
  }

  .pilferage-feature-box {
    font-size: 14px;
    padding: 10px 14px;
  }
}

.pilferage-impact-section {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.pilferage-impact-tag {
  color: #7b5ef2;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pilferage-impact-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 55px;
}

.pilferage-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pilferage-impact-list li {
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.pilferage-impact-list li span {
  display: block;
  width: 85%;
  height: 1px;
  background: #000;
  opacity: 0.6;
  margin-top: 10px;
}

.pilferage-impact-right img {
  margin-top: 6px;
  width: 345px;
  height: 300px;
  object-fit: cover;
  border-radius: 26px;
}

/* ========= RESPONSIVE ========= */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .pilferage-impact-section {
    gap: 25px;
    padding: 0 15px;
  }

  .pilferage-impact-title {
    font-size: 24px;
    margin-bottom: 38px;
  }

  .pilferage-impact-right img {
    width: 310px;
    height: 280px;
  }

  .pilferage-impact-list li {
    font-size: 16px;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .pilferage-impact-section {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 0;
  }

  .pilferage-impact-left {
    width: 100%;
    padding: 0 15px;
  }

  .pilferage-impact-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .pilferage-impact-right img {
    width: 95%;
    height: auto;
    margin-top: 10px;
  }

  .pilferage-impact-title {
    width: 100%;
    font-size: 22px;
    margin-bottom: 26px;
  }

  .pilferage-impact-list li span {
    width: 100%;
  }
}

/* Small mobile (<=480px) */
@media (max-width: 480px) {
  .pilferage-impact-title {
    font-size: 20px;
  }

  .pilferage-impact-list li {
    font-size: 15px;
  }
}

.pilferage-trust-stats {
  max-width: 920px;
  margin: 60px auto;
  padding: 55px 25px 65px;
  background: #221F28;
  border-radius: 26px;
  text-align: center;
  color: #fff;
}

.pilferage-stats-title {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.pilferage-stats-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  /* 🔥 centers the cards */
  align-items: center;
}

.pilferage-stat-card {
  width: 206px;
  height: 204px;
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 18px 28px;
  color: #000;
}

.pilferage-stat-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e5e2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.pilferage-stat-label {
  font-size: 20px;
  line-height: 1.35;
  margin: 0;
}

/* ========= RESPONSIVE ========= */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .pilferage-stats-title {
    font-size: 26px;
  }

  .pilferage-stats-row {
    flex-wrap: wrap;
    /* 🔥 allow wrapping while staying centered */
    gap: 22px;
  }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .pilferage-stats-row {
    flex-direction: column;
    /* 🔥 stack vertically */
    align-items: center;
  }

  .pilferage-stat-card {
    width: 90%;
    max-width: 320px;
    height: auto;
    padding: 22px 16px 24px;
  }

  .pilferage-stats-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .pilferage-stat-circle {
    width: 90px;
    height: 90px;
    font-size: 22px;
  }
}

/* Small mobile (<=480px) */
@media (max-width: 480px) {
  .pilferage-stats-title {
    font-size: 20px;
  }

  .pilferage-stat-label {
    font-size: 14px;
  }
}

.pilferage-feature-section {
  max-width: 960px;
  margin: 70px auto;
  padding: 0 20px;
}

.pilferage-feature-row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.pilferage-feature-row.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.pilferage-feature-image img {
  width: 360px;
  height: 252px;
  border-radius: 22px;
  object-fit: cover;
}

.pilferage-feature-content h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.pilferage-feature-content p {
  font-size: 16px;
  line-height: 1.55;
  color: #4a4a4a;
}

/* ----------- Responsive Styles ----------- */

/* Tablets */
@media (max-width: 992px) {
  .pilferage-feature-row {
    gap: 24px;
  }

  .pilferage-feature-content h2 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pilferage-feature-row {
    flex-direction: column;
    text-align: left;
  }

  .pilferage-feature-row.reverse {
    flex-direction: column;
  }

  .pilferage-feature-image img {
    max-width: 100%;
    height: auto;
  }
}

/* ----------------------- */
/*      OCCUPANCY CSS    */
/* ----------------------- */
.occupancy-section {
  max-width: 965px;
  margin: 70px auto;
  padding: 0px 15px;
}

.occupancy-monitoring-header-section p {
  margin-bottom: 3rem;
}

.occupancy-header {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.occupancy-header h2 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;
  min-width: 350px;
}

.occupancy-v-line {
  margin-top: 8px;
  width: 4px;
  height: 90px;
  background: #999;
}

.occupancy-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #444;
}

.task-management-occupancy-desc {
  font-size: 14px;
}

.occupancy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.occ-card h4 {
  margin: 10px 0 6px;
  font-size: 17px;
  font-weight: 700;
}

.occ-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.occ-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f1e9ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.occ-icon img {
  width: 32px;
}

/* ---------- RESPONSIVE ---------- */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .occupancy-section {
    max-width: 100%;
  }

  .occupancy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .occupancy-header h2 {
    min-width: auto;
    font-size: 26px;
  }

  .occupancy-v-line {
    height: 70px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .occupancy-header {
    flex-direction: column;
    gap: 16px;
  }

  .occupancy-monitoring-header-section p {
    margin-bottom: 0rem;
  }

  .occupancy-v-line {
    display: none;
    /* vertical line hidden on mobile */
  }

  .occupancy-desc {
    font-size: 15px;
  }

  .occupancy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 18px;
  }

  .occ-card h4 {
    font-size: 16px;
  }

  .occ-card p {
    font-size: 13px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .occupancy-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .occupancy-header h2 {
    font-size: 22px;
  }

  .occ-icon {
    width: 52px;
    height: 52px;
  }

  .occ-icon img {
    width: 26px;
  }
}

.occupancy-store-section {
  max-width: 965px;
  margin: 0 auto;
  padding: 50px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.occupancy-feature-box {
  background: #EADBFF;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 15px;
  width: 515px;
  text-align: center;
}

.occupancy-trusted-text {
  color: #7c5cf1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  width: 100%;
  text-align: left;
}

.occupancy-store-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  width: 100%;
  text-align: left;
}

.occupancy-store-image img {
  width: 355px;
  height: 305px;
  object-fit: cover;
  border-radius: 22px;
}

.occupancy-store-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.occupancy-v-line1 {
  margin-top: 8px;
  width: 2px;
  height: 40px;
  background: #999;
}

.occupancy-store-image {
  position: relative;
  display: inline-block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.25s ease;
}

.play-btn:hover {
  background: #fff;
}

/* ==========  Tablet (≤1024px)  ========== */
@media (max-width: 1024px) {
  .occupancy-store-section {
    padding: 0px 15px;
  }

  .occupancy-store-title {
    font-size: 30px;
  }

  .occupancy-feature-box {
    width: 100%;
    max-width: 520px;
  }

  .occupancy-store-grid {
    gap: 35px;
  }
}

/* ==========  Mobile (≤768px)  ========== */
@media (max-width: 768px) {
  .occupancy-store-grid {
    flex-direction: column;
    text-align: center;
  }

  .occupancy-store-title,
  .occupancy-trusted-text {
    text-align: center;
  }

  .occupancy-store-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .occupancy-feature-box {
    font-size: 14px;
    padding: 10px 16px;
  }

  .occupancy-v-line1 {
    display: none;
  }
}

/* ==========  Small Mobile (≤480px)  ========== */
@media (max-width: 480px) {
  .occupancy-store-title {
    font-size: 22px;
  }

  .play-btn {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .occupancy-feature-box {
    padding: 10px 12px;
  }
}

.occupancy-industry-section {
  max-width: 965px;
  margin: 20px auto;
  padding: 0 15px;
}

.occupancy-industry-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.occupancy-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 8px;
}

.occupancy-tag {
  background: #f3f3f3;
  padding: 10px 15px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .occupancy-industry-section {
    margin: 50px auto;
  }
}

/* ----------------------- */
/*      PEOPLE COUNTING CSS    */
/* ----------------------- */
.people-counting-header-section p {
  margin-bottom: 3rem;
}

.people-deployment-section {
  max-width: 965px;
  margin: 70px auto;
  padding: 0 20px;
}

.people-deployment-header {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 35px;
}

.people-deployment-header h2 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.18;
  min-width: 450px;
  font-variation-settings: "wght" 550;
}

.people-deployment-vline {
  width: 2px;
  height: 65px;
  background: #aaa;
}

.people-deployment-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #444;
}

.people-deployment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.people-deploy-card h4 {
  margin: 12px 0 6px;
  font-size: 18px;
  font-weight: 700;
}

.people-deploy-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.people-deploy-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #e7ddff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.people-deploy-icon img {
  width: 38px;
}

/* ============= Responsive Breakpoints ============= */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  .people-deployment-header h2 {
    min-width: auto;
    font-size: 28px;
  }

  .people-deployment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets */
@media (max-width: 768px) {
  .people-counting-header-section p {
    margin-bottom: 0rem;
  }

  .people-deployment-header {
    flex-direction: column;
    text-align: center;
  }

  .people-deployment-vline {
    display: none;
  }

  .people-deployment-header h2 {
    font-size: 26px;
  }

  .people-deployment-grid {
    gap: 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .people-deployment-section {
    margin: 40px auto;
  }

  .people-deployment-header h2 {
    font-size: 22px;
  }

  .people-deployment-grid {
    grid-template-columns: 1fr;
  }

  .people-deploy-card h4 {
    font-size: 16px;
  }

  .people-deploy-card p {
    font-size: 13px;
  }

  .people-deploy-icon {
    width: 70px;
    height: 70px;
  }

  .people-deploy-icon img {
    width: 30px;
  }
}

.people-counting-stats {
  max-width: 920px;
  margin: 60px auto;
  padding: 45px 25px;
  background: #221F28;
  border-radius: 26px;
  text-align: center;
  color: #fff;
}

.people-counting-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.people-counting-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.people-counting-card {
  width: 190px;
  height: 200px;
  background: #ffffff;
  border-radius: 24px;
  padding: 15px 0 0;
  color: #000;
}

.people-counting-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e5e2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.people-counting-label {
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
  font-weight: 600;
}

/* ================== Responsive ================== */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
  .people-counting-title {
    font-size: 26px;
  }

  .people-counting-card {
    width: 175px;
    height: 190px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .people-counting-stats {
    padding: 35px 20px;
  }

  .people-counting-title {
    font-size: 24px;
  }

  .people-counting-card {
    width: 160px;
    height: 180px;
  }

  .people-counting-circle {
    width: 90px;
    height: 90px;
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .people-deployment-grid {
    grid-template-columns: 1fr;
  }

  .people-deploy-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .people-deploy-icon {
    margin: 0 auto 10px;
  }

  .people-counting-title {
    font-size: 20px;
  }

  .people-counting-row {
    gap: 14px;
  }

  .people-counting-card {
    width: 100%;
    max-width: 250px;
    height: auto;
    padding: 18px 0 20px;
  }

  .people-counting-circle {
    width: 80px;
    height: 80px;
    font-size: 22px;
  }

  .people-counting-label {
    font-size: 16px;
  }
}

.people-store-section {
  max-width: 965px;
  margin: 0 auto;
  padding: 0px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.people-feature-box {
  background: #EADBFF;
  padding: 10px 20px;
  border-radius: 16px;
  font-size: 15px;
  width: 505px;
  text-align: center;
}

.people-trusted-text {
  color: #7c5cf1;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 14px;
  width: 100%;
  padding-left: 8px;
  text-align: left;
}

.people-header {
  display: flex;
  gap: 30px;
  padding-left: 8px;
  margin-bottom: 20px;
}

.people-header h2 {
  font-size: 26px;
  font-weight: 600;
}

.people-store-grid {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.people-store-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 📱 Responsive — Tablet */
@media (max-width: 992px) {

  .people-store-grid {
    gap: 30px;
  }

  .people-feature-box {
    width: 100%;
    max-width: 520px;
  }

  .people-header h2 {
    font-size: 24px;
  }
}

.people-store-video video {
  width: 355px;
  height: 305px;
  object-fit: cover;
  border-radius: 22px;
}

/* Responsive — Mobile */
@media (max-width: 576px) {

  .people-store-section {
    padding: 0 10px;
    text-align: center;
  }

  .people-header {
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    align-items: center;
  }

  .people-trusted-text {
    text-align: center;
    padding-left: 0;
  }

  .people-header h2 {
    font-size: 20px;
    text-align: center;
  }

  .people-store-grid {
    flex-direction: column;
    gap: 25px;
  }

  .people-store-video video {
    width: 100%;
  }

  .people-store-features {
    align-items: center;
  }

  .people-feature-box {
    width: 100%;
    max-width: 420px;
  }
}

.people-counting-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 30px;
}

@media (max-width: 992px) {
  .people-counting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 768px) {
  .people-counting-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 18px;
  }

  .occ-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .people-counting-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.people-client-slider {
  max-width: 965px;
  margin: 40px auto;
  padding: 30px 15px;
}

.people-client-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.people-client-header h2 {
  font-size: 28px;
  font-weight: 600;
}

/* BUTTONS */
.people-client-controls button {
  width: 34px;
  height: 34px;
  margin-left: 8px;
  border-radius: 50%;
  border: none;
  background: #444;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.people-client-controls button:hover {
  background: #000;
}

/* SCROLL TRACK */
.people-client-track {
  display: flex;
  gap: 50px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 5px 0;
  flex-wrap: nowrap;
  /* prevents wrapping */
}

.people-client-track img,
.client-logo {
  max-width: 150px;
  height: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Hide scrollbar (optional) */
.people-client-track::-webkit-scrollbar {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .people-client-header h2 {
    font-size: 22px;
  }

  .people-client-track {
    gap: 35px;
  }

  .people-client-track img {
    width: 120px;
  }
}

@media (max-width: 576px) {
  .people-client-header h2 {
    font-size: 19px;
  }

  .people-client-track {
    gap: 25px;
  }

  .people-client-track img {
    width: 95px;
  }
}


.people-pricing-section {
  max-width: 965px;
  margin: 60px auto;
  padding: 30px 15px 0px;
}

.people-pricing-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.people-pricing-image img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.people-pricing-content h2 {
  font-size: 32px;
  margin-bottom: 14px;
  font-weight: 700;
}

.people-pricing-content p {
  font-size: 16px;
  line-height: 1.55;
  color: #555;
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .people-pricing-container {
    gap: 30px;
  }

  .people-pricing-content h2 {
    font-size: 28px;
  }

  .people-pricing-content p {
    font-size: 15px;
  }
}

/* Small tablets & large phones (≤ 768px) */
@media (max-width: 768px) {
  .people-pricing-container {
    flex-direction: column;
    text-align: center;
  }

  .people-pricing-image img {
    width: 260px;
  }

  .people-pricing-content {
    text-align: left;
  }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
  .people-pricing-section {
    padding: 40px 15px;
    margin: 30px auto;
  }

  .people-pricing-content h2 {
    font-size: 24px;
  }

  .people-pricing-content p {
    font-size: 14px;
  }

  .people-pricing-image img {
    width: 220px;
  }
}

/* ----------------------- */
/*      TASK MANAGEMENT CSS    */
/* ----------------------- */
.task-management-track-section {
  max-width: 965px;
  margin: 0 auto;
  padding: 70px 15px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.task-management-header-section p {
  margin-bottom: 2.5rem;
}

.task-management-track-header {
  display: flex;
  gap: 30px;
  padding-left: 8px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;

}

.task-management-track-header h2 {
  font-size: 26px;
  font-weight: 600;
  min-width: 335px;
  padding-bottom: 0.5rem;
}

.task-management-track-image img {
  width: 355px;
  height: 270px;
  object-fit: cover;
  border-radius: 22px;
}

.task-management-prioritise-image img {
  width: 355px;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
}

.task-management-spot-image img {
  width: 355px;
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
}

.task-management-spot-header {
  display: flex;
  gap: 30px;
  padding-left: 8px;
  margin-bottom: 20px;
  align-items: center;
}

.task-management-spot-header h2 {
  font-size: 26px;
  font-weight: 600;
  min-width: 315px;
}

.task-management-tangible-image {
  display: flex;
  justify-content: center;
  /* horizontally center */
  align-items: center;
  /* vertically center (within its row/box) */
}

.task-management-tangible-image img {
  width: 355px;
  object-fit: cover;
  border-radius: 22px;
}

.task-management-communication-image img {
  width: 355px;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
}

.occupancy-v-line2 {
  margin-top: 8px;
  width: 2px;
  height: 60px;
  background: #999;
}

/* ---------- Tablet (<= 992px) ---------- */
@media (max-width: 992px) {

  .task-management-track-section {
    padding: 50px 15px;
  }

  .task-management-track-header,
  .task-management-spot-header {
    gap: 18px;
  }

  .task-management-track-header h2,
  .task-management-spot-header h2 {
    min-width: auto;
    font-size: 22px;
  }

  .task-management-track-image img,
  .task-management-prioritise-image img,
  .task-management-spot-image img,
  .task-management-tangible-image img,
  .task-management-communication-image img {
    width: 300px;
  }
}

/* ---------- Mobile (<= 768px) ---------- */
@media (max-width: 768px) {

  .task-management-track-header,
  .task-management-spot-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .task-management-header-section p {
    margin-bottom: 0rem;
  }

  .task-management-track-section {
    align-items: center;
  }

  .task-management-track-image,
  .task-management-prioritise-image,
  .task-management-spot-image,
  .task-management-tangible-image,
  .task-management-communication-image {
    display: flex;
    justify-content: center;
  }

  .task-management-track-image img,
  .task-management-prioritise-image img,
  .task-management-spot-image img,
  .task-management-tangible-image img,
  .task-management-communication-image img {
    width: 90%;
    max-width: 340px;
    height: auto;
  }

  .occupancy-v-line2 {
    display: none;
  }
}

/* ---------- Small phones (<= 576px) ---------- */
@media (max-width: 576px) {

  .task-management-track-section {
    padding: 40px 10px;
  }

  .task-management-track-header h2,
  .task-management-spot-header h2 {
    font-size: 20px;
  }

  .task-management-track-image img,
  .task-management-prioritise-image img,
  .task-management-spot-image img,
  .task-management-tangible-image img,
  .task-management-communication-image img {
    width: 100%;
    max-width: 310px;
  }
}

/* ----------------------- */
/*      FACIAL RECOGNITION CSS    */
/* ----------------------- */
.facial-face-section {
  max-width: 965px;
  margin: 70px auto;
  padding: 0 20px;
}

.facial-face-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

.facial-face-left h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.facial-face-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.facial-face-item h4 {
  margin: 10px 0 6px;
  font-weight: 600;
  font-size: 15px;
}

.facial-face-item p {
  color: #555;
  line-height: 1.5;
  font-size: 14px;
}

.facial-face-icon {
  font-size: 34px;
}

.facial-face-divider {
  margin-top: 5px;
  border-bottom: 1px solid #dcdcdc;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .facial-face-container {
    grid-template-columns: 1fr;
  }

  .facial-face-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .facial-face-right {
    grid-template-columns: 1fr;
  }

  .facial-face-left h2 {
    font-size: 26px;
  }
}





.facial-store-section {
  max-width: 965px;
  margin: 0 auto;
  padding: 0px 15px 30px;
  flex-direction: column;
  align-items: center;
}

.facial-header {
  max-width: 700px;
  text-align: left;
  margin-bottom: 25px;
}

/* heading */
.facial-header h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 600;
}

@media (max-width: 992px) {
  .facial-store-section {
    padding: 40px 20px;
  }

  .facial-header h2 {
    font-size: 28px;
  }
}

/* Tablets & big phones */
@media (max-width: 768px) {
  .facial-header {
    max-width: 100%;
    text-align: center;
    /* center on mobile */
  }

  .facial-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .facial-store-section {
    padding: 32px 18px;
  }

  .facial-header h2 {
    font-size: 22px;
  }
}






.facial-usecases-section {
  max-width: 1100px;
  margin: 50px auto;
  text-align: center;
}

.facial-usecases-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 45px;
}

.facial-usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.facial-usecase-item {
  text-align: center;
}

.facial-icon-circle {
  width: 60px;
  height: 60px;
  background: #efddff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 14px;
}

.facial-icon-circle img {
  width: 100%;
}

.facial-usecase-item p {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .facial-usecases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .facial-usecases-section h2 {
    font-size: 28px;
  }
}

/* Tablets & big phones */
@media (max-width: 768px) {
  .facial-usecases-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .facial-icon-circle {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .facial-usecase-item p {
    font-size: 15px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .facial-usecases-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .facial-icon-circle {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
}










.form-bx {
  width: 80%;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.3);
  margin: 100px auto;
  padding: 30px;
  text-align: center;
}

/*.form-bx .row{margin: 0;}*/
.form-bx h3 {
  font-size: 30px;
  font-weight: 400;
  color: #6c49bf;
  margin: 50px auto 40px;
}

.form-bx a {
  color: #7AE9DE;
}

.form-bx label {
  color: #acacac;
  font-size: 20px;
  text-align: left;
  font-weight: 400;
}

.form-bx .form-check.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 30%;
}

.form-bx .form-check.form-check-inline label::before,
.form-check input[type="checkbox"]:checked+label::before {
  display: none;
}

.form-heading {
  text-align: left;
  padding: 10px;
  background: #f1f1f1;
  margin: 0 -15px 20px;
}

.form-border {
  border: 2px solid #ababab;
  border-radius: 5px;
  padding-top: 2px;
  text-align: left;
}

.button-tooltip {
  background: #6c49c9;
  color: #fff;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  outline: none !important;
  margin-left: 8px;
}

.have-no-account {
  font-size: 20px;
  margin: 40px auto;
}

.have-no-account .btn.btn-outline-primary {
  color: #6c49bf;
  border: 1px solid #6c49bf;
  border-radius: 20px;
  margin-left: 10px;
}

.have-no-account .btn.btn-outline-primary:hover {
  color: #6c49bf;
  background-color: #fff;
  border-color: #6c49bf;
}

.password-wrapper input {
  width: 100%;
  padding-right: 30px;
}

.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

.have-no-account {
  font-size: 20px;
  margin: 40px auto;
}

.have-no-account {
  font-size: 20px;
  margin: 40px auto;
}

.have-no-account .btn.btn-outline-primary {
  color: #6c49bf;
  border: 1px solid #6c49bf;
  border-radius: 20px;
  margin-left: 10px;
}

.have-no-account .btn.btn-outline-primary:hover {
  color: #6c49bf;
  background-color: #fff;
  border-color: #6c49bf;
}

.btnprimary,
.btnprimary-alt {
  background: #0e0e0e;
  cursor: pointer;
}

.btnprimary:hover,
.btnprimary:focus {
  background: #6c49c9;
  border: 1px solid #6c49c9;
  outline: none;
}

.button .btnprimary {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 0.8rem 1.8rem;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 5px;
  text-align: center;
  z-index: 1;
  border: 1px solid transparent;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  overflow: hidden;
}

.pricing-tab1 {
  padding: 5px;
  border-radius: 20px;
  width: 100%;
  border: 4px solid #714fbb;
  margin-bottom: 50px;
}

.pricing-tab1 li {
  width: 20%;
  padding: 5px;
  box-sizing: border-box;
}

.pricing-tab1.nav-pills .nav-link {
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #6c49b9;
  font-weight: 500;
  font-size: 18px;
  height: 100%;
}

.pricing-tab1.nav-pills .nav-link.active {
  background: #6c49b9;
  color: #fff;
}

.pricing-tab1.nav-pills .choose-solution {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 21px;
  text-align: center;
  line-height: 21px;
  color: #6c49b9;
}

.pricing-tab1.nav-pills .choose-solution {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 21px;
  text-align: center;
  line-height: 21px;
  color: #6c49b9;
  padding-top: 20px;
}

.tech-bx {
  border: 3px solid #606060 !important;
  border-radius: 20px;
  padding: 30px !important;
}

.tech-bx-icon {
  height: 130px;
  width: 90%;
  text-align: center;
  border-bottom: 3px solid #6c49b0;
  display: inline-block;
  position: relative;
}

.tech-bx-icon img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.tech-bx .header-tech h3 {
  font-size: 24px;
  font-weight: 900;
  color: #606060;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 30px;
}

.tech-bx li {
  color: #636363;
  margin-bottom: 10px;
  font-size: 22px;
}

.eula-text {
  color: #636363;
  font-size: 14px;
  margin: auto;
  margin-bottom: 70px;
}

.eula-text p {
  margin-bottom: 10px;
}

.eula-text h3 {
  font-size: 18px;
  margin: 20px 0;
}

.eula-text ul {
  margin: 10px 0;
  padding: 0;
  list-style-position: inside;
}

.eula-text ul li {
  margin-bottom: 10px;
}

.eula-text ul ul {
  margin-left: 10px;
}

.eula-text .alpha-small-ul {
  list-style-type: lower-alpha;
}

.eula-text .number-roman-ul {
  list-style-type: lower-roman;
}

.eula-text .dice-ul {
  list-style-type: disc;
}

.privacy-policy {
  padding: 5px 0;
  background: #707070;
  font-size: 14px;
  text-align: center;
  color: #e0e0e0;
}

.cameraDIV .fa.fa-trash {
  color: darkgrey;
  float: right;
  margin-right: auto !important;
  font-size: 20px;
  position: absolute;
  top: -15px;
  right: -15px;
  cursor: pointer;
}

.preload {
  z-index: 1000;
  width: 128px !important;
  height: 128px !important;
  left: calc(50% - 64px) !important;
  border-radius: 50%;
  overflow: hidden;
}

.layer-content {
  position: absolute;
  margin-left: -200px;
}

.layer-content2 {
  position: absolute;
  margin-top: 110px;
}

.layer-content3 {
  position: absolute;
  margin-top: 210px;
}

.layer-content4 {
  position: absolute;
  margin-top: 110px;
}

.layer-content5 {
  position: absolute;
  margin-top: 110px;
}

.layer-content6 {
  position: absolute;
  margin-top: 110px;
  margin-left: -50px;
}

/* .tp-bullets{left:calc(50% - 52px) !important;} */
.table#areaCleaningTimeSlotTBL {
  width: 93%;
}

.table#areaCleaningTimeSlotTBL tr {
  position: relative;
}

.table#areaCleaningTimeSlotTBL tr td:nth-child(4) {
  position: absolute;
}

@media (max-width: 767px) {
  .inside-header h1 {
    padding: 10px 20px;
  }

  .inside-header-monitoring h1 {
    padding: 10px 20px;
  }

  .inside-header {
    background-size: cover;
  }

  .inside-header-monitoring {
    background-size: cover;
  }

  .sec-icon img {
    position: relative;
    margin-bottom: 20px
  }

  .form-bx {
    width: 100%;
  }

  .form-bx .login-logo {
    display: none;
  }

  .form-bx h3 {
    margin: 20px auto 40px;
  }

  .about-us-header,
  .core-team-header {
    padding: 20px;
    font-weight: 600;
  }

  .about-us-header p,
  .core-team-header p {
    font-size: 18px;
  }

  .about-us-header ul {
    font-size: 18px;
  }

  .real-time-face img {
    width: 98%;
    margin: auto;
  }

  .pricing-tab1 li {
    width: 100%;
    display: block;
  }

  .employee-productivity-header {
    height: 720px;
  }

  .footfall-counter-header {
    height: 300px;
    max-height: 100%;
  }

  .pr-hd,
  .price-sec div {
    border: none !important;
  }

  .inside-header2.pricing-header h2 {
    font-size: 27px;
  }

  .navbar-nav .nav-link {
    text-align: center;
  }

  /*	.navbar-nav .dropdown-menu{display: block;}
	.navbar-nav .dropdown-toggle::after{display: none;}*/
  .facial-attendance-row .row {
    width: 100%;
    padding: 10px;
    border-radius: 40px !important;
  }

  .facial-attendance-process.process-wrapp li {
    width: 100%;
  }

  .rev_slider .button.btnprimary {
    margin: 38px 5px 0px !important;
  }

  .faq-list-group {
    margin-bottom: 25px;
  }

  .quick-facts h2 {
    font-size: 40px;
  }

  .quick-facts ul {
    font-size: 24px;
  }

  #site-footer ul {
    margin-bottom: 30px;
  }

  #site-footer ul li {
    margin-bottom: 5px;
  }

  #site-footer h4 {
    margin-bottom: 10px;
  }

  .inside-header-bg {
    font-size: 2rem !important;
  }

  .price-sec div.price-bx::before {
    display: none;
  }

  .subscription-tab {
    border-radius: 0;
    border: 1px solid #5e37b4;
  }

  .subscription-tab .nav-item,
  .subscribe-free-trial .subscription-tab .nav-item {
    width: 100%;
  }

  .subscription-tab .nav-link:after,
  .subscription-tab .nav-link:before {
    display: none;
  }

  .subscription-tab .nav-link {
    border-radius: 0;
  }

  .navbar .collapse.show {
    display: block;
    height: calc(100vh - 94px);
    overflow-y: auto;
  }

  .layer-content {
    margin-left: auto;
  }

  .layer-content2 {
    margin-top: auto;
  }

  .price-heading>div:nth-child(n+2) {
    display: none;
  }

  .price-sec div.price-bx {
    padding: 0;
  }

  .price-sec div.price-bx::after {
    content: "\20B9";
    position: absolute;
    left: 94px;
  }

  .price-sec div:nth-child(3) {
    padding: 0;
  }

  .price-sec div .btnprimary.btn-sm {
    font-size: 16px;
    padding: 1rem 2.5rem;
    font-weight: 700;
  }

  .pr-hd {
    font-weight: 600;
  }

  .occupancy-why h2 {
    font-size: 2rem;
  }

  .occupancy-ul {
    font-size: 1.5rem;
  }

  .occupancy-ul .check-icon {
    float: left;
    margin-bottom: 13px;
    margin-top: 10px;
    width: 40px;
  }

  #COVID19MonitoringSuiteVideo .modal-content,
  #HygieneMonitoringSystemVideo .modal-content,
  #OccupancyMonitoringSystemVideo .modal-content {
    width: 94% !important;
    height: auto !important;
  }

  #COVID19MonitoringSuiteVideo .modal-content iframe,
  #HygieneMonitoringSystemVideo .modal-content iframe,
  #OccupancyMonitoringSystemVideo .modal-content iframe {
    width: 100% !important;
    height: auto !important;
  }

  .form-group .col-sm-12>.col-sm-6 {
    margin-bottom: 20px;
    padding: 0;
  }

  #camModules_1.form-group .col-sm-4.col-form-label {
    width: 70%;
  }

  #camModules_1.form-group .col-sm-2 {
    width: 30%;
  }

  #pills-tabContent2 .pricing-tab {
    margin-left: auto;
  }

  #pills-tabContent2.tab-content {
    text-align: center;
  }

  #pills-tabContent2.tab-content .try-btn {
    position: relative;
    left: auto;
    top: auto;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .modal-open .modal#subscribeVideoModel {
    padding-right: 0 !important;
  }

  .modal-open .modal#subscribeVideoModel .modal-content {
    width: auto !important;
    height: auto !important;
  }

  .modal-open .modal#subscribeVideoModel .modal-content #video1 {
    width: 100% !important;
    height: auto !important;
  }

  .faq-list-dtl .panel-heading h4.panel-title a {
    max-width: 90%;
  }

  .faq-list-dtl .panel-heading h4.panel-title a::after,
  .faq-list-dtl .panel-heading h4.panel-title a[class="collapsed"]::after {
    right: -20px;
    top: 14px;
  }
}

/* ----------------------- */
/*  FACIAL BASED TIME AND ATTENDANCE CSS    */
/* ----------------------- */
.facial-based-header-section p {
  margin-bottom: 2rem;
}

.facial-based-feature-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facial-based-grid {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.facial-based-image img {
  width: 315px;
  height: 320px;
  object-fit: cover;
  border-radius: 35px;
}

.facial-based-features-box {
  background: #e9d7ff;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 15px;
  width: 580px;
  text-align: center;
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {
  .facial-based-grid {
    flex-direction: column;
    gap: 35px;
  }

  .facial-based-features-box {
    width: 100%;
  }

  .facial-based-image img {
    width: 100%;
    height: 400px;
    border-radius: 24px;
  }
}

/* =========================
   MOBILE (<= 576px)
========================= */
@media (max-width: 576px) {
  .facial-based-features-box {
    font-size: 14px;
    padding: 12px 16px;
  }
}

.facial-based-time-management {
  padding: 80px 20px;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.facial-based-time-management h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.facial-based-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

/* FEATURES GRID */
.facial-based-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-left: 4.5rem;
}

.facial-based-feature-card {
  background: #f4ecff;
  border-radius: 14px;
  padding: 10px;
  height: 110px;
  text-align: center;
  box-shadow: 0 6px 4px rgba(0, 0, 0, 0.4);
}

.facial-based-feature-card .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.facial-based-feature-card p {
  font-size: 12px;
}

/* PHONE MOCKUPS */
.facial-based-phones {
  position: relative;
  display: flex;
  justify-content: center;
}

.facial-based-phones img {
  width: 100%;
  border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .facial-based-content {
    grid-template-columns: 1fr;
  }

  .facial-based-phones {
    margin-top: 40px;
  }

  .facial-based-features {
    margin-left: 3.5rem;
  }
}

@media (max-width: 768px) {
  .facial-based-features {
    margin-left: 0px;
  }
}

@media (max-width: 576px) {
  .facial-based-features {
    grid-template-columns: 1fr;
    margin-left: 0px;
  }

  .facial-based-feature-card {
    width: 100%;
    height: auto;
  }

  .facial-based-phones img {
    width: 200px;
  }
}

.facial-based-mobile-feature-section {
  background: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.facial-based-mobile-feature-card {
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
  border-radius: 20px;
  background: #fafafa;
  border: 1px solid #e6e6e6;
}

.facial-based-mobile-feature-title {
  font-size: 30px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
  text-shadow: 0 0 0.6px currentColor;
}

/* GRID */
.facial-based-mobile-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 40px;
}

/* ITEM */
.facial-based-mobile-feature-item {
  text-align: center;
  max-width: 260px;
  margin: auto;
}

.facial-based-mobile-feature-item p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}

/* ICON */
.facial-based-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #efe3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* =======================
   TABLET
======================= */
@media (max-width: 992px) {
  .facial-based-mobile-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facial-based-mobile-feature-title {
    font-size: 30px;
  }

}

/* =======================
   MOBILE
======================= */
@media (max-width: 576px) {
  .facial-based-mobile-feature-card {
    padding: 40px 20px;
  }

  .facial-based-mobile-feature-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .facial-based-mobile-feature-title {
    font-size: 24px;
  }

  .facial-based-mobile-feature-item p {
    font-size: 15px;
  }
}

.facial-based-mobile-time-section {
  background: #ffffff;
  max-width: 942px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid #ccc;
}

.facial-based-time-container h1 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 22px;
}

.facial-based-time-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* LEFT ICON COLUMN */
.facial-based-time-icons {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

/* CENTER TEXT */
.facial-based-time-features {
  padding-top: 10px;
}

.facial-based-time-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facial-based-time-features li {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
  position: relative;
  padding-left: 28px;
}

.facial-based-time-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background-image: url("../images/slider/facial_ring_round.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* RIGHT MOBILE IMAGE */
.facial-based-time-mobile-preview img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin-left: auto;
}

/* DASHBOARD IMAGE */
.facial-based-time-dashboard {
  margin-top: -120px;
  text-align: center;
}

.facial-based-time-dashboard img {
  max-width: 50%;
  border-radius: 6px;
}

/* =========================
   TABLET (max-width: 1024px)
========================= */
@media (max-width: 1024px) {

  .facial-based-time-content {
    grid-template-columns: 70px 1fr 160px;
    gap: 25px;
  }

  .facial-based-time-icons {
    gap: 35px;
  }

  .facial-based-mobile-time-section {
    margin: 0 90px;
  }

  .facial-based-time-features li {
    font-size: 14px;
  }

  .facial-based-time-dashboard {
    margin-top: 0px;
    margin-right: 10rem;
  }

  .facial-based-time-dashboard img {
    max-width: 75%;
  }
}

/* =========================
   MOBILE (max-width: 768px)
========================= */
@media (max-width: 768px) {

  .facial-based-mobile-time-section {
    border-right: none;
    padding: 0 15px;
    margin: 0 0px;
  }

  .facial-based-time-container h1 {
    font-size: 22px;
  }

  .facial-based-time-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  /* ICONS → HORIZONTAL */
  .facial-based-time-icons {
    flex-direction: row;
    gap: 25px;
    justify-content: center;
  }

  .facial-based-time-content {
    grid-template-columns: 80px 1fr 300px;
    gap: 25px;
  }

  /* TEXT */
  .facial-based-time-features {
    padding-top: 0;
    width: 100%;
  }

  .facial-based-time-features li {
    padding-left: 26px;
    font-size: 14px;
  }

  .facial-based-time-features li::before {
    top: 4px;
    width: 18px;
    height: 18px;
  }

  /* MOBILE IMAGE */
  .facial-based-time-mobile-preview img {
    margin: 0 auto;
    max-width: 260px;
  }

  /* DASHBOARD */
  .facial-based-time-dashboard {
    margin-top: -40px;
    margin-right: 0rem;
  }

  .facial-based-time-dashboard img {
    max-width: 100%;
  }
}

/* =========================
   SMALL MOBILE (max-width: 480px)
========================= */
@media (max-width: 480px) {

  .facial-based-time-container h1 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .facial-based-time-features li {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .facial-based-time-icons img {
    width: 40px;
  }

  .facial-based-time-dashboard {
    margin-top: -20px;
  }
}

.facial_based-gamified-section {
  max-width: 1100px;
  margin: auto;
  padding: 70px 68px;
}

/* HEADING */
.facial_based-gamified-section h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 0 0 0.6px currentColor;
}

/* CONTENT WRAPPER */
.facial_based-gamified-content {
  display: flex;
  gap: 50px;
  align-items: stretch;
}

/* LEFT IMAGE */
.facial_based-gamified-image {
  flex: 1;
}

.facial_based-gamified-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

/* RIGHT CARD */
.facial_based-gamified-card {
  flex: 1.1;
  background: #EADBFF;
  border-radius: 20px;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* CARD ITEMS */
.facial_based-gamified-item {
  font-size: 15px;
  line-height: 1.5;
  padding: 9px 0;
}

.facial_based-gamified-divider {
  height: 1.3px;
  background: #000;
  opacity: 0.8;
}

.facial_based-gamified-divider1 {
  height: 1.3px;
  background: #000;
  opacity: 0.8;
}

.facial_based-gamified-divider2 {
  height: 1.3px;
  background: #000;
  opacity: 0.8;
}

.facial-based-smart-step-box {
  padding: 25px 20px 14px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facial-based-smart-step-box h3 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 700;
}

.facial-based-smart-step-box p {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 0 0.6px currentColor;
}

.facial-based-smart-step {
  width: 18%;
  min-width: 200px;
  position: relative;
  text-align: center;
}

.facial-based-smart-step-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .facial_based-gamified-content {
    flex-direction: column;
  }

  .facial_based-gamified-section h2 {
    font-size: 30px;
  }

  .facial_based-gamified-card {
    padding: 30px;
  }

  .facial-based-smart-step {
    width: 45%;
    min-width: unset;
    margin-bottom: 40px;
  }

  .facial-based-smart-step:first-child .facial-based-smart-step-box {
    border-radius: 25px;
  }

  .facial-based-smart-step:last-child .facial-based-smart-step-box {
    border-radius: 25px;
  }
}

@media (max-width: 768px) {
  .facial_based-gamified-section {
    padding: 70px 15px;
  }

  .facial-based-smart-step-icon {
    width: 45px;
    height: 45px;
  }

  .facial-based-smart-step {
    width: 100%;
    margin-bottom: 40px;
  }

  .facial-based-smart-step-box {
    height: auto;
    padding: 20px 18px;
    border-radius: 18px !important;
  }

  .facial-based-smart-step-box h3 {
    font-size: 16px;
  }

  .facial-based-smart-step-box p {
    font-size: 15px;
  }

  .facial-based-smart-step {
    width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .facial-based-smart-step-box {
    padding: 18px 15px;
  }

  .facial-based-smart-step-box h3 {
    font-size: 15px;
  }

  .facial-based-smart-step-box p {
    font-size: 14px;
    line-height: 1.4;
  }

  .facial_based-gamified-section h2 {
    font-size: 22px;
  }

  .facial_based-gamified-item {
    font-size: 15px;
  }

  .facial-based-smart-step-icon {
    width: 40px;
    height: 40px;
  }
}

/* =========================
  REWARDS AND RECOGNITION
========================= */
.second-section .rewards-recognition img {
  width: 380px;
  height: 400px;
  border-radius: 20px;
  box-shadow: none;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .second-section .rewards-recognition img {
    width: 420px;
    height: 410px;
  }
}

@media (max-width: 768px) {
  .second-section .rewards-recognition img {
    width: 300px;
    height: 290px;
  }
}

@media (max-width: 480px) {
  .second-section .rewards-RECOGNITION img {
    width: 100%;
    height: 320px;
  }
}

.request_demo_button {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding: 0.8rem 1.8rem;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 5px;
  text-align: center;
  color: #fff;
  z-index: 1;
  border: 1px solid transparent;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  overflow: hidden;
}

.request_demo_button:hover,
.request_demo_button:focus {
  background: #6c49c9;
  border: 1px solid #6c49c9;
  outline: none;
}



/* =========================
  ENALYTIX PRIVACY POLICY
========================= */
.cancellation-policy-header {
  background-image: url(../images/cancellation-policy-header.jpg);
}

.inside-header2 {
  height: 454px;
  margin-bottom: 60px;
}

.inside-header2 .container {
  height: 100%;
}

.inside-header2 h2 {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  font-size: 40px;
  font-weight: 900;
  height: 48px;
}

.eula-header {
  background-image: url(../images/eula-header.jpg);
}

.privacy-policy-header {
  background-image: url(../images/privacy-policy-header.jpg);
}

.subscribe-now-header {
  background-image: url(../images/subscribe-now-header.jpg);
}

/* =========================
  INDUSTRIES SECTION
========================= */
.industries-section {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 45px 45px 0px 45px;
  background: linear-gradient(0deg, #FFFFFF 0%, #C3BEFF 50%, #FFFFFF 100%);
  align-items: flex-end;
}

.ind-hero-content {
  width: 100%;
  margin: 75px auto 0;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.ind-hero-image {
  width: 100%;
  max-width: 389px;
  height: auto;
  border-radius: 16px;
  display: block;
}

.ind-hero-text h1 {
  font-size: 30px;
  margin-bottom: 2rem;
  font-weight: 700;
}

.ind-hero-text p {
  font-size: 14px;
  line-height: 26px;
  text-align: justify;
}

/* TABS */
/* Section */
.ind-tabs-section {
  width: 100%;
  padding: 45px 45px 0px 45px;
}

/* Tabs container */
.ind-tabs {
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #bbb;
  /* thin horizontal line */
}

/* Tab common */
.ind-tab {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: #222;
  border: 1px solid #222;
  /* thin border */
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  position: relative;
}

/* NO GAP between tabs */
.ind-tab+.ind-tab {
  margin-left: 0;
  border-left: none;
  /* merged look */
}

/* Active tab */
.ind-tab.active {
  background: #7357d4;
  /* exact purple */
  color: #fff;
  border-color: #7357d4;
  z-index: 2;
}

.ind-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  padding: 20px 45px 0px 45px;
}

.ind-tab-content {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ind-tab-content.active {
  display: grid;
}

.ind-feature-card img {
  width: 100%;
  border-radius: 12px;
  flex: 33.3%;

}

.ind-feature-card h3 {
  font-size: 15px;
  margin: 12px 0 8px;
  font-weight: 500;
}

.ind-feature-card p {
  font-size: 13px;
  color: #323232;
  line-height: 22px;
  text-wrap: pretty;
  hyphens: auto;
  word-break: normal;
}

/* FOOTER */
.ind-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.card-body {
  padding: 0rem;
}

@media (max-width: 1024px) {

  /* ------ HERO SECTION ------ */
  .industries-section {
    height: auto;
    padding: 60px 30px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .ind-tab-content {
    grid-template-columns: repeat(2, 1fr);
    /* tablet */
  }
}

@media (max-width: 768px) {
  .ind-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .ind-tab {
    font-size: 15px;
    padding: 10px 18px;
  }
}
/* 🔧 MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

  .ind-tabs-section {
    padding: 20px 15px;
  }

  .ind-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid #bbb;
  }

  .ind-tab {
    flex-shrink: 0;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px 6px 0 0;
  }

  /* mobile me merged border toot jata hai – fix */
  .ind-tab + .ind-tab {
    border-left: none;
  }
}

@media (max-width: 576px) {
  .ind-hero-content {
    margin: 0px auto 0;
  }

  .ind-tab-content {
    grid-template-columns: 1fr;
    /* mobile */
  }

  .industries-section {
    padding: 20px 15px;
  }
  .ind-features {
    padding: 20px 15px;
  }
}

.ind-event-section {
  padding: 40px 45px 15px;
}

.ind-eventinfo-header h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* ROW */
.ind-eventinfo-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE */
.ind-media {
  flex: 1;
}

.ind-media img {
  width: 100%;
  height: 245px;
  border-radius: 24px;
  display: block;
}

/* RIGHT FEATURES */
.ind-eventinfo-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FEATURE BOX */
.ind-eventinfo-box {
  background: #EADBFF;
  padding: 12px 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #000;
}

/* TABLET */
@media (max-width: 991px) {
  .ind-event-section {
    padding: 60px 30px 10px;
  }

  .ind-eventinfo-row {
    gap: 40px;
  }

  .ind-eventinfo-header h2 {
    font-size: 26px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .ind-event-section {
    padding: 40px 20px 10px;
  }

  .ind-eventinfo-row {
    flex-direction: column;
  }

  .ind-eventinfo-box {
    font-size: 16px;
    padding: 16px 18px;
  }

  .ind-eventinfo-header h2 {
    text-align: center;
  }

  .ind-media img {
    height: auto;
  }
}