* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Calibri', sans-serif;
}

:root {
  --primary-color: #fff;
  --secondary-color: #eee;
  --tertiary-color: #f7941d;
  --tertiary-color-hover: #e6831c;
}

body {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ===== TOP HEADER ===== */
.top-header {
  background: var(--secondary-color);
  color: #000;
  font-size: 16px;
}

.top-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  height: 40px;
}

.top-text {
  font-weight: 500;
  white-space: nowrap;
}

.top-contact span {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--primary-color);
  position: relative;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  position: relative;
}

.logo img {
  height: 45px;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 1001;
}

/* NAV MENU */
.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu>.nav-list {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-menu>.nav-list>.nav-item>a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  line-height: 1;
}

.nav-menu>.nav-list>.nav-item:not(.has-dropdown)>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 0%;
  height: 2px;
  background: var(--tertiary-color);
  transition: width 0.22s ease;
}

.nav-menu>.nav-list>.nav-item:not(.has-dropdown)>a:hover::after {
  width: calc(100% - 4px);
}

/* DROPDOWN / SUBMENU STYLES */
.nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  align-items: center;
}

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

.nav-list .nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.caret,
.caret-sub {
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 0;
  height: 0;
  transition: transform 220ms ease;
}

.dropdown,
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-color);
  min-width: 220px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  list-style: none;
  display: none;
  z-index: 20;
}

.has-submenu>.submenu {
  margin-top: 5px;
}

.dropdown li,
.submenu li {
  white-space: nowrap;
}

.dropdown a,
.submenu a {
  display: block;
  padding: 10px 14px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
}

.dropdown a:hover,
.submenu a:hover {
  background: var(--tertiary-color);
  width: 100%;
}

/* show on hover (desktop) */
.nav-item.has-dropdown:hover>.dropdown {
  display: block;
}

.has-submenu:hover>.submenu {
  display: block;
  left: 100%;
  top: 0;
}

/* BUTTON */
.nav-btn {
  background: var(--tertiary-color);
  height: 42px;
  padding: 0 18px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.nav-btn:hover {
  background: var(--tertiary-color-hover);
}

/* MOBILE ICON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.menu-toggle i {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active i {
  transform: rotate(180deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container {
    padding: 0 10px;
  }
}

@media (max-width: 992px) {

  /* NAVBAR RIGHT SLIDE FULL WIDTH */
  .nav-right {
    position: fixed;
    top: 75px;
    right: 0;
    left: auto;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-right.show {
    transform: translateX(0);
  }

  /* MENU ITEMS */
  .nav-menu {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-menu>.nav-list {
    width: 100%;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-menu>.nav-list>.nav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-menu>.nav-list>.nav-item>a {
    width: 100%;
    height: auto;
    padding: 16px 20px;
    justify-content: space-between;
    display: flex;
    align-items: center;
  }

  .nav-btn {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  /* DROPDOWN / SUBMENU MOBILE */
  .dropdown,
  .submenu {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.35s ease, opacity 0.3s ease 0.05s, visibility 0.3s ease 0.05s;
    transition: max-height 0.35s ease, opacity 0.3s ease 0.05s, visibility 0.3s ease 0.05s;
    background: rgba(0, 0, 0, 0.03);
    width: 100% !important;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-item.open>.dropdown {
    max-height: 800px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .has-submenu.open>.submenu {
    max-height: 1000px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    position: relative !important;
    pointer-events: auto !important;
  }

  .submenu a {
    padding-left: 60px;
    position: relative;
    z-index: 1;
    pointer-events: auto !important;
  }

  /* CARET ROTATE */
  .nav-item.open>a .caret {
    transform: rotate(180deg);
  }

  .has-submenu.open>a .caret-sub {
    transform: rotate(180deg);
  }

  /* Force hide desktop hover behavior on mobile */
  .has-submenu:hover>.submenu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* Ensure submenu shows when open class is present - override all desktop rules */
  .dropdown .has-submenu > .submenu,
  .nav-right .dropdown .has-submenu > .submenu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
  }

  .dropdown .has-submenu.open > .submenu,
  .nav-right .dropdown .has-submenu.open > .submenu,
  .nav-item.open .dropdown .has-submenu.open > .submenu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 1000px !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }

    .nav-menu>.nav-list>.nav-item>a::after {
    display: none !important;
  }

    .nav-menu>.nav-list>.nav-item>a:active {
    background: rgba(0, 0, 0, 0.04);
  }
  
}

@media (max-width: 768px) {
  .top-header-flex {
    display: none;
  }

  .nav-flex {
    height: 60px;
  }

  .nav-right {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .logo img {
    height: 35px;
  }

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

  .nav-btn {
    height: 40px;
    padding: 0 15px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .nav-flex {
    height: 55px;
  }

  .nav-right {
    top: 55px;
    height: calc(100vh - 55px);
  }

  .logo img {
    height: 30px;
  }

  .nav-menu a {
    padding: 12px;
    font-size: 15px;
  }

  .nav-btn {
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }
}


/* MAIN HERO */
.landing {
  position: relative;
  /* width: 100%; */
  height: 640px;
  overflow: visible;
  /* margin: 0 10px 10px 10px; */
  /* background-color: #f8f9fa; */
}

.landing-bg-container {
  /* created a container to add side padding (aaju-baaju) */
  position: relative;
  /* margin: 0 30px; */
  overflow: hidden;
  z-index: 1;
  /* Ensure the background fills the hero area even when parent height becomes auto */
  min-height: 640px;
}

/* BACKGROUND IMAGE */
.landing-video {
  position: absolute;
  inset: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  min-height: 100%;
  background: #000;
  /* fallback color while video loads */
}


/* LEFT GRADIENT OVER IMAGE */
/* left gradient removed per request (text will overlay video)
   if you want a subtle tint later, re-add here */

/* HERO TEXT */
.landing-text {
  position: absolute;
  z-index: 2000;
  /* ensure text sits well above video */
  width: 520px;
  padding: 150px 0 0 120px;
  color: var(--primary-color);
  top: 0;
  left: 30px;
}

/* Text slides container and mask-like reveal */
.text-slides {
  position: relative;
  overflow: visible;
  width: 100%;
  line-height: 1;
}

.text-slide {
  /* position absolutely so every slide uses the same fixed coordinates inside .landing-text */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.12s linear;
  pointer-events: none;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  width: 420px;
  max-width: 100%;
}

.text-slide h1 {
  margin-bottom: 12px;
}

.text-slide.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: 2001;
  text-align: left;
}

.landing-text h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.landing-text p {
  font-size: 16px;
  line-height: 1.7;
}

/* BOTTOM OVERLAP */
.landing-bottom {
  position: absolute;
  bottom: -90px;
  left: 120px;
  right: 120px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  height: 170px;
  z-index: 5;
}

/* YELLOW BOX */
.welcome-box {
  width: 300px;
  padding: 22px;
  margin-top: -20px;

  /* TRANSPARENCY */
  background: rgba(247, 148, 29, 0.85);
  /* orange but see-through */

  /* optional polish */
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  color: #000;
}

.welcome-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.welcome-box p {
  font-size: 15px;
  line-height: 1.4;
  text-align: justify;
}

/* FEATURES */
.features {
  flex: 1;
  display: flex;
  gap: 30px;
  padding: 0;
  background: transparent;
  margin-top: 20px;
}

.feature {
  flex: 1;
  padding: 12px;
  background: var(--primary-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.feature img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;
}

.feature:last-child {
  border-right: none;
}

.feature h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature p {
  font-size: 15px;
  line-height: 1.4;
  /* text-align: justify; */
}

/* RESPONSIVE FOR LANDING */
@media (max-width: 1200px) {

  /* updated responsive margin for image container */
  .landing-bg-container {
    width: auto;
  }

  .landing-text {
    /* padding: 120px 0 0 80px; */
    /* max-width: 450px; */
    margin: auto;
  }

  .landing-text h1 {
    font-size: 36px;
  }

  .landing-bottom {
    left: 80px;
    right: 80px;
  }

  .welcome-box {
    width: 250px;
  }
}

@media (max-width: 1024px) {
  .landing-text {
    padding: 120px 0 0 60px;
    max-width: 400px;
  }

  .landing-bg-container {
    margin: 0 60px;
  }

  .landing-text h1 {
    font-size: 32px;
  }

  .landing-bottom {
    left: 60px;
    right: 60px;
  }

  .welcome-box {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .landing {
    height: auto;
    padding-bottom: 20px;
    /* padding-top: 20px; */
  }

  .landing-text {
    padding: 80px 20px;
    max-width: 98%;
    text-align: center;
    /* Center text on mobile */
    left: 0;
    right: 0;
    margin: 0 auto;
    min-height: 680px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .landing-bg-container {
    /* margin: 0 20px; */
    /* reduce min-height for smaller screens so image remains visible but not overly tall */
    min-height: 680px;
  }

  .landing-text h1 {
    font-size: 28px;
  }

  .text-slide h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .text-slide p {
    font-size: 14px;
    line-height: 1.6;
  }

  .landing-bg-container {
    margin: 0;
    min-height: 100vh;
  }

  .landing-bottom {
    position: static;
    flex-direction: column;
    height: auto;
    margin-top: 40px;
    padding: 0 20px;
  }

  .welcome-box {
    width: 100%;
  }

  .features {
    flex-direction: column;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .feature img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .landing {
    padding-bottom: 20px;
  }

  .landing-text {
    padding: 30px 15px;
    min-height: 550px;
  }

  .text-slide {
    padding: 0 5px;
  }

  .text-slide h1 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .text-slide p {
    font-size: 14px;
    line-height: 1.2;
  }

  .landing-bottom {
    padding: 0 15px;
    margin-top: 30px;
  }

  .welcome-box {
    padding: 18px;
  }

  .welcome-box h4 {
    font-size: 18px;
  }

  .welcome-box p {
    font-size: 16px;
    line-height: 1.2;
  }

  .feature {
    padding: 18px;
  }

  .feature h5 {
    font-size: 18px;
  }

  .feature p {
    font-size: 16px;
    line-height: 1.4;
  }
}

.about-section {
  padding: 120px 0;
  background: var(--primary-color);
}

@media(max-width:992px) {
  .about-section {
    padding: 0;
    padding-bottom: 40px;
  }
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* CONTENT */
.about-content {
  flex: 1;
}

.about-tag {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--tertiary-color);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.about-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--tertiary-color);
  transform: translateY(-50%);
}

.about-content h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 17px;
  line-height: 1.4;
  color: #444;
  margin-bottom: 10px;
  text-align: justify;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px;
  background: var(--tertiary-color);
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.about-btn:hover {
  background: var(--tertiary-color-hover);
}

/* RESPONSIVE */
@media(max-width:992px) {
  .about-container {
    gap: 40px;
  }

  .about-content h2 {
    font-size: 28px;
  }
}

@media(max-width:768px) {
  .about-container {
    flex-direction: column;
    text-align: left;
  }

  .about-image img {
    max-height: 320px;
    object-fit: cover;
  }
}


.why-section {
  background: #eee;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.why-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  z-index: 1;
  pointer-events: none;
  margin-top: -30px;
}

.why-pattern img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7;
}

.why-head {
  max-width: 1100px;
  margin: auto;
  margin-bottom: 40px;
}

.why-tag {
  color: #f7941d;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
  font-size: 19px;
}

.why-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #f7941d;
}

.why-head h2 {
  font-size: 34px;
  margin: 15px 0;
  line-height: 1.2;
}

.why-head p {
  font-size: 17px;
  line-height: 1.4;
  max-width: 900px;
  text-align: justify;
}

/* SLIDER */
.why-slider {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.why-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* make individual cards act as slides (4 per view desktop) */
.why-card {
  background: #fff;
  padding: 22px;
  border-radius: 6px;
  position: relative;
  box-sizing: border-box;
  flex: 0 0 calc(25% - 15px);
}

.why-card .num {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 15px;
}


.c1 .num {
  background: #394f82;
}

.c2 .num {
  background: #299dbb;
}

.c3 .num {
  background: #c25c59;
}

.c4 .num {
  background: #637668;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  line-height: 1.4;
  /* text-align: justify; */
}

.why-card a {
  color: #f7941d;
  font-size: 15px;
  text-decoration: none;
}


.why-progress {
  height: 6px;
  max-width: 320px;
  margin: 25px auto 0;
  background: #d9d9d9;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

/* YELLOW MINI BAR (DOT NAHI) */
.why-progress-handle {
  position: absolute;
  top: 0;
  left: 0%;
  height: 100%;
  width: 18%;
  /* 👈 fixed small bar */
  background: linear-gradient(90deg, #f7941d, #fcb034);
  border-radius: 10px;
  transition: left 0.4s ease;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .why-card {
    flex: 0 0 calc(100% - 0px);
  }
}

@media(max-width:768px) {
  .why-pattern {
    width: 150px;
    height: 150px;
  }
}

.product-slider-section {
  padding: 80px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.product-slider-section .product-head {
  max-width: 1100px;
  margin: auto;
  margin-bottom: 40px;
}

.product-slider-section .small-title {
  color: #f7941d;
  font-weight: 600;
  font-size: 19px;
}

.small-title {
  position: relative;
  padding-left: 40px;

}

.small-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #f7941d;
  transform: translateY(-50%);
}

.product-slider-section .product-head h2 {
  font-size: 36px;
    line-height: 1.2;
  margin-bottom: 10px;
}

.product-slider-section .product-head p {
  font-size: 17px;
  line-height: 1.4;
  max-width: 600px;
}


.product-slider-section .product-slider {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-slider-section .product-track {
  display: flex;
  gap: 25px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* visual parity with why-card but scoped to product section */
.product-slider-section .product-card {
  flex: 0 0 calc(25% - 18.75px);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;        /* 🔥 anchor fix */
  flex-shrink: 0;
}

.product-slider-section .product-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);  /* premium hover */
}

.product-slider-section .product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-progress-wrap {
  max-width: 320px;
  margin: 30px auto 0;
  padding: 0 20px;
  cursor: pointer;
}

.product-progress {
  height: 6px;
  /* WHY jaisa slim */
  background: #e6e6e6;
  /* light grey bar */
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.product-progress-handle {
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  /* bar ke andar hi rahe */
  width: 60px;
  /* WHY jaisa segment */
  background: #f7941d;
  border-radius: 4px;
  transform: translateY(-50%);
  transition: left .4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  /* clean UX */
}




/* RESPONSIVE */
@media(max-width:768px) {
  .product-slider-section .product-card {
      flex: 0 0 100%;
  }


  .product-slider-section {
    padding: 60px 15px;
  }

  .product-slider-section .product-head {
    padding: 0 15px;
    margin-bottom: 35px;
  }
  .product-slider-section .product-head h2 {
    font-size: 30px;
  }
}

@media(max-width:600px) {

  /* .product-slider-section .product-track{ 
    gap:15px; 
  } */

  .product-slider-section .product-head {
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .product-slider-section .product-head h2 {
    font-size: 24px;
  }

  .product-slider-section .product-head p {
        font-size: 17px;
    line-height: 1.4;
    max-width: 900px;
    text-align: left;
  }
}


.enquiry-strip {
  background: #ededed;
  padding: 60px 0;
  /* height: 120px; */
}

.enquiry-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.enquiry-text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  max-width: 650px;
}

.enquiry-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.enquiry-btn {
  background: #f7941d;
  color: #000;
  padding: 10px 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;

}

.enquiry-btn:hover {
  background: #e6831c;
}

.or-box {
  width: 40px;
  height: 40px;
  border: 2px solid #f7941d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.call-box span {
  display: block;
  font-size: 15px;
}

.call-box a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .enquiry-flex {
    flex-direction: column;
    text-align: center;
  }

  .enquiry-action {
    flex-direction: column;
  }
}

.industries {
  padding: 80px 0;
  overflow: hidden;
}

.industries-head {
  max-width: 1100px;
  /* margin-bottom: 40px; */
  margin: auto;
}

.industries-head .small-title {
  color: #f7941d;
  font-weight: 600;
  font-size: 19px;
}

.industries-head h2{
  font-size: 34px;
  padding-bottom: 10px;
  line-height: 1.2;
}

.industries-head p{
    font-size: 17px;
    line-height: 1.4;
    max-width: 900px;
    text-align: justify;
    margin-bottom: 40px ;
}

.industries-slider {
  overflow: hidden;
}

.industries-track {
  display: flex;
  gap: 25px;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* CARD */
.industry-card {
  position: relative;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  height: 340px;
}

/* DESKTOP 4 ITEMS */
.industry-card {
  width: calc((100% - 75px) / 4);
}

.industry-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: grayscale(100%);
  transform: none;
}

/* HOVER */
.industry-card:hover img {
  filter: grayscale(0%);
  /* transform:scale(1.05); */
}

.industry-overlay {
  position: absolute;
  bottom: 0;
  transform: translateY(-20px);
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: #444;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  opacity: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overlay-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}

.expand-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.4s ease;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform-origin: center;
}

.expand-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-style: normal;
  width: 100%;
  height: 100%;
}

.expand-btn.active {
  transform: rotate(180deg);
  background: #f7941d;
  color: #000;
}

.industry-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
  padding: 30px;
  overflow-y: auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
   padding-top: 24px;
  gap: 15px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition:
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s ease;
}



.industry-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #f7941d;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.4s ease;
}

.industry-content p {
  font-size: 14px;
  text-align: justify;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(15px);
  transition: 0.5s ease 0.1s;
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-content.active h4,
.industry-content.active p {
  opacity: 1;
  transform: translateY(0);
}


.industry-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== INDUSTRIES PROGRESS BAR ===== */

.industry-progress-wrap {
  max-width: 320px;
  margin: 30px auto 0;
  padding: 0 20px;
  cursor: pointer;
}

.industry-progress {
  height: 6px;
  background: #e6e6e6;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.industry-progress-handle {
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  width: 60px;
  background: #f7941d;
  border-radius: 4px;
  transform: translateY(-50%);
  transition: left .4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}


/* MOBILE */
@media(max-width:768px) {
  .industry-card {
    width: 100%;
  }

  .industry-content {
    padding: 22px;
  }
}


.reach-what {
  background: #ededed;
  padding: 70px 0;
}

.reach-flex {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.small-title {
  color: #f7941d;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 19px;
}

.reach-left {
  flex: 1.1;
}

.world-map {
  width: 100%;
  max-width: 520px;
}

.reach-right {
  flex: 1;
}

.reach-right h2 {
  font-size: 34px;
  margin: 10px 0 25px;
}

/* ACCORDION */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.acc-item {
  background: #444;
  color: #fff;
}

.acc-head {
  padding: 14px 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #444;
  transition: background 0.3s ease;
}

.acc-head .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.acc-item.active .acc-head {
  background: #f7941d;
  /* head color change */
}

.acc-item.active .acc-head .arrow {
  transform: rotate(180deg);
  /* down → up */
}

.acc-body {
  background: #f5f5f5;
  color: #444;
  padding: 14px 16px;
  display: none;
  font-size: 16px;
  line-height: 1.6;
}

.acc-item.active .acc-body {
  display: block;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .reach-flex {
    flex-direction: column;
  }

  .reach-right h2 {
    font-size: 26px;
  }
}


/* Reviews Section */
.reviews-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 40px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-description {
  font-size: 18px;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
}

.reviews-progress-wrap {
  max-width: 320px;
  margin: 30px auto 0;
  padding: 0 20px;
  cursor: pointer;
}

.reviews-progress {
  height: 6px;
  background: #e6e6e6;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.reviews-progress-handle {
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  width: 60px;
  background: #f7941d;
  border-radius: 4px;
  transform: translateY(-50%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc(50% - 15px);
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Legacy grid fallback - hidden */
.reviews-grid {
  display: none;
}

.review-card {
  background-color: #fff;
  border: 1px solid #e1e8ed;
  border-radius: 8px;
  padding: 20px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
} */

.star-rating {
  display: flex;
  margin-bottom: 15px;
}

.star-rating svg {
  color: #f39c12;
  margin-right: 2px;
}

.review-text {
  font-size: 17px;
  color: #34495e;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer-info {
  display: flex;
  align-items: center;
}


.reviewer-name {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 18px;
}

.reviewer-role {
  font-size: 15px;
  color: #7f8c8d;
}



/* ===== FOOTER ===== */
.site-footer {
  background: #1e1e1e;
  /* industrial dark */
  color: #cfd3d6;
  padding: 60px 20px 25px;
  /* margin-top: 80px; */
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* BRAND */
.footer-brand {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.7;
  color: #a9b0b5;
  margin-bottom: 22px;
}

/* SOCIAL */
.social-links {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd3d6;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #f7941d;
  border-color: #f7941d;
  color: #000;
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* HEADINGS */
.footer-heading {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background: #f7941d;
}

/* LIST */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-link {
  color: #a9b0b5;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-link:hover {
  color: #f7941d;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact {
  font-size: 15px;
  color: #a9b0b5;
}

.footer-contact a {
  color: #a9b0b5;
  text-decoration: none;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid #2f2f2f;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 15px;
  color: #9aa0a6;
}

.footer-langs {
  display: flex;
  gap: 18px;
}

.footer-langs .footer-link {
  font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .footer-grid {
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-langs {
    justify-content: center;
  }

  .footer-brand {
    font-size: 20px;
  }
}


/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  animation: scaleIn .3s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(.8);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

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

/* Close */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Form */
.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-box input,
.popup-box textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.popup-box textarea {
  resize: none;
  height: 90px;
}

.popup-box button {
  background: #f7941d;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box button:hover {
  background: var(--tertiary-color-hover);
}


#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  /* top layer */
  background-color: #f7941d;
  color: #fff;
  border: none;
  border-radius: 50%;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  /* initially hidden */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

#scrollTopBtn:hover {
  background-color: #e67e22;
}