@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --font-family: "Roboto Slab", sans-serif;
  --second-family: "Outfit", sans-serif;
  --heading-font: "Graham";
  --display-font:"Playfair Display", serif;
  --dark: #111;
  --brand: #9c1006;
  --dark: #111;
  --primary: #7a0116;
  --strock-dark-bg: rgba(255, 255, 255, 0.2);
  --strock-whtie-bg: rgba(17, 17, 17, 0.2);
  --body-white-bg: #555;
  --white: #fff;
  --body-dark-bg: rgba(255, 255, 255, 0.8);
  --light-bg: #f6f6f6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--second-family);
}

body {
  background-color: var(--white);
  color: var(--dark);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}

.container {
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.btn-black {
  background-color: var(--dark);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--brand);
}

.btn {
  font-weight: 600;
  height: 50px;
  overflow: hidden;
  position: relative;
  gap: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  z-index: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 5px;
}

.btn__left-arrow img,
.btn__right-arrow img {
  width: 12px;
}

.btn-black:hover {
  background-color: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background-color: var(--dark);
  color: var(--white);
}

.btn-black:hover .btn__left-arrow {
  background-color: var(--dark);
}

.btn-white:hover .btn__left-arrow {
  background-color: var(--white);
}

.btn:hover .btn__left-arrow {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.btn:hover .btn__text {
  -webkit-transform: translateX(37px);
  transform: translateX(37px);
}

.btn:hover .btn__right-arrow {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.btn .btn__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  padding: 0px 69px 0 24px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.btn .btn__left-arrow,
.btn .btn__right-arrow {
  height: 30px;
  position: absolute;
  text-align: center;
  width: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 5px;
}

.btn-black .btn__left-arrow,
.btn-black .btn__right-arrow {
  background-color: var(--white);
}

.btn-white .btn__left-arrow,
.btn-white .btn__right-arrow {
  background-color: var(--brand);
}

.btn .btn__left-arrow {
  left: 10px;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.btn .btn__right-arrow {
  left: auto;
  right: 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.heading-tag-box {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  border: 1px solid var(--strock-whtie-bg);
  justify-content: center;
  padding: 0 14px;
  max-width: max-content;
}

.heading-tag-box__dot {
  width: 6px;
  height: 6px;
  background-color: var(--brand);
}

.heading-tag-box__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--dark);
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header__inner {
  background-color: transparent;
  padding: 20px 0;
  transition: background-color 0.35s ease, padding 0.35s ease;
}
.header__inner.active {
  background-color: rgb(63, 3, 3);
}
.header__inner.active .header__wrapper {
  align-items: center;
  justify-content: space-between;
}
.header__inner.active .header__logo {
  width: 55px;
  scale: 2;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.header__wrapper {
  display: flex;
  gap: 73px;
  align-items: center;
  justify-content: space-between;
  transition: gap 0.35s ease;
}

.header__logo {
  transition: width 0.35s ease, scale 0.35s ease;
  background-color: #fff;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.header__logo a {
  display: block;
}
.header__logo img {
  width: 150px;
  transition: width 0.3s ease;
  will-change: width;
}

.header__menu ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header__menu ul li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--white);
  transition: color 0.25s ease;
  position: relative;
  padding-bottom: 7px;
}
.header__menu ul li a.active {
  text-decoration: underline var(--white);
  text-underline-offset: 3px;
  color: var(--brand);
  text-decoration-thickness: 2px;
}
.header__menu ul li a::before {
  position: absolute;
  content: "";
  background-color: var(--white);
  left: 0;
  bottom: 0;
  width: 0;
  transition: width 0.3s ease;
  height: 2px;
}
.header__menu ul li a:hover {
  color: var(--brand);
}
.header__menu ul li a:hover::before {
  width: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  width: calc(100% - 293px);
}

.header__hamburger-btn {
  display: none;
}

@media (max-width: 1399px) {
  .header__wrapper {
    gap: 45px;
  }
  .header__logo img {
    width: 180px;
  }
  .header__right {
    width: calc(100% - 225px);
  }
}
@media (max-width: 1299px) {
  .header__wrapper {
    gap: 50px;
  }
  .header__logo img {
    width: 140px;
  }
  .header__right {
    width: calc(100% - 170px);
  }
}
@media (max-width: 1160px) {
  .header__menu {
    display: none;
  }
  .header__wrapper {
    justify-content: space-between;
  }
  .header__right {
    width: auto;
  }
  .header__inner.active .header__wrapper {
    justify-content: space-between;
  }
  .header__left {
    padding-left: 20px;
  }
  .header__hamburger-btn {
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 10px;
    border: 1px solid var(--light-bg);
    border-radius: 5px;
    padding: 15px;
  }
  .header__hamburger-text {
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--white);
    transition: color 0.25s ease;
    position: relative;
  }
  .header__right .btn {
    display: none;
  }
}
@media (max-width: 991px) {
  .header__logo img {
    width: 97px;
  }
}
.hero__inner {
  position: relative;
  padding: 60px 0;
  height: 100vh;
}

.hero__bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}

.hero__content {
  display: flex;
  gap: 48px;
  align-items: center;
}

.hero__left {
  width: 70.14%;
  position: relative;
  top: 22px;
}

.hero__right {
  width: 40%;
  margin-left: auto;
  position: relative;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.hero__video-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--strock-dark-bg);
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.hero__video-icon img {
  width: 17px;
}
.hero__video-icon::before, .hero__video-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--strock-dark-bg);
  opacity: 0;
  animation: pulse-ring 2.5s linear infinite;
}
.hero__video-icon::after {
  animation-delay: 1.25s;
}

.hero__video {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 114px;
  margin-bottom: 70px;
}
.hero__video span {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--white);
}
.hero__video span em {
  color: var(--brand);
  font-style: normal;
  font-weight: 700;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.hero__heading {
  margin-bottom: 40px;
}
.hero__heading h2 {
  font-weight: 900;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--white);
  font-family: var(--second-family);
  margin-bottom: 20px;
  overflow: unset !important;
  margin-left: 60px;
}
.hero__heading h2 em {
  color: var(--brand);
  font-style: normal;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
}
.hero__heading h2:last-child {
  margin-left: 110px;
  margin-bottom: 0;
}

.hero__count-items {
  display: flex;
}

.hero__count-item {
  position: relative;
  padding-right: 60.5px;
}
.hero__count-item:last-child {
  padding-right: 0;
  padding-left: 60.5px;
}
.hero__count-item:last-child::before {
  display: none;
}
.hero__count-item:nth-child(even) {
  padding-left: 60.5px;
}
.hero__count-item::before {
  content: "";
  width: 1px;
  height: 80px;
  background: var(--strock-dark-bg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.hero__count-item h4 {
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--display-font);
}
.hero__count-item span {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--white);
}

.hero__right-video-content {
  margin-top: 30px;
  margin-left: -35px;
}

.hero__autplay-video-wrap {
  height: 100%;
  position: relative;
  right: 45px;
}

.hero__autoplay-video {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.hero__autoplay-video video,
.hero__autoplay-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.hero__video-tag-text {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  position: absolute;
  width: 100%;
  bottom: 50px;
  letter-spacing: 6%;
  left: 0;
  padding-left: 20px;
  position: relative;
  z-index: 2;
}

.hero__right-video-content p {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: var(--body-dark-bg);
}

.hero-tag-line-wrap {
  border: 1px solid var(--strock-dark-bg);
  border-radius: 4px;
  padding: 0 20px;
  max-width: max-content;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
}
.hero-tag-line-wrap span {
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero {
  overflow: hidden;
}

.hero__bg {
  overflow: hidden;
}

.hero__autoplay-video {
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hero__count-item h4 {
    font-size: 32px;
  }
  .hero__right {
    height: auto;
  }
}
@media (max-width: 1280px) {
  .hero__count-item {
    padding-right: 30.5px;
  }
  .hero__count-item:last-child {
    padding-left: 30.5px;
  }
  .hero__count-item:nth-child(even) {
    padding-left: 30.5px;
  }
  .hero__count-item::before {
    height: 80px;
  }
  .hero__video-tag-text {
    font-size: 18px;
  }
}
@media (max-width: 1099px) {
  .hero__heading h2 {
    font-size: 60px;
  }
  .hero__left {
    width: 65.14%;
  }
  .hero__right-video-content p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .hero__wrapper {
    position: static;
    transform: translateY(0);
  }
  .hero__right {
    width: 100%;
    top: 0;
    transform: translateY(0);
    margin: 0;
    padding: 0 20px;
    margin-top: 40px;
  }
  .hero__left {
    width: 100%;
    top: 0;
    margin-top: 125px;
  }
  .hero__inner {
    height: auto;
  }
  .hero__autplay-video-wrap {
    right: 0;
  }
  .hero__right-video-content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .hero__count-item h4 {
    font-size: 21px;
  }
}
@media (max-width: 575px) {
  .hero__heading h2 {
    font-size: 42px;
  }
  .hero__heading h2:last-child {
    margin-left: 35px;
  }
  .hero__heading h2 {
    margin-left: 0;
  }
  .hero__count-item {
    padding-right: 18.5px;
  }
  .hero__count-item::before {
    content: none;
  }
  .hero__count-item:last-child {
    padding-left: 10px;
  }
  .hero__count-item:nth-child(even) {
    padding-left: 10px;
  }
  .header__left {
    padding-left: 0;
  }
  .header__inner.active .header__left {
    padding-left: 20px;
  }
}
/* ওভারলে স্টাইল */
.hero__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
}

/* মডাল স্টাইল */
.hero__video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  background: #000;
  z-index: 1000;
  display: none;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

/* ভিডিও রেসপন্সিভ কন্টেইনার */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ক্লোজ বাটন স্টাইল */
.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: #ff0000;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__inner {
  padding: 88px 0 80px;
  position: relative;
}
.about__inner .btn:hover .btn__text {
  transform: translateX(45px);
}

.about__shape2 {
  position: absolute;
  top: 0;
  right: 0;
}

.about__container {
  max-width: 1440px;
  margin-right: auto;
  padding: 0 20px;
  width: 100%;
}

.about__title-box {
  margin-bottom: 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about__title-box .heading-tag-box {
  width: 140px;
}

.about__heading {
  width: calc(100% - 177px);
}
.about__heading h2 {
  font-size: 40px;
  transition: color 0.3s ease-out;
  color: var(--dark);
  text-align: justify;
  line-height: 100%;
  font-kerning: none;
  text-rendering: optimizeSpeed;
  font-family: var(--display-font);
}
.about__heading h2 span {
  overflow: unset !important;
}

.about__heading h2 .split-line {
  line-height: inherit;
}

.about__content {
  display: flex;
  gap: 20px;
  margin-left: auto;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--strock-whtie-bg);
}

.about__right {
  background-color: var(--primary);
  padding: 40px;
}

.about__tab-btns {
  display: flex;
  align-items: center;
  max-width: 220px;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}

.about__tab-btn {
  cursor: pointer;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--strock-dark-bg);
  flex: 1 0 50%;
}
.about__tab-btn:last-child p {
  text-align: right;
}
.about__tab-btn p {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--white);
  opacity: 0.4;
}
.about__tab-btn.active {
  border-color: var(--white);
}
.about__tab-btn.active p {
  opacity: 1;
}

.about__item-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--white);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--strock-dark-bg);
}

.about__tab-items {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__tab-item {
  display: block;
}
.about__tab-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--body-dark-bg);
}
.about__tab-item.active {
  display: block;
}

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

.about__quets {
  padding: 20px;
  border: 1px solid var(--strock-dark-bg);
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 88px;
}
.about__quets p {
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: var(--body-dark-bg);
  font-family: var(--second-family);
}

.about__left {
  width: 46.92%;
  height: 595px;
}
.about__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__right {
  width: 48.13%;
}

.about__left-year {
  transform: rotate(270deg);
  position: absolute;
  bottom: 250px;
  right: -337px;
}
.about__left-year h3 {
  font-weight: 900;
  font-size: 240px;
  line-height: 100%;
  letter-spacing: 10px;
  color: var(--strock-whtie-bg);
  opacity: 0.5;
  font-family: var(--font-family);
}

.about__btn-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.about__wrapper {
  position: relative;
}

.about__title-box .heading-tag-box {
  visibility: visible !important;
}

.about__achivemetns {
  display: none;
}

@media (max-width: 1399px) {
  .about__left-year h3 {
    font-size: 150px;
  }
  .about__left-year {
    bottom: 110px;
    left: -50px;
  }
  .about__shape1 {
    width: 200px;
  }
  .about__wrapper {
    position: relative;
  }
  .about__left {
    height: 619px;
  }
}
@media (max-width: 1299px) {
  .about__heading {
    width: calc(100% - 270px);
  }
  .about__left-year {
    left: -20px;
  }
  .about__left-year h3 {
    font-size: 100px;
  }
  .about__shape2 {
    width: 200px;
  }
}
@media (max-width: 1199px) {
  .about__inner {
    padding: 60px 0 60px;
  }
  .about__content {
    padding-bottom: 40px;
  }
  .about__shape1 {
    top: -45px;
  }
  .about__left-year {
    left: -75px;
  }
}
@media (max-width: 1138px) {
  .about__left-year {
    display: none;
  }
}
@media (max-width: 1024px) {
  .about__title-box {
    display: block;
  }
  .about__heading {
    width: 100%;
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column;
  }
  .about__left {
    width: 100%;
    height: 500px;
  }
  .about__right {
    width: 100%;
  }
  .about__title-box {
    margin-bottom: 40px;
  }
  .about__heading h2 {
    font-size: 31px;
  }
  .about__shape1 {
    width: 75px;
    top: -14px;
  }
  .about__shape2 {
    width: 100px;
  }
  .about__right {
    padding: 35px 20px;
  }
}
@media (max-width: 767px) {
  .about__heading h2 {
    text-align: left;
  }
  .about__quets {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .about__left {
    height: 380px;
  }
  .about__btns {
    flex-direction: column;
  }
  .about__btns a {
    margin-right: auto;
  }
}
/* =========================================================
     ABOUT MODAL
     ========================================================= */
.about-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse 1200px 700px at 50% 30%, rgba(156, 16, 6, 0.25), transparent 60%), rgba(43, 10, 10, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-modal-overlay.is-open {
  display: flex;
  opacity: 1;
}

.about-modal {
  position: relative;
  display: flex;
  /* always side by side, no stacking */
  width: clamp(320px, 70vw, 1200px);
  height: min(680px, 88vh);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}

.about-modal-overlay.is-open .about-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* left: image, fixed, never scrolls */
.about-modal__media {
  position: relative;
  width: 42%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--dark);
}

.about-modal__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-modal__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 45%, rgba(17, 17, 17, 0.9) 100%);
}

.about-modal__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: var(--white);
}

.about-modal__eyebrow {
  font-family: var(--second-family);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-modal__title {
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 700;
  margin: 6px 0 0;
  color: var(--white);
}

.about-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--primary);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.2s ease;
}

.about-modal__close:hover {
  transform: rotate(90deg);
  background: rgba(17, 17, 17, 0.6);
}

.about-modal__close:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* right: content, scrolls */
.about-modal__panel {
  width: 58%;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* old Edge/IE */
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-modal__panel::-webkit-scrollbar {
  display: none;
}

/* Chrome/Safari */
.about-modal__item {
  background: var(--primary);
  border: 1px solid var(--white);
  padding: 18px 20px;
  color: var(--white);
  flex-shrink: 0;
}

.about-modal__item-year {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.about-modal__item-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-family: var(--font-family);
}

body.modal-open-lock {
  overflow: hidden;
}

@media (max-width: 1280px) {
  .about-modal {
    width: calc(100% - 50px) !important;
  }
}
/* 991px and below: back to image-on-top / text-scrolls-below,
     image stays fixed at the top while the panel scrolls under it */
@media (max-width: 991px) {
  .about-modal {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .about-modal::-webkit-scrollbar {
    display: none;
  }
  .about-modal__media {
    width: 100% !important;
    height: 346px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .about-modal__panel {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .about-modal-overlay {
    padding: 0;
  }
  .about-modal {
    width: calc(100% - 25px) !important;
  }
  .about-modal {
    height: calc(100% - 25px);
  }
}
/* =====================================================
   DIRECTORS MODAL STYLES
===================================================== */
.directors-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  z-index: -1;
}

.directors-modal.is-open {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.directors-modal__container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 88vh;
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.directors-modal.is-open .directors-modal__container {
  transform: translateY(0);
}

/* Close Button */
.directors-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border: 1px solid var(--strock-whtie-bg);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.directors-modal__close:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Header */
.directors-modal__header {
  text-align: center;
  margin-bottom: 35px;
}

.directors-modal__header .heading-tag-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.directors-modal__title {
  font-family: var(--second-family);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* Grid Layout */
.directors-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}

/* Director Card */
.director-card {
  background: var(--light-bg);
  border: 1px solid var(--strock-whtie-bg);
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.director-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.director-card__img-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 2px solid var(--primary);
  background-color: #e5e5e5;
}

.director-card__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.director-card__name {
  font-family: var(--second-family);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.director-card__designation {
  font-family: var(--font-family);
  font-size: 13px;
  color: var(--body-white-bg);
  margin: 0 0 15px 0;
  font-weight: 400;
}

/* Social Actions */
.director-card__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}

.director-card__social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--strock-whtie-bg);
  transition: all 0.25s ease;
  text-decoration: none;
}

.director-card__social-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.director-card__social-btn.whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: var(--white);
}

/* Responsiveness */
@media (max-width: 768px) {
  .directors-modal__container {
    padding: 30px 18px;
  }
  .directors-modal__title {
    font-size: 22px;
  }
  .directors-modal__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .directors-modal__grid {
    grid-template-columns: 1fr;
  }
}
.product__inner {
  padding: 0 0 0px;
  position: relative;
  overflow: hidden;
}
.product__inner .heading-tag-box {
  width: 195px;
  opacity: 1 !important;
  visibility: visible !important;
}
.product__inner .btn:hover .btn__text {
  transform: translateX(45px);
}
.product__inner .product-card__btns a {
  display: flex;
  max-width: max-content;
}
.product__inner .product-card__btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (min-width: 1921px) {
  .product-container {
    margin-right: auto;
  }
}
.product__shape {
  position: absolute;
  left: 0;
  top: 0;
  rotate: 183deg;
}

.product__title-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1440px;
  margin-left: auto;
}

.product__heading {
  max-width: 1000px;
  margin-bottom: 44px;
}
.product__heading h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 90%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--dark);
  font-family: var(--second-family);
}
.product__heading h2 em {
  color: var(--brand);
  font-style: normal;
}

.product__item {
  height: auto;
  cursor: pointer;
}

.product-card {
  display: flex;
  height: 100%;
}

.product-card__left {
  background-color: var(--primary);
  padding: 50px;
  height: 100%;
  width: 46%;
}
.product-card__left h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(135, 0, 23, 0.1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 52px;
}

.product-card__content {
  margin-bottom: 50px;
}
.product-card__content h4 {
  font-size: 35px;
  line-height: 100%;
  color: var(--white);
  margin-bottom: 33px;
  font-family: var(--display-font);
}
.product-card__content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--body-dark-bg);
}

.product-card__info-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 95px;
}

.product-card__info {
  flex: 1 0 45%;
  max-width: calc(50% - 5px);
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.1);
}
.product-card__info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--body-dark-bg);
  margin-bottom: 10px;
}
.product-card__info span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--white);
}

.product-card__right {
  position: relative;
  width: 50%;
}

.product__card-img {
  height: 100%;
}
.product__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-card__badge {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--white);
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: var(--brand);
  padding: 0 12px;
}

.product-container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  padding: 0 20px;
}

.product__left {
  width: 42.85%;
  height: 100%;
}

.product__right {
  width: 57.14%;
  height: 100%;
}

.product__content {
  overflow: hidden;
}

.product__items {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.product__item {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 1280px) {
  .product__content {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
  .product__shape {
    display: none;
  }
  .product-card__left {
    padding: 25px;
  }
  .product-card__content {
    margin-bottom: 35px;
  }
  .product-card__info-box {
    margin-bottom: 70px;
  }
  .product__heading {
    max-width: 940px;
  }
}
@media (max-width: 1199px) {
  .product__heading h2 {
    font-size: 63px;
  }
  .product__title-box {
    align-items: center;
    margin-bottom: 45px;
  }
  .product__heading {
    margin-bottom: 0;
  }
  .product-card__left h3 {
    margin-bottom: 35px;
  }
  .product-card__content h4 {
    margin-bottom: 30px;
    font-size: 25px;
  }
  .product-card__info-box {
    margin-bottom: 45px;
  }
  .product__inner {
    padding: 0 0 0px;
  }
  .product__heading {
    max-width: 750px;
  }
}
@media (max-width: 991px) {
  .product-card {
    flex-direction: column-reverse;
    scroll-snap-align: start;
    flex: 1 0 100%;
    height: auto;
  }
  .product__title-box {
    flex-direction: column;
    gap: 60px;
  }
  .product__heading {
    max-width: 100%;
    text-align: center;
  }
  .product__inner {
    padding: 0 0 0px;
  }
  .product-card__left {
    padding: 25px 25px 50px;
    width: 100%;
  }
  .product__content {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product__content::-webkit-scrollbar {
    display: none;
  }
  .product__items {
    display: flex;
    gap: 20px;
  }
  .product-card__right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .product__heading h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .product__heading h2 {
    font-size: 35px;
    line-height: 100%;
    letter-spacing: normal;
  }
  .product-card__info {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
/* ============================================================
   MODAL
   ============================================================ */
.pm-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 1200px 700px at 50% 30%, rgba(156, 16, 6, 0.25), transparent 60%), rgba(43, 10, 10, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.pm-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.pm-locked {
  overflow: hidden;
}

.pm-modal {
  width: 70%;
  max-width: 980px;
  max-height: 85vh;
  background: var(--white);
  border-radius: var(--modal-radius);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(30px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.pm-overlay.is-open .pm-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.pm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 18px;
  color: var(--dark);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.pm-close:hover {
  background: var(--brand);
  color: var(--white);
  transform: rotate(90deg);
}

.pm-hero {
  position: relative;
  flex-shrink: 0;
  height: 280px;
  background-size: cover;
  background-position: center;
}

.pm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 6, 0.05) 0%, rgba(10, 6, 6, 0.15) 45%, rgba(10, 6, 6, 0.85) 100%);
}

.pm-hero-text {
  position: absolute;
  left: 40px;
  right: 90px;
  bottom: 26px;
  z-index: 2;
  color: var(--white);
}

.pm-hero-tag {
  display: block;
  font-family: var(--second-family);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.pm-hero-title {
  font-family: var(--display-font);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  margin: 0;
  line-height: 1.15;
}

.pm-body {
  padding: 34px 40px 40px;
  overflow-y: auto;
}

.pm-body::-webkit-scrollbar {
  width: 7px;
}

.pm-body::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.15);
  border-radius: 10px;
}

.pm-desc {
  font-family: var(--second-family);
  font-size: 15.5px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 30px;
}

.pm-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pm-info-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 16px 18px;
}

.pm-info-label {
  font-family: var(--second-family);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--body-white-bg);
  margin-bottom: 6px;
}

.pm-info-value {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .product-card {
    flex-direction: column-reverse;
  }
  .product-card__right {
    min-height: 220px;
  }
  .pm-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .pm-modal {
    width: 92%;
    max-height: 90vh;
  }
  .pm-hero {
    height: 200px;
  }
  .pm-hero-text {
    left: 22px;
    right: 60px;
    bottom: 18px;
  }
  .pm-body {
    padding: 24px 22px 30px;
  }
  .pm-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card__left {
    padding: 26px 24px;
  }
  .pm-close {
    width: 34px;
    height: 34px;
    top: 14px;
    right: 14px;
  }
}
@media (max-width: 420px) {
  .pm-info-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════════════════════
   product-anim.scss
   Append this block to your existing stylesheet.
   These rules only add new selectors / properties —
   nothing here overrides your current layout.
═══════════════════════════════════════════════════════════ */
/* ── Shape ── */
.product__shape {
  will-change: transform;
}

/* ── Heading clip-path reveal ── */
.product__heading h2 {
  will-change: clip-path, transform;
}

/* ── Image needs overflow:hidden so GSAP scale stays inside ── */
.product__card-img {
  overflow: hidden;
}
.product__card-img img {
  display: block;
  will-change: transform;
}

/* ── Explicit overflow on card right (shimmer must stay inside) ── */
.product-card__right {
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   Water / Glass shimmer overlay
   Injected by JS into each .product-card__right.
   Uses two CSS vars (--gx / --gy) that JS updates live
   on mousemove — no GSAP gradient interpolation needed.
══════════════════════════════════════════════════════════ */
.pc-shimmer {
  --gx: 50%;
  --gy: 50%;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  /* layered radial gradients = depth / water feel */
  background: radial-gradient(ellipse 55% 40% at var(--gx) var(--gy), rgba(255, 255, 255, 0.3) 0%, rgba(190, 215, 255, 0.13) 30%, rgba(100, 160, 255, 0.05) 55%, transparent 70%), radial-gradient(ellipse 30% 20% at var(--gx) var(--gy), rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  mix-blend-mode: overlay;
}

/* ═══════════════════════════════════════════════════════════
   product-anim.scss
   Append this block to your existing stylesheet.
   These rules only add new selectors / properties —
   nothing here overrides your current layout.
═══════════════════════════════════════════════════════════ */
/* ── Shape ── */
.product__shape {
  will-change: transform;
}

/* ── Heading clip-path reveal ── */
.product__heading h2 {
  will-change: clip-path, transform;
}

/* ── Image needs overflow:hidden so GSAP scale stays inside ── */
.product__card-img {
  overflow: hidden;
}
.product__card-img img {
  display: block;
  will-change: transform;
}

/* ── Explicit overflow on card right (shimmer must stay inside) ── */
.product-card__right {
  overflow: hidden;
}

/* ══════════════════════════════════════════════════════════
   Water / Glass shimmer overlay
   Injected by JS into each .product-card__right.
   Uses two CSS vars (--gx / --gy) that JS updates live
   on mousemove — no GSAP gradient interpolation needed.
══════════════════════════════════════════════════════════ */
.pc-shimmer {
  --gx: 50%;
  --gy: 50%;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  /* layered radial gradients = depth / water feel */
  background: radial-gradient(ellipse 55% 40% at var(--gx) var(--gy), rgba(255, 255, 255, 0.3) 0%, rgba(190, 215, 255, 0.13) 30%, rgba(100, 160, 255, 0.05) 55%, transparent 70%), radial-gradient(ellipse 30% 20% at var(--gx) var(--gy), rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  mix-blend-mode: overlay;
}

.why-hitech__inner {
  background-color: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.why-hitech__inner .heading-tag-box {
  border: 1px solid var(--strock-dark-bg);
}
.why-hitech__inner .heading-tag-box__dot {
  background-color: var(--white);
}
.why-hitech__inner .heading-tag-box__text {
  color: var(--white);
}

.why-hitech__shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

.why-hitech__container {
  max-width: 1375px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.why-hitech__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 79px;
}

.why-hitech__heading {
  margin-top: 30px;
  margin-bottom: 30px;
}
.why-hitech__heading h2 {
  font-weight: 700;
  font-size: 45px;
  line-height: 90%;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--second-family);
}

.why-hitech__left {
  width: 44.93%;
  align-items: flex-start;
  position: sticky !important;
  height: fit-content !important;
  top: 20px !important;
}

.why-hitech__right {
  width: 48.66%;
}

.why-hitech__img-box {
  margin-right: 34px;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  clip-path: inset(0% round 0px) !important;
}

.why-hitech__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
}
.why-hitech__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.why-hitech__img:first-child {
  opacity: 1;
}

.why-hitech__item {
  padding: 40px;
  border: 1px solid var(--strock-dark-bg);
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}

.why-hitech__item-left h4 {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 25px;
  line-height: 90%;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.why-hitech__item-left p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--body-dark-bg);
}

.why-hitech__number {
  position: absolute;
  top: 12px;
  right: 12px;
}
.why-hitech__number h5 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 80px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: right;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(135, 0, 23, 0.1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-hitech__img {
  overflow: hidden;
}

@media (max-width: 1280px) {
  .why-hitech__shape {
    width: 300px;
  }
  .why-hitech__wrapper {
    gap: 40px;
  }
  .why-hitech__left {
    width: 53.93%;
  }
}
@media (max-width: 1199px) {
  .why-hitech__wrapper {
    flex-direction: column;
  }
  .why-hitech__left {
    width: 100%;
  }
  .why-hitech__right {
    width: 100%;
  }
  .why-hitech__heading {
    margin-bottom: 35px;
  }
  .why-hitech__img-box {
    margin-right: 0;
  }
  .why-hitech__heading h2 {
    font-size: 60px;
  }
  .why-hitech__img img {
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .why-hitech__heading h2 {
    font-size: 45px;
  }
  .why-hitech__inner {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .why-hitech__item {
    gap: 25px;
    padding: 25px;
  }
  .why-hitech__number {
    width: 100%;
  }
  .why-hitech__number h5 {
    text-align: left;
  }
  .why-hitech__item-left {
    width: 100%;
  }
  .why-hitech__heading h2 {
    font-size: 35px;
  }
}
@media (max-width: 472px) {
  .why-hitech__heading h2 {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .why-hitech__left {
    width: 100%;
    position: static;
  }
  .why-hitech__img-box {
    margin-right: 0;
    position: sticky;
    top: 20px;
  }
}
.manufacturing__inner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.manufacturing__inner .heading-tag-box {
  opacity: 1 !important;
  visibility: visible !important;
  margin-bottom: 60px;
}

.manufacturing__shape1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
}

.manufacturing__shape2 {
  position: absolute;
  right: 0;
  top: -54px;
}

.manufacturing__container {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.manufacturing__heading {
  margin-top: 20px;
  margin-bottom: 40px;
}
.manufacturing__heading h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--dark);
}
.manufacturing__heading h2 em {
  font-style: normal;
  color: var(--brand);
}

.manufacturing__title-box {
  margin-bottom: 50px;
}

.manufacturing__items {
  position: relative;
  background-color: var(--white);
}

.manufacturing__item {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  border: 1px solid var(--strock-whtie-bg);
  transform-origin: center top;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: default;
  padding: 10px 0;
}

.manufacturing__item:not(:first-child) {
  margin-top: 30px;
}

.manufacturing__item-left {
  width: 42%;
  margin-top: 20px;
  margin-left: 30px;
  margin-bottom: 20px;
}

.manufacturing__item-right {
  width: 52%;
  height: auto;
  position: relative;
}
.manufacturing__item-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manufacturing__tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--white, #fff);
  color: var(--brand, #9c1006);
  font-family: var(--second-family, sans-serif);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 30px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.manufacturing__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.manufacturing__text {
  margin-bottom: 24px;
}
.manufacturing__text h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.manufacturing__text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: var(--body-white-bg);
}

.manufacturing__info {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.manufacturing__info li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 14px;
}
.manufacturing__info li .manufacturing__info-label {
  color: #666;
}
.manufacturing__info li .manufacturing__info-value {
  color: var(--dark, #111);
  font-weight: 600;
  text-align: right;
}

/* ============ Responsive Styles ============ */
@media (max-width: 1199px) {
  .manufacturing__heading h2 {
    font-size: 63px;
  }
  .manufacturing__item-left {
    width: 48%;
  }
  .manufacturing__item-right {
    width: 48%;
  }
  .manufacturing__item {
    align-items: flex-start;
  }
}
@media (max-width: 1024px) {
  .manufacturing__item {
    flex-direction: column-reverse;
    padding: 20px;
  }
  .manufacturing__item-left {
    width: 100%;
    margin: 0;
  }
  .manufacturing__item-right {
    width: 100%;
    height: 350px;
  }
  .manufacturing__icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .manufacturing__heading h2 {
    font-size: 50px;
  }
  .manufacturing__inner {
    padding: 60px 0;
  }
  .manufacturing__shape2 {
    width: 250px;
  }
  .manufacturing__icon {
    width: 50px;
    height: 50px;
  }
  .manufacturing__text h4 {
    font-size: 28px;
  }
  .manufacturing__item-right {
    height: 260px;
  }
  .manufacturing__info li {
    flex-direction: column;
    gap: 4px;
  }
  .manufacturing__info li .manufacturing__info-value {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .manufacturing__heading h2 {
    font-size: 40px;
  }
}
.video__inner {
  position: relative;
  width: 100%;
  overflow: hidden; /* Screen er baire text gele jeno scrollbar na ase */
}

.video__wrapper {
  width: 100%;
  position: relative;
}
.video__wrapper::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7607843137);
}
.video__wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2;
  display: block;
}

.video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* Logo specific style */
.video__logo {
  max-width: 150px;
  height: auto;
  z-index: 2; /* Text er opor jeno thake */
  opacity: 0.8;
}

/* Parallax Text Wrapper */
.video__parallax-container {
  position: absolute;
  width: 100%;
  white-space: nowrap; /* Text jeno line break na hoy */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.video__text {
  font-size: 8vw; /* Screen width er upore base kore boro font */
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0;
  opacity: 0.15; /* Watermark effect er jonyo kom opacity */
  /* Smooth scaling and rendering for GSAP animation */
  will-change: transform;
}

/* ============================================================
   SISTER CONCERNS — section, item cards, modal & overlay
   Uses existing global tokens: --brand, --dark, --white,
   --font-family, --second-family. Nothing new introduced.
   color-mix() is used for brand tints — modern browser support
   only; swap for rgba(R,G,B,a) if you need to support older browsers.
   ============================================================ */
.sister-concerns__inner {
  padding: 80px 0 0;
  position: relative;
}

.sister-concerns__headings {
  margin-top: 30px;
}
.sister-concerns__headings h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 80px;
  line-height: 90%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--dark);
  overflow: unset !important;
}
.sister-concerns__headings h2 em {
  font-style: normal;
  color: var(--brand);
}

.sister-concerns__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.sister-concerns__content {
  margin-top: 50px;
}

.sister-concerns__title-box {
  text-align: center;
}

.sister-concerns__title-box .heading-tag-box {
  margin: 0 auto;
}

/* ── ITEM GRID ─────────────────────────────────────────────── */
.sister-concerns__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  justify-content: center;
}

.sister-concerns__item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 20px;
  min-height: 460px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  outline: none;
  /* brand wash over the background video — kept slightly translucent
     so the looping clip reads as ambient texture, not noise */
}
.sister-concerns__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--primary);
  transition: 0.3s;
}
.sister-concerns__item:focus-visible {
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--brand);
}

.sister-concerns__item:first-child .sister-concerns__logo img {
  scale: 2.5;
  margin-left: 41px;
  margin-top: 19px;
}

.sister-concerns__video {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.sister-concerns__video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sister-concerns__logo {
  z-index: 1;
  position: relative;
  margin-bottom: auto;
  margin-top: 18px;
}
.sister-concerns__logo img {
  max-height: 56px;
  width: auto;
}

.sister-concerns__text {
  z-index: 1;
  position: relative;
  margin-top: 24px;
  margin-bottom: 24px;
}
.sister-concerns__text h4 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 28px;
  line-height: 92%;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 34px;
}
.sister-concerns__text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: color-mix(in srgb, var(--white) 85%, transparent);
  max-width: 32ch;
}

.sister-concerns__btn {
  z-index: 1;
  position: relative;
  margin-top: 26px;
}
.sister-concerns__btn .btn {
  pointer-events: auto;
}
.sister-concerns__btn .btn:hover .btn__right-arrow {
  scale: 0 !important;
}

.sister-concerns__item:hover::before {
  width: 0;
}
.sister-concerns__item:hover::after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-color: rgba(23, 21, 21, 0.4);
  position: absolute;
}
.sister-concerns__item:hover .sister-concerns__text {
  left: 0;
}

/* ── ITEM SCROLL-IN / HOVER STATE HOOK ───────────────────────
   Initial state set inline by GSAP (autoAlpha/y) — this class is
   only a fallback so the cards aren't invisible if JS fails to load. */
.sister-concerns__item {
  visibility: visible;
}

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.sister-concerns-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse 1200px 700px at 50% 30%, rgba(156, 16, 6, 0.25), transparent 60%), rgba(43, 10, 10, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 1;
}

.sister-concerns-overlay.is-active {
  display: flex;
  opacity: 1 !important;
}

html.sister-concerns-lock,
body.sister-concerns-lock {
  overflow: hidden;
}

/* ============================================================
   MODAL
   ============================================================ */
.sister-concerns-modal {
  position: relative;
  width: 90vw;
  max-width: 1180px;
  max-height: 82vh;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
}

.sister-concerns-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.25s ease, color 0.25s ease;
}
.sister-concerns-modal__close svg {
  width: 14px;
  height: 14px;
}
.sister-concerns-modal__close:hover {
  background: var(--brand);
  color: var(--white);
}
.sister-concerns-modal__close:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 40%, transparent);
}

/* ── gallery half ─────────────────────────────────────────── */
.sister-concerns-modal__gallery {
  position: relative;
  width: 44%;
  flex-shrink: 0;
  overflow: hidden;
}

.sister-concerns-modal__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.sister-concerns-modal__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: radial-gradient(ellipse 1200px 700px at 50% 30%, rgba(156, 16, 6, 0.25), transparent 60%), rgba(43, 10, 10, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: none;
  /* video-তে native click/controls যেন slider-কে hijack না করে */
}

.sister-concerns-modal__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.25s ease, color 0.25s ease;
}
.sister-concerns-modal__nav svg {
  width: 16px;
  height: 16px;
}
.sister-concerns-modal__nav:hover {
  background: var(--brand);
  color: var(--white);
}
.sister-concerns-modal__nav:focus-visible {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--white) 60%, transparent);
}

.sister-concerns-modal__nav--prev {
  left: 16px;
}

.sister-concerns-modal__nav--next {
  right: 16px;
}

.sister-concerns-modal__dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 2;
}

.sister-concerns-modal__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--white) 50%, transparent);
  transition: all 0.25s ease;
}
.sister-concerns-modal__dot.is-active {
  width: 20px;
  border-radius: 4px;
  background: var(--white);
}

/* ── content half ─────────────────────────────────────────── */
.sister-concerns-modal__content {
  width: 56%;
  padding: 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sister-concerns-modal__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.sister-concerns-modal__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.sister-concerns-modal__tag-text {
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.sister-concerns-modal__title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 16px;
}

.sister-concerns-modal__desc {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 172%;
  color: color-mix(in srgb, var(--dark) 70%, transparent);
  margin-bottom: 24px;
}

/* ── point boxes ──────────────────────────────────────────── */
.sister-concerns-modal__points {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sister-concerns-modal__point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: color-mix(in srgb, var(--brand) 7%, var(--white));
  border: 1px solid color-mix(in srgb, var(--brand) 16%, transparent);
  border-radius: 12px;
  padding: 14px 16px;
}

.sister-concerns-modal__point-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sister-concerns-modal__point-icon svg {
  width: 11px;
  height: 11px;
}

.sister-concerns-modal__point-text {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 162%;
  color: var(--dark);
}

.sister-concerns-modal__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
  .sister-concerns__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .sister-concerns-modal {
    width: 86vw;
  }
  .sister-concerns-modal__content {
    padding: 48px 44px 40px;
  }
}
@media (max-width: 991px) {
  .sister-concerns__headings h2 {
    font-size: 56px;
  }
  .sister-concerns-modal {
    flex-direction: column;
    max-height: 88vh;
    width: 90vw;
  }
  .sister-concerns-modal__gallery {
    width: 100%;
    height: 360px;
  }
  .sister-concerns-modal__content {
    width: 100%;
    padding: 36px 32px 28px;
  }
}
@media (max-width: 767px) {
  .sister-concerns__items {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .sister-concerns__item:first-child .sister-concerns__logo img {
    margin-bottom: 56px;
  }
  .sister-concerns__item {
    min-height: 380px;
    padding: 28px;
  }
  .sister-concerns__text h4 {
    font-size: 32px;
  }
  .sister-concerns-overlay {
    padding: 16px;
  }
  .sister-concerns-modal {
    width: 100%;
    border-radius: 18px;
    max-height: 92vh;
  }
  .sister-concerns-modal__gallery {
    height: 300px;
  }
  .sister-concerns-modal__title {
    font-size: 26px;
  }
  .sister-concerns-modal__content {
    padding: 30px 22px 24px;
  }
}
@media (max-width: 479px) {
  .sister-concerns__headings h2 {
    font-size: 42px;
  }
  .sister-concerns-modal__close {
    width: 32px;
    height: 32px;
    top: 12px;
    right: 12px;
  }
  .sister-concerns-modal__point {
    padding: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sister-concerns__item,
  .sister-concerns-modal,
  .sister-concerns-overlay {
    transition: none !important;
  }
}
@media (max-width: 575px) {
  .sister-concerns__item {
    padding: 24px 24px 45px;
  }
}
.media__container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.media__title-box {
  text-align: center;
  margin-bottom: 50px;
}
.media__title-box .heading-tag-box {
  margin: 0 auto;
}

.media__heading {
  margin-top: 40px;
}
.media__heading h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--dark);
}
.media__heading h2 em {
  font-style: normal;
  color: var(--primary);
}

.media__inner {
  padding: 80px 0 80px;
  position: relative;
}

.media__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 464px;
}

.tab-toggle {
  display: flex;
  justify-content: center;
  margin: 50px 100px;
}

.tab-toggle .pill {
  display: flex;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 50px;
}

.tab-toggle button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 999px;
  color: var(--dark);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  width: 50%;
}

.tab-toggle button.active {
  background: linear-gradient(135deg, var(--brand), var(--primary));
  color: var(--white);
  box-shadow: 0 6px 16px var(--brand-glow);
}

/* ---------- grid : plain flat photo tiles, 3 per row ---------- */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.g-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1515;
  cursor: pointer;
  flex: 1 0 calc(33.333% - 11px);
  max-width: calc(33.333% - 11px);
}

.g-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.g-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.g-card .play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.g-card .play-badge svg {
  width: 48px;
  height: 48px;
  color: var(--white);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
  opacity: 0.92;
}

/* ---------- lightbox / modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 5, 5, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.open {
  display: flex;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
  z-index: 5;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
  z-index: 5;
}

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

.nav-btn:active {
  transform: translateY(-50%) scale(0.92);
}

.nav-btn svg {
  width: 22px;
  height: 22px;
}

.nav-btn.hidden {
  display: none;
}

.nav-prev {
  left: 28px;
}

.nav-next {
  right: 28px;
}

.modal-stage {
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-stage img {
  max-width: 90vw;
  max-height: 82vh;
  display: block;
  object-fit: contain;
}

.video-frame {
  position: relative;
  width: min(90vw, 980px);
  aspect-ratio: 16/9;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-frame video {
  object-fit: contain;
}

.modal-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 5;
  pointer-events: none;
}

.modal-caption {
  font-family: var(--heading-font);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.modal-counter {
  font-family: var(--second-family);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1024px) {
  .g-card {
    flex: 1 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    gap: 10px;
  }
  .g-card {
    flex: 1 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }
  .nav-btn {
    width: 40px;
    height: 40px;
  }
  .nav-prev {
    left: 10px;
  }
  .nav-next {
    right: 10px;
  }
  .modal-footer {
    padding: 0 16px;
    bottom: 12px;
  }
  .modal-caption {
    font-size: 13px;
  }
}
@media (max-width: 1199px) {
  .media__inner {
    padding: 60px 0 60px;
  }
  .media__heading h2 {
    font-size: 63px;
  }
}
@media (max-width: 767px) {
  .media__heading h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .media__heading h2 {
    font-size: 40px;
  }
  .g-card {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .tab-toggle {
    margin-left: 0;
    margin-right: 0;
  }
}
.contact__inner {
  padding: 80px 0 0;
  background: var(--light-bg);
}

.contact__container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.contact__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 95px;
}

.contact__left {
  flex: 0 0 45.41%;
  max-width: 45.41%;
}

.contact__title-box {
  margin-bottom: 40px;
}

.contact__heading {
  margin-top: 35px;
}
.contact__heading h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 90%;
  text-transform: uppercase;
  color: var(--dark);
}
.contact__heading h2 em {
  color: var(--brand);
  font-style: normal;
}

.contact__info {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
}

.contact__info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__info-icon img {
  width: 16px;
}

.contact__info-title {
  margin: 0 0 13px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.contact__info-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body-white-bg);
  display: flex;
  gap: 5px;
}

.contact__info-text a {
  display: block;
}

.contact__info-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}

.contact__info-link:hover {
  text-decoration: underline;
}

.contact__info-address {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 115%;
  color: var(--primary);
  transition: text-decoration-color 0.2s ease;
}

.contact__info-address:hover {
  text-decoration-color: var(--brand);
}

.contact__map {
  width: 100%;
  height: 360px;
  margin-top: 70px;
  border-top: 1px solid var(--strock-whtie-bg);
  overflow: hidden;
  opacity: 0;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* ===== Right column / Form ===== */
.contact__right {
  flex: 0 0 46.66%;
  max-width: 46.66%;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--strock-whtie-bg);
  border-radius: 6px;
  padding: 36px;
  opacity: 0;
}

.contact__form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.contact__form-group {
  flex: 1 1 0;
  margin-bottom: 26px;
}

.contact__form-row .contact__form-group {
  margin-bottom: 0;
}

.contact__form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 9px;
}

.contact__form-input,
.contact__form-textarea {
  width: 100%;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--strock-whtie-bg);
  border-radius: 4px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
  color: #a8a49d;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 1, 22, 0.12);
}

.contact__form-textarea {
  resize: vertical;
  min-height: 110px;
}

.contact__form-submit {
  display: flex;
  max-width: max-content;
  opacity: 1 !important;
  border: 1px solid var(--dark);
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .contact__wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .contact__left,
  .contact__right {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  .contact__info {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .contact__form-group {
    width: 100%;
    flex: 1 0 100%;
  }
  .contact__form-row {
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  .contact__form-row:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .contact__heading h2 {
    font-size: 28px;
    line-height: 100%;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 60px 0 0;
  }
  .contact__form {
    padding: 24px;
  }
  .contact__form-row {
    flex-direction: column;
    gap: 26px;
  }
  .contact__heading {
    font-size: 30px;
  }
}
.hts-container {
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.hts-container-client {
  padding: 0 20px;
}

.hts-impact__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hts-impact__card-top .icon {
  margin-bottom: 0;
}
.hts-impact__card .chart {
  width: 78px;
  height: 34px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(10px);
  opacity: 1;
  transform: translateX(0);
}
.hts-impact__card .chart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hts-impact__card .chart__area {
  fill: rgba(122, 1, 22, 0.08);
  stroke: none;
}
.hts-impact__card .chart__line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 160;
  stroke-dashoffset: 0;
}
.hts-impact__card .chart--bars rect {
  fill: var(--primary);
  opacity: 0.85;
  rx: 2;
  transform-origin: bottom;
  transform: scaleY(1);
}
.hts-impact__card .chart--bars rect:nth-child(1) {
  transition-delay: 0.21s;
}
.hts-impact__card .chart--bars rect:nth-child(2) {
  transition-delay: 0.27s;
}
.hts-impact__card .chart--bars rect:nth-child(3) {
  transition-delay: 0.33s;
}
.hts-impact__card .chart--bars rect:nth-child(4) {
  transition-delay: 0.39s;
}
.hts-impact__card .chart--bars rect:nth-child(5) {
  transition-delay: 0.45s;
}
.hts-impact__card .chart--bars rect:nth-child(6) {
  transition-delay: 0.51s;
}
.hts-impact__card.is-visible .chart, .hts-impact__card:hover .chart {
  opacity: 1;
  transform: translateX(0);
}
.hts-impact__card.is-visible .chart__line, .hts-impact__card:hover .chart__line {
  stroke-dashoffset: 0;
}
.hts-impact__card.is-visible .chart--bars rect, .hts-impact__card:hover .chart--bars rect {
  transform: scaleY(1);
}

/* ==========================================================================
   1. AIR → EXPORTS + ACHIEVEMENT / CERTIFICATION SECTION  (white, no gradient)
   ========================================================================== */
.shape-impact {
  position: absolute;
  top: -77px;
  right: 0;
  width: 311px;
}

.hts-impact {
  position: relative;
  background: var(--white);
  color: var(--dark);
  overflow: hidden;
}
.hts-impact__inner {
  padding: 110px 0;
}
.hts-impact__layout {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}
.hts-impact__media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 34%;
  box-shadow: 0 24px 50px rgba(17, 17, 17, 0.14);
  height: auto;
}
.hts-impact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hts-impact__grid {
  width: 40%;
}
.hts-impact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--second-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.hts-impact__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--white);
  display: inline-block;
}
.hts-impact__eyebrow {
  color: var(--brand);
  margin-bottom: 22px;
}
.hts-impact__title {
  font-family: var(--second-family);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 24px;
  color: var(--dark);
}
.hts-impact__title span {
  color: var(--primary);
  overflow: unset !important;
}
.hts-impact__text {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.9;
  color: var(--body-white-bg);
  max-width: 560px;
  margin: 0 0 30px;
}
.hts-impact__note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
}
.hts-impact__note p {
  font-family: var(--display-font);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
  margin: 0;
}
.hts-impact__cards {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.hts-impact__card {
  background: var(--light-bg);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 6px;
  padding: 26px 22px;
  flex: 1 0 45%;
  max-width: calc(50% - 10px);
  opacity: 0;
  transform: translateY(36px);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.hts-impact__card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  margin-bottom: 16px;
}
.hts-impact__card .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
}
.hts-impact__card .num {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
}
.hts-impact__card .label {
  font-family: var(--font-family);
  font-size: 13.5px;
  color: var(--body-white-bg);
  line-height: 1.5;
}
.hts-impact__card:hover {
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.1);
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .hts-impact__layout {
    flex-direction: column;
    padding: 0 20px;
  }
  .hts-impact__media {
    width: 100%;
  }
  .hts-impact__grid {
    width: 100%;
  }
  .hts-impact__text {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .hts-impact__inner {
    padding: 70px 0;
  }
}
@media (max-width: 410px) {
  .hts-impact__cards {
    flex-direction: column;
  }
  .hts-impact__card {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
/* ==========================================================================
   2. OUR CLIENTS — Slick slider (center-mode, autoplay, bottom controls)
   ========================================================================== */
.hts-clients {
  background: var(--primary);
  padding: 90px 0;
  overflow: hidden;
}
.hts-clients__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.hts-clients__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--second-family);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}
.hts-clients__eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--white);
  display: inline-block;
}
.hts-clients__eyebrow {
  color: var(--white);
  justify-content: center;
  margin-bottom: 14px;
}
.hts-clients__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--white);
  margin: 0;
}
.hts-clients {
  /* ---------- slick track ---------- */
}
.hts-clients__slider {
  margin: 0 -10px;
}
.hts-clients__slide {
  padding: 0 10px;
}
.hts-clients .slick-slide {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  transform: scale(0.92);
  opacity: 0.75;
}
.hts-clients .slick-current {
  transform: scale(1.06);
  opacity: 1;
  z-index: 3;
}
.hts-clients .slick-list {
  overflow: visible;
  padding-top: 24px;
}
.hts-clients__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 340px;
  background: var(--white);
  color: var(--primary);
  border-radius: 10px;
  position: relative;
  padding: 26px 22px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.12);
  transition: box-shadow 0.4s ease;
}
.hts-clients__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 100% 100%, rgba(122, 1, 22, 0.05), transparent 60%);
  pointer-events: none;
}
.hts-clients__card .logo {
  height: 100px;
  max-width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: auto;
  flex-shrink: 0;
}
.hts-clients__card .logo img {
  height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.hts-clients__card .logo-desh-unnayan img {
  filter: invert(98%) sepia(6%) saturate(418%) hue-rotate(204deg) brightness(116%) contrast(100%);
}
.hts-clients__card .name {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--primary);
}
.hts-clients__card .name small {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11.5px;
  opacity: 0.65;
  margin-top: 4px;
}
.hts-clients__card .info {
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 1.7;
  color: var(--body-white-bg);
  opacity: 0;
  max-height: 0;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  margin-top: 10px;
}
.hts-clients__card .cta {
  font-family: var(--second-family);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.hts-clients__card .cta svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
}
.hts-clients__card:hover {
  box-shadow: 0 22px 40px rgba(17, 17, 17, 0.22);
}
.hts-clients {
  /* active (centered) slide এ info + cta দেখাও */
}
.hts-clients .slick-current .hts-clients__card,
.hts-clients .hts-clients__card:hover {
  box-shadow: 0 22px 40px rgba(17, 17, 17, 0.22);
}
.hts-clients .slick-current .hts-clients__card .info,
.hts-clients .hts-clients__card:hover .info {
  opacity: 1;
  max-height: 130px;
}
.hts-clients .slick-current .hts-clients__card .cta,
.hts-clients .hts-clients__card:hover .cta {
  opacity: 1;
  transform: translateY(0);
}
.hts-clients {
  /* ---------- bottom controls: prev — dots — next ---------- */
}
.hts-clients__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}
.hts-clients__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  font-size: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.hts-clients__arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  display: block;
  transition: border-color 0.3s ease;
}
.hts-clients__arrow:hover {
  background: var(--white);
}
.hts-clients__arrow:hover::before {
  border-color: var(--primary);
}
.hts-clients__arrow.slick-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.hts-clients__arrow.slick-disabled:hover {
  background: transparent;
}
.hts-clients__arrow.slick-disabled:hover::before {
  border-color: var(--white);
}
.hts-clients__arrow--prev::before {
  transform: rotate(-135deg);
  margin-left: 7px;
}
.hts-clients__arrow--next::before {
  transform: rotate(45deg);
  margin-right: 7px;
}
.hts-clients__dots .slick-dots {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hts-clients__dots .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.hts-clients__dots .slick-dots li.slick-active button {
  background: var(--white);
  width: 22px;
  border-radius: 6px;
}

@media (max-width: 560px) {
  .hts-clients__card {
    height: 300px;
  }
}
/* ==========================================================================
   3. STICKY SOCIAL BAR — WhatsApp fixed on its own, others reveal on "+" hover
   ========================================================================== */
.hts-social {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hts-social__cluster {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hts-social__hidden {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}

.hts-social__hidden li {
  opacity: 0;
  transform: translateY(10px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hts-social__cluster.is-active .hts-social__hidden li {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hts-social__cluster.is-active .hts-social__hidden li:nth-child(1) {
  transition-delay: 0.02s;
}

.hts-social__cluster.is-active .hts-social__hidden li:nth-child(2) {
  transition-delay: 0.07s;
}

.hts-social__cluster.is-active .hts-social__hidden li:nth-child(3) {
  transition-delay: 0.12s;
}

.hts-social__link,
.hts-social__toggle,
.hts-social__whatsapp {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.18);
  border: none;
  cursor: pointer;
}

.hts-social__link {
  background: var(--white);
  color: var(--dark);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, color 0.3s ease;
}
.hts-social__link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}
.hts-social__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bar-color, var(--brand));
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}
.hts-social__link:hover {
  color: var(--white);
}
.hts-social__link:hover::before {
  transform: translateY(0%);
}

.hts-social__whatsapp {
  background: #25d366;
  color: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hts-social__whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.hts-social__whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
}

.hts-social__toggle {
  background: var(--dark);
  color: var(--white);
}
.hts-social__toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.3s ease;
}
.hts-social__toggle.is-open svg {
  transform: rotate(45deg);
}

@media (max-width: 560px) {
  .hts-social {
    right: 14px;
    bottom: 14px;
  }
  .hts-social__link,
  .hts-social__toggle,
  .hts-social__whatsapp {
    width: 42px;
    height: 42px;
  }
}
/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hts-impact__media img {
    transform: none !important;
  }
  .hts-impact__card {
    opacity: 1 !important;
    transform: none !important;
  }
  .hts-clients__card {
    transition: none !important;
  }
}
@media (max-width: 1024px) {
  .hts-clients__dots {
    display: none;
  }
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background-color: var(--white);
  z-index: 1001;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--strock-whtie-bg);
}
.mobile-menu__logo img {
  width: 100px;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-grow: 1;
}
.mobile-menu__list li {
  border-bottom: 1px solid var(--strock-whtie-bg);
}
.mobile-menu__list li a {
  display: block;
  padding: 15px 5px;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--dark);
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.mobile-menu__list li a:hover, .mobile-menu__list li a.active {
  color: var(--brand);
  padding-left: 10px;
}
.mobile-menu__btn {
  margin-top: 25px;
  justify-content: center;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--strock-whtie-bg);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.mobile-menu-close:hover {
  background-color: var(--light-bg);
  transform: rotate(90deg);
}

body.mobile-menu-open {
  overflow: hidden;
}

.header__hamburger-btn {
  cursor: pointer;
}

.mobile-menu__logo a {
  display: block;
}

/* ==========================================================================
   Full Width Compact Timeline Section (Updated Typography & Gaps)
   ========================================================================== */
.timeline-story {
  padding: 0px 0 120px;
  background-color: var(--white, #ffffff);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Full Width Fluid Layout */
.timeline-story__fluid-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.timeline-story__fluid-container .heading-tag-box {
  margin: 0 auto 25px;
}

/* Header */
.timeline-story__header {
  margin-bottom: 60px;
  text-align: center;
}

.timeline-story__title {
  font-family: var(--second-family, sans-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark, #111111);
  margin-top: 8px;
  text-transform: uppercase;
}

.timeline-story__title em {
  font-style: normal;
  color: var(--brand, #9c1006);
}

/* SVG Timeline Pipe Area */
.timeline-story__wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}

.timeline-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.timeline-path-fill {
  transition: stroke-dashoffset 0.1s linear;
}

/* Nodes Base Overlay */
.timeline-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.timeline-node {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 5;
}

.timeline-node__pin {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--white, #ffffff);
  border: 4px solid #adb5bd;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.timeline-node.active .timeline-node__pin {
  background-color: var(--brand, #9c1006);
  border-color: var(--white, #ffffff);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(156, 16, 6, 0.5);
}

/* Timeline Node Label Cards (Enhanced Size & Spacing) */
.timeline-label-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 160px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0.85;
  pointer-events: none;
}

.timeline-node.active .timeline-label-card {
  opacity: 1;
}

/* Tooltip Offsets from Pipe */
.tooltip-top {
  bottom: 24px;
  margin-bottom: 16px;
}

.tooltip-bottom {
  top: 24px;
  margin-top: 16px;
}

/* Logo Box Above Year */
.timeline-label-card__logo {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.timeline-label-card__logo img {
  max-height: 100%;
  max-width: 95px;
  object-fit: contain;
}

/* Larger Year with Explicit Bottom Margin */
.timeline-label-card__year {
  display: block;
  font-family: var(--second-family, sans-serif);
  font-size: 20px;
  /* Font size increased */
  font-weight: 700;
  color: var(--brand, #9c1006);
  line-height: 1.1;
  margin-bottom: 8px;
  /* Increased space between year and title */
}

/* Larger Title Text */
.timeline-label-card__title {
  font-family: var(--font-family, sans-serif);
  font-size: 14.5px;
  /* Font size increased */
  font-weight: 600;
  color: var(--dark, #111111);
  line-height: 1.35;
  margin: 0;
}

/* Compact Companies Grid */
.timeline-companies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.company-card {
  background: #fafafa;
  border: 1px solid var(--strock-whtie-bg, #eee);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-color: var(--brand, #9c1006);
}

.company-card__header {
  border-bottom: 1px solid var(--strock-whtie-bg, #eee);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.company-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-card__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.company-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark, #111111);
  margin: 0 0 2px 0;
  line-height: 1.25;
}

.company-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand, #9c1006);
  background: rgba(156, 16, 6, 0.08);
  padding: 2px 7px;
  border-radius: 10px;
}

.company-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
  flex-grow: 1;
}

.company-card__list li {
  font-size: 13px;
  color: var(--body-white-bg, #444);
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  line-height: 1.35;
}

.company-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--brand, #9c1006);
}

.company-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px dashed var(--strock-whtie-bg, #eee);
  padding-top: 10px;
}

.company-card__qr {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.company-card__qr-text {
  font-size: 10.5px;
  font-weight: 500;
  color: #777;
  text-align: right;
  line-height: 1.2;
}

/* Responsive Rules */
@media (max-width: 1200px) {
  .timeline-companies {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .timeline-story {
    padding: 0 0 50px;
  }
  .timeline-svg {
    display: none;
  }
  .timeline-story__wrapper {
    position: relative;
    padding: 0 20px;
  }
  /* Fix: keep pin centered on pole even when active/scaled */
  .timeline-node.active .timeline-node__pin {
    transform: translateY(-50%) scale(1.3);
  }
  /* Center pole - background track */
  .timeline-story__wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
    background-color: var(--strock-whtie-bg, #eee);
    border-radius: 4px;
    z-index: 0;
  }
  /* Center pole - animated fill */
  .timeline-story__wrapper::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: var(--mobile-fill, 0%);
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--brand, #9c1006), #800000);
    border-radius: 4px;
    z-index: 1;
    transition: height 0.1s linear;
  }
  .timeline-nodes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 36px;
    z-index: 2;
  }
  .timeline-node {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    display: flex;
    align-items: center;
    width: 50%;
  }
  /* Pin sits ON the center pole for both sides */
  .timeline-node__pin {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white, #fff);
    flex-shrink: 0;
    z-index: 3;
  }
  .timeline-label-card {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    margin: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
  }
  .timeline-label-card__year,
  .timeline-label-card__title {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  /* ODD nodes -> LEFT side, text right-aligned, connector goes right to pole */
  .timeline-node:nth-child(odd) {
    justify-content: flex-end;
    padding-right: 24px;
  }
  .timeline-node:nth-child(odd) .timeline-node__pin {
    right: -30px;
  }
  .timeline-node:nth-child(odd) .timeline-label-card {
    text-align: right;
  }
  .timeline-node:nth-child(odd) .timeline-label-card__logo {
    justify-content: flex-end;
  }
  .timeline-node:nth-child(odd)::before {
    content: "";
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #adb5bd;
    z-index: 2;
  }
  /* EVEN nodes -> RIGHT side, connector goes left to pole */
  .timeline-node:nth-child(even) {
    margin-left: 50%;
    justify-content: flex-start;
    padding-left: 24px;
  }
  .timeline-node:nth-child(even) .timeline-node__pin {
    left: -30px;
  }
  .timeline-node:nth-child(even) .timeline-label-card {
    text-align: left;
  }
  .timeline-node:nth-child(even) .timeline-label-card__logo {
    justify-content: flex-start;
  }
  .timeline-node:nth-child(even)::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #adb5bd;
    z-index: 2;
  }
}
@media (max-width: 575px) {
  .timeline-story__fluid-container {
    padding: 0 16px;
  }
  .timeline-companies {
    grid-template-columns: 1fr;
  }
  .timeline-story__title {
    font-size: 28px;
  }
}
/* CSR Section Core Styles (Zero Top/Bottom Padding & Margin) */
.csr-section {
  background-color: #f8f9fa;
  color: #2b2d42;
  padding-top: 100px;
}

.csr-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header Styling */
.csr-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.csr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(156, 16, 6, 0.08);
  color: var(--brand, #9c1006);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.csr-badge__dot {
  width: 8px;
  height: 8px;
  background-color: var(--brand, #9c1006);
  border-radius: 50%;
}

.csr-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 22px;
  color: #1a1d20;
}

.csr-subtitle {
  font-size: 18px;
  color: #6c757d;
  line-height: 1.6;
}

/* Key Metrics Banner */
.csr-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  background: #ffffff;
  padding: 24px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf2f7;
  margin-bottom: 40px;
}

.csr-metric-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.csr-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(156, 16, 6, 0.08);
  color: var(--brand, #9c1006);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.csr-metric-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1d20;
}

.csr-metric-info p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

/* Story Block 1 & 2 (Image + Content Layouts) */
.csr-story-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 35px;
  align-items: center;
}

.csr-story-card--reverse {
  direction: rtl;
}

.csr-story-card--reverse .csr-story-card__content {
  direction: ltr;
}

.csr-story-card__image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.csr-story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.csr-story-card:hover .csr-story-card__image img {
  transform: scale(1.03);
}

.csr-story-card__content {
  padding: 40px;
}

.csr-story-card__tag {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 22px;
  font-family: var(--heading-font);
}

.csr-story-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1d20;
}

.csr-story-card__text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 22px;
}

.csr-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.csr-chip {
  background: #f1f5f9;
  color: var(--brand);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
}

/* Medical Departments Accordion/Grid Wrapper */
.csr-dept-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.csr-dept-header {
  margin-bottom: 25px;
}

.csr-dept-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 25px 0;
  color: #1a1d20;
}

.csr-dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.csr-dept-item {
  background: #f8fafc;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  border-left: 4px solid var(--brand, #9c1006);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.csr-dept-item:hover {
  background: #f1f5f9;
}

/* Responsive Setup */
@media (max-width: 991px) {
  .csr-story-card,
  .csr-story-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .csr-story-card__image {
    min-height: 250px;
  }
  .csr-story-card__content {
    padding: 25px;
  }
}
@media (max-width: 576px) {
  .csr-container {
    padding: 30px 15px;
  }
  .csr-title {
    font-size: 24px;
  }
  .csr-metrics {
    grid-template-columns: 1fr;
  }
}
.crs-page .header__logo img {
  width: 98px;
}

.crs-page .header__inner {
  background-color: rgb(63, 3, 3);
  padding: 0;
}
.crs-page .header__inner.active {
  padding: 20px 0;
}

/* ==========================================================================
   Certifications Section
   ========================================================================== */
.certifications {
  padding: 30px 0 80px;
  background-color: var(--light-bg, #f6f6f6);
  width: 100%;
}

.certifications__container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.certifications__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.certifications__title {
  font-family: var(--second-family);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  text-transform: uppercase;
  margin: 0;
}

.certifications__title em {
  font-style: normal;
  color: var(--brand);
}

.certifications__subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--body-white-bg);
  line-height: 1.6;
  margin: 0;
}

/* Grid - flex based, wraps responsively */
.certifications__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.cert-card {
  flex: 0 1 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.cert-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--strock-whtie-bg);
  background-color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cert-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cert-card:hover .cert-card__frame {
  border-color: var(--brand);
  box-shadow: 0 12px 30px rgba(156, 16, 6, 0.15);
  transform: translateY(-4px);
}

.cert-card:hover .cert-card__frame img {
  transform: scale(1.05);
}

.cert-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-card:hover .cert-card__overlay {
  opacity: 1;
}

.cert-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cert-card:hover .cert-card__icon {
  transform: scale(1);
}

.cert-card__title {
  font-family: var(--second-family);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin: 16px 0 4px;
}

.cert-card__desc {
  font-family: var(--font-family);
  font-size: 13.5px;
  color: var(--body-white-bg);
  margin: 0;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.cert-lightbox.is-active {
  display: flex;
}

.cert-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(4px);
}

.cert-lightbox__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.25s ease;
}

.cert-lightbox.is-active .cert-lightbox__inner {
  opacity: 1;
  transform: scale(1);
}

.cert-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.cert-lightbox__close:hover {
  background: var(--brand);
  color: var(--white);
}

.cert-lightbox__imgwrap {
  width: 100%;
  max-height: 70vh;
  overflow: auto;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-lightbox__imgwrap img {
  width: 100%;
  height: auto;
  display: block;
}

.cert-lightbox__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid var(--strock-whtie-bg);
}

.cert-lightbox__footer h4 {
  font-family: var(--second-family);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.cert-lightbox__download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--brand);
  color: var(--white);
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cert-lightbox__download:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Split layout: Certifications vs Achievements, 50/50 */
.cert-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.cert-split__col {
  flex: 1 1 50%;
  min-width: 0;
}

.cert-split__heading {
  font-family: var(--second-family);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
  position: relative;
  padding-bottom: 12px;
}

.cert-split__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background-color: var(--brand);
  border-radius: 3px;
}

.cert-split__desc {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--body-white-bg);
  margin: 14px 0 26px;
  line-height: 1.6;
}

/* Resize certification cards to fit the 50% column */
.cert-split .certifications__grid {
  justify-content: flex-start;
  gap: 24px;
}

.cert-split .cert-card {
  flex: 0 1 45%;
}

/* Achievements grid - plain logo cards, no popup */
.achievements__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.achieve-card {
  flex: 0 1 200px;
  background-color: var(--white);
  border: 1px solid var(--strock-whtie-bg);
  border-radius: 10px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.achieve-card:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(156, 16, 6, 0.1);
  transform: translateY(-4px);
}

.achieve-card__logo {
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.achieve-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  scale: 1.2;
}

.achieve-card__title {
  font-family: var(--second-family);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}

.achieve-card__desc {
  font-family: var(--font-family);
  font-size: 12.5px;
  color: var(--body-white-bg);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .cert-split {
    flex-direction: column;
    gap: 45px;
  }
  .cert-split .cert-card {
    flex: 0 1 45% px;
  }
  .achieve-card {
    flex: 0 1 160px;
  }
}
@media (max-width: 575px) {
  .cert-split .cert-card {
    flex: 0 1 100%;
  }
  .achieve-card {
    flex: 0 1 45%;
    padding: 18px 12px;
  }
  .achieve-card__logo {
    width: 80px;
    height: 80px;
  }
  .cert-split .certifications__grid {
    justify-content: center;
  }
}
/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .certifications__title {
    font-size: 30px;
  }
  .cert-card {
    flex: 0 1 200px;
  }
}
@media (max-width: 575px) {
  .certifications__container {
    padding: 0 16px;
    gap: 35px;
  }
  .certifications__title {
    font-size: 24px;
  }
  .cert-card {
    flex: 0 1 45%;
  }
  .cert-card__frame {
    border-radius: 8px;
  }
  .cert-lightbox__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .cert-lightbox__download {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .cert-card {
    flex: 0 1 320px;
  }
}
@media (max-width: 575px) {
  .cert-card {
    flex: 0 1 100%;
    max-width: 380px;
  }
}
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 20px;
  border: 2px solid var(--white);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

::-webkit-scrollbar-corner {
  background: var(--white);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand) var(--white);
}

/* ============================================================
   PRELOADER — "Mill Gate" rolling-rebar loader
   ============================================================ */
body.is-loading #preloader {
  display: block;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  font-family: var(--second-family);
  display: none;
}

.gate {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 3;
  background: linear-gradient(160deg, #2c0705 0%, #1a0303 55%, #0a0101 100%);
  transition: transform 1s cubic-bezier(0.83, 0, 0.17, 1);
  overflow: hidden;
}

.gate::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 2px, transparent 2px, transparent 26px);
}

.gate-left {
  left: 0;
}

.gate-right {
  right: 0;
}

.gate-left::after, .gate-right::after {
  content: "HI-TECH";
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--display-font);
  font-weight: 900;
  font-size: 14vw;
  color: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
  letter-spacing: 4px;
}

.gate-left::after {
  transform: translate(-30%, -50%);
}

.gate-right::after {
  transform: translate(-70%, -50%);
}

#preloader.opening .gate-left {
  transform: translateX(-100%);
}

#preloader.opening .gate-right {
  transform: translateX(100%);
}

.pre-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pre-content.hide {
  opacity: 0;
  transform: scale(0.86);
}

.pre-logo {
  text-align: center;
  line-height: 1;
}

.pre-logo .hi {
  font-family: var(--display-font);
  font-weight: 800;
  color: var(--brand);
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: 1px;
}

.pre-logo .sub {
  display: block;
  margin-top: 8px;
  color: var(--body-dark-bg);
  font-family: var(--second-family);
  font-size: clamp(10px, 1.4vw, 13px);
  letter-spacing: 5px;
  text-transform: uppercase;
}

.rod-track {
  position: relative;
  width: min(340px, 68vw);
  height: 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.rod-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 9px);
  z-index: 4;
  pointer-events: none;
}

.rod-fill {
  position: relative;
  height: 100%;
  width: 0%;
  border-radius: 8px;
  background: linear-gradient(180deg, #f2f2f2 0%, #c7c7c7 35%, #8f8f8f 60%, #d8d8d8 100%);
  background-size: 100% 100%;
  transition: width 0.12s linear;
}

.rod-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(0, 0, 0, 0.12) 0px, rgba(0, 0, 0, 0.12) 2px, transparent 2px, transparent 8px);
}

.rod-glow {
  position: absolute;
  right: -6px;
  top: 50%;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, #ffe9b0 0%, #ff8a3d 40%, var(--brand) 75%, transparent 100%);
  box-shadow: 0 0 14px 4px rgba(255, 120, 40, 0.65);
  animation: emberPulse 0.9s ease-in-out infinite;
}

@keyframes emberPulse {
  0%, 100% {
    opacity: 0.75;
    transform: translateY(-50%) scale(0.9);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
  }
}
.spark {
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffcf8a;
  opacity: 0;
  animation: sparkFly 1.1s ease-out infinite;
}

.spark.s1 {
  animation-delay: 0s;
}

.spark.s2 {
  animation-delay: 0.35s;
}

.spark.s3 {
  animation-delay: 0.7s;
}

@keyframes sparkFly {
  0% {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(28px, calc(-50% - 26px)) scale(0.3);
  }
}
.pre-percent {
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 2px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pre-percent span {
  font-size: 17px;
  font-weight: 700;
  color: #ffb27a;
}

.pre-caption {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--second-family);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: -14px;
}

/*# sourceMappingURL=style.css.map */
