/* ============================================================
   GOOGLE FONT — Plus Jakarta Sans
  
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ============================================================
      CSS VARIABLES
      ============================================================ */
:root {
  --blue: #189CCB;
  --blue-deep: #0E6F92;
  --charcoal: #3A3A3C;
  --ink: #212124;
  --paper: #F4F7F8;
  --steel: #75808A;
  --line: #E6E9EB;
  --font: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================================
      RESET & BASE
      ============================================================ */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--ink);
  margin: 0;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-divine {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-divine:hover {
  background: var(--blue-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 111, 146, 0.3);
}

.eyebrow {
  color: var(--blue);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.dropdown-item:hover {
  background-color: #0e6f92;
  color: #fff;
}

 .nav-item.dropdown {
    display: -webkit-inline-box;
    align-items: center;
    flex-wrap: wrap; 
  }
 
  .dropdown-caret-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
  }
 
  .dropdown-caret-btn::after {
    display: inline-block;
    content: "";
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    transition: transform 0.2s ease;
   
  }
 
  .dropdown-caret-btn[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  
 
 
 @media (max-width: 991.98px) {

    .nav-item.dropdown{
        display: block;
    }

    .nav-item.dropdown > .nav-link{
        display: inline-block;
    }

    .nav-item.dropdown > .dropdown-caret-btn{
        float: right;
        margin-top: -7px;
    }

    .navbar-nav .dropdown-menu{
        position: static !important;
        display: none;
        width: 100%;
        margin: 0;
        padding-left: 15px;
        box-shadow: none;
        border: 0;
        background: transparent;
    }

    .navbar-nav .dropdown-menu.show{
        display: block;
    }
}
  
/* ============================================================
      KEYFRAME ANIMATIONS
      ============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

@keyframes rotateSlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floatUD {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes borderPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(24, 156, 203, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(24, 156, 203, 0);
  }
}


.anim-fadeup,
.anim-fadeleft,
.anim-faderight,
.anim-zoomin {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.anim-fadeup {
  transform: translateY(50px);
}

.anim-fadeleft {
  transform: translateX(-50px);
}

.anim-faderight {
  transform: translateX(50px);
}

.anim-zoomin {
  transform: scale(0.88);
}

.anim-fadeup.in,
.anim-fadeleft.in,
.anim-faderight.in,
.anim-zoomin.in {
  opacity: 1;
  transform: none;
}

/* stagger delays */
.d1 {
  transition-delay: 0.10s;
}

.d2 {
  transition-delay: 0.20s;
}

.d3 {
  transition-delay: 0.30s;
}

.d4 {
  transition-delay: 0.40s;
}

.d5 {
  transition-delay: 0.50s;
}

/* ============================================================
      HEADER
      ============================================================ */
.TopHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.3s ease;
}

.TopHeader.scrolled {
  box-shadow: 0 4px 20px rgba(33, 33, 36, 0.10);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo img {
  height: 54px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.04);
}

.i_nav {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.i_nav>li>a {
  color: var(--ink);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.25s ease;
}

.i_nav>li>a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.i_nav>li>a:hover::after,
.i_nav>li.active>a::after {
  transform: scaleX(1);
}

.i_nav>li>a:hover,
.i_nav>li.active>a {
  color: var(--blue);
}

.top_line_r {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top_line_r .lang {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--steel);
  font-family: var(--font);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.top_line_r .lang:hover {
  color: var(--blue);
}

.navToggle {
  display: none;
}

/* ============================================================
      BANNER
      ============================================================ */
.bannerbox{
    width:100%;
    overflow:hidden;
    background:#fff;
    line-height:0;
}

.bannerbox picture{
    display:block;
    width:100%;
}

.banner-img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
}

/* Desktop */
@media (min-width:1200px){
    .banner-img{
        width:100%;
        height:auto;
    }
}

/* Laptop */
@media (max-width:1199px){
    .banner-img{
        width:100%;
        height:auto;
    }
}

/* Tablet */
@media (max-width:991px){
    .banner-img{
        width:100%;
        height:auto;
    }
}

/* Mobile */
@media (max-width:767px){
    .banner-img{
        width:100%;
        height:auto;
    }
}

/* Small Mobile */
@media (max-width:480px){
    .banner-img{
        width:100%;
        height:auto;
    }
}

/* ============================================================
            CORE TECHNOLOGIES
      ============================================================ */

 .core-tech {
    padding: 80px 0;
    background: #ffffff;
  }

  .core-tech .section-label {
    text-align: center;
    margin-bottom: 48px;
  }

  .core-tech .section-label h2 {
    /*font-family: 'Fraunces', serif;*/
    font-size: 34px;
    font-weight: 600;
    color: var(--blue-deep, #08121c);
    margin: 0 0 12px;
  }

  .core-tech .section-label .line {
    width: 56px;
    height: 3px;
    margin: 0 auto;
    background: var(--blue-deep, #185fa5);
    border-radius: 3px;
  }

  .core-tech-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: stretch;
  }

  .core-tech-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .core-tech-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .core-tech-img {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    background: #eceff1;
  }

  .core-tech-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .core-tech-title {
    /*font-family: 'Inter', sans-serif;*/
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--blue-deep, #08121c);
    margin: 0 0 8px;
  }

  .core-tech-desc {
    /*font-family: 'Inter', sans-serif;*/
    font-size: 14px;
    line-height: 1.65;
    color: #6b7684;
    margin: 0;
  }

  .core-tech-divider {
    position: relative;
    width: 1px;
    background: #dfe3e8;
  }

  .core-tech-divider .dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e14545;
  }

  .core-tech-divider .dot-top { top: -4px; }
  .core-tech-divider .dot-bottom { bottom: -4px; }

  .core-tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 64px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #eceff1;
  }

  .core-tech-tag {
    max-width: 320px;
    text-align: left;
  }

  .core-tech-tag .tag-label {
    /*font-family: 'Inter', sans-serif;*/
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-deep, #185fa5);
    margin: 0 0 6px;
  }

  .core-tech-tag .tag-value {
    /*font-family: 'Inter', sans-serif;*/
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--blue-deep, #08121c);
    margin: 0;
  }

  @media (max-width: 992px) {
    .core-tech-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .core-tech-divider {
      display: none;
    }
  }

  @media (max-width: 560px) {
    .core-tech-item {
      flex-direction: column;
      align-items: flex-start;
    }
    .core-tech-img {
      width: 72px;
      height: 72px;
    }
  }

/* ============================================================
      HOT PRODUCTS
      ============================================================ */
.pcate1_swipers {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.tit.dis2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 46px;
  flex-wrap: wrap;
  gap: 16px;
}

.tit h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.tit h6 {
  color: var(--steel);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  margin: 0;
}

.tit .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--ink);
  padding: 11px 22px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  white-space: nowrap;
  transition: all 0.25s ease;
}

.tit .btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.pcate1_list .swiper-slide {
  height: auto;
}

.p-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  height: 100%;
}

.p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(33, 33, 36, 0.12);
  border-color: var(--blue);
}

.p-card .img {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3F4, #DCE7EA);
}

.p-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.p-card:hover .img img {
  transform: scale(1.07);
}

.p-card .img svg {
  width: 80px;
  height: 80px;
  color: var(--blue-deep);
}

.p-card .txt {
  padding: 24px;
}

.p-card .txt p {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.p-card .txt h6 {
  font-size: 0.86rem;
  color: var(--steel);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 18px;
  min-height: 84px;
}

.p-card .h40 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-card .yxbtn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.p-card:hover .yxbtn {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}

.p-card dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-card dt {
  font-size: 0.7rem;
  color: var(--steel);
  font-family: monospace;
}

.pcate1-pagination {
  text-align: center;
  margin-top: 34px;
}

.pcate1-pagination .swiper-pagination-bullet {
  background: var(--steel);
  opacity: 0.3;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.pcate1-pagination .swiper-pagination-bullet-active {
  background: var(--blue);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.pcate1-prev,
.pcate1-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.pcate1-prev:hover,
.pcate1-next:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.1);
}

.pcate1-prev {
  left: -6px;
}

.pcate1-next {
  right: -6px;
}

.pcate1_swipers .wrap {
  position: relative;
}

/* ============================================================
      SOLUTIONS
      ============================================================ */
.isolution {
  padding: 100px 0 0;
}

.flex.jsb.jsp.ac {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.tab-list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.tab-list .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: all 0.3s ease;
  min-width: 108px;
}

.tab-list .tab img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s ease;
}

.tab-list .tab p {
  font-size: 0.86rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--steel);
  margin: 0;
  transition: color 0.3s ease;
}

.tab-list .tab:hover {
  border-color: rgba(24, 156, 203, 0.4);
  background: rgba(24, 156, 203, 0.03);
}

.tab-list .tab.active {
  border-color: var(--blue);
  background: rgba(24, 156, 203, 0.07);
}

.tab-list .tab.active img {
  filter: none;
}

.tab-list .tab.active p {
  color: var(--blue-deep);
}

.tab-content {
  margin-top: 50px;
}

.content {
  display: none;
}

.content.active {
  display: block;
  animation: fadeInUp 0.5s ease both;
}

.slist .wraps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border-radius: 14px;
  overflow: hidden;
}

.slist .right {
  background: var(--charcoal);
  color: #fff;
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.slist .right::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(24, 156, 203, 0.06);
  pointer-events: none;
}

.slist .right p.fz36 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.slist .right h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.slist .right .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.88rem;
  width: fit-content;
  transition: all 0.3s ease;
}

.slist .right .btn:hover {
  background: #fff;
  color: var(--ink);
  transform: translateX(4px);
}

.slist .right img.wm {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 200px;
  opacity: 0.07;
  filter: brightness(0) invert(1);
}

.slist .left {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #EEF3F4, #DCE7EA);
}

.slist .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.slist .left:hover img {
  transform: scale(1.05);
}

/* ============================================================
      OUR SORT
      ============================================================ */
 .materials-grid-section {
    padding: 80px 0;
    background: #ffffff;
  }
 
  .materials-grid-section .section-label {
    text-align: center;
    margin-bottom: 48px;
  }
 
  .materials-grid-section .section-label h2 {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--blue-deep, #08121c);
    margin: 0 0 12px;
  }
 
  .materials-grid-section .section-label .line {
    width: 56px;
    height: 3px;
    margin: 0 auto;
    background: var(--blue-deep, #185fa5);
    border-radius: 3px;
  }
 
  .materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
 
  .material-card {
    background: #ffffff;
    border: 1px solid #e6e9ed;
    border-radius: 12px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
 
  .material-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(8, 18, 28, 0.08);
    border-color: transparent;
  }
 
  .material-img {
    width: 220px;
    height: 220px;
    max-width: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f7f8fa;
    margin-bottom: 22px;
  }
 
  .material-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
  .material-label {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-deep, #08121c);
    margin: 0;
  }
 
  @media (max-width: 992px) {
    .materials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .material-img {
      width: 180px;
      height: 180px;
    }
  }
 
  @media (max-width: 560px) {
    .materials-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .materials-grid-section {
      padding: 56px 0;
    }
    .material-img {
      width: 200px;
      height: 200px;
    }
  }
 



/* ============================================================
      ABOUT / STATS
      ============================================================ */
.iabboxs {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue) 60%, #34B6D9);
  padding: 100px 0 80px;
  margin-top: 100px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.iabboxs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.iabboxs .bigwm {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.iabboxs .bigwm img {
  height: 64px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-grid .fz48 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.about-grid h6 {
  margin-top: 22px;
  margin-bottom: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  font-size: 1rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.stat-grid dt h6 {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.stat-grid dt p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  margin-top: 8px;
}

/* ============================================================
      NEWS
      ============================================================ */
.inewlists {
  padding: 100px 0 70px;
}

.ic_list4 {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0;
  margin: 0;
}

.ic_list4 li a {
  display: block;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ic_list4 li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ic_list4 li a:hover::before {
  transform: scaleX(1);
}

.ic_list4 li a:hover {
  border-color: var(--blue);
  box-shadow: 0 24px 48px rgba(33, 33, 36, 0.10);
  transform: translateY(-6px);
}

.ic_list4 p.fz16 {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: monospace;
  letter-spacing: 0.06em;
}

.ic_list4 h6.fz20 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.45;
  color: var(--ink);
}

.ic_list4 h5.fz16 {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
}

/* ============================================================
      CTA STRIP
      ============================================================ */
.hfsbox {
  padding: 90px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hfsbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 0);
  background-size: 24px 24px;
}

.hfsbox p {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

/* ============================================================
      FOOTER
      ============================================================ */
footer {
  background: #181819;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 70px;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 20px;
}

.footer_top>img {
  height: 90px;
  /*filter: brightness(0) invert(1);*/
}

.footer_list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer_list a {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer_list a:hover {
  color: var(--blue);
}

.footer_center {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding: 50px 0;
}

.footer_h3 {
  color: #fff;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer_call {
  margin: 0;
  padding: 0;
}

.footer_call dt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer_call dt svg {
  color: var(--blue);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.footer_call a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer_call a:hover {
  color: var(--blue);
}

.footer_share {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
}

.footer_share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}

.footer_share a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-3px);
}

.footer_ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_ul li {
  margin-bottom: 13px;
}

.footer_ul a {
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer_ul a::before {
  content: '→';
  font-size: 0.8rem;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.footer_ul a:hover {
  color: var(--blue);
  padding-left: 4px;
}

.footer_ul a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer_down_bac {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  margin-top: 10px;
}

.footer_down {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer_down a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer_down a:hover {
  color: var(--blue);
}

.footer_share {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 20px 0 0;
  vertical-align: middle;
}

.footer_badges {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  vertical-align: middle;
}

.footer_badges img {
  height: 60px;
  width: auto;
}

/* ============================================================
      FLOATING BUTTONS
      ============================================================ */
.aside_menu {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aside_menu a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.aside_menu a:hover {
  background: var(--blue);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 24px rgba(14, 111, 146, 0.35);
}

.aside_menu svg {
  width: 20px;
  height: 20px;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: floatUD 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  animation: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ============================================================
      VIDEO MODAL
      ============================================================ */
.vd_box {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.vd_box iframe {
  width: 80%;
  max-width: 900px;
  height: 60vh;
  border: none;
  border-radius: 12px;
}

.close_v {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.close_v::before,
.close_v::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  background: #fff;
}

.close_v::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close_v::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ============================================================
      RESPONSIVE
      ============================================================ */
@media (max-width: 991px) {
  .i_nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 28px 24px;
    gap: 18px;
    display: none;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  }

  .i_nav.show {
    display: flex;
    animation: fadeInDown 0.3s ease both;
  }

  .navToggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .navToggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    display: block;
    transition: all 0.3s ease;
  }

  .top_line_r .lang span {
    display: none;
  }

  .slist .wraps {
    grid-template-columns: 1fr;
  }

  .slist .left {
    min-height: 280px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer_center {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ic_list4 {
    grid-template-columns: 1fr;
  }

  .aside_menu {
    display: none;
  }

  /* .banner-orbit,
       .banner-orbit-2 {
           display: none;
       } */
}

@media (max-width: 576px) {
  .bannerbox h1 {
    font-size: 2rem;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hfsbox p {
    font-size: 1.5rem;
  }
}

/***** Header Get Quote Button ****/
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
  background-color: #0e6f92 !important;
  border-color: #0e6f92 !important;
  color: #fff !important;
  box-shadow: none !important;
}

/***** About Page *****/
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes borderPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(24, 156, 203, 0.35);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(24, 156, 203, 0);
  }
}



.anim-fadeup,
.anim-fadeleft,
.anim-faderight,
.anim-zoomin {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(.22, .61, .36, 1),
    transform 0.75s cubic-bezier(.22, .61, .36, 1);
}

.anim-fadeup {
  transform: translateY(50px);
}

.anim-fadeleft {
  transform: translateX(-50px);
}

.anim-faderight {
  transform: translateX(50px);
}

.anim-zoomin {
  transform: scale(0.88);
}

.anim-fadeup.in,
.anim-fadeleft.in,
.anim-faderight.in,
.anim-zoomin.in {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.d1 {
  transition-delay: 0.10s;
}

.d2 {
  transition-delay: 0.20s;
}

.d3 {
  transition-delay: 0.30s;
}

.d4 {
  transition-delay: 0.40s;
}

.d5 {
  transition-delay: 0.50s;
}

/* ============================================================
     PAGE BANNER
     ============================================================ */

.about-banner{
    width:100%;
    overflow:hidden;
    background:#fff;
    line-height:0;
}
.about-banner .banner-img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
}
/* Desktop */
@media (min-width:1200px){
    .about-banner .banner-img{
        width:100%;
        height:auto;
    }
}
/* Laptop */
@media (max-width:1199px){
    .about-banner .banner-img{
        width:100%;
        height:auto;
    }
}
/* Tablet */
@media (max-width:991px){
    .about-banner .banner-img{
        width:100%;
        height:auto;
    }
}
/* Mobile */
@media (max-width:767px){
    .about-banner .banner-img{
        width:100%;
        height:auto;
    }
}
/* Small Mobile */
@media (max-width:480px){
    .about-banner .banner-img{
        width:100%;
        height:auto;
    }
}
/* ============================================================
     INTRO SECTION
     ============================================================ */

.about-intro {
  padding: 100px 0 70px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-left .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 156, 203, 0.08);
  color: var(--blue-deep);
  border: 1px solid rgba(24, 156, 203, 0.25);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-intro-left .tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.about-intro-left h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-intro-left h2 em {
  font-style: normal;
  color: var(--blue);
}

.about-intro-left p {
  color: var(--steel);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* animated underline on heading */
.anim-underline {
  position: relative;
  display: inline-block;
}

.anim-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s 0.8s ease;
}

.anim-underline.in::after {
  transform: scaleX(1);
}

/* Visual card */
.about-visual-card {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue) 70%, #34B6D9);
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: floatUpDown 5s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(14, 111, 146, 0.35);
}

.about-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 20px 20px;
}

.about-visual-card .card-inner {
  position: relative;
  z-index: 2;
}

.about-visual-card .est-badge {
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-visual-card h3 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.3;
}

.vc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.vc-stat b {
  display: block;
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.vc-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  display: block;
}

.vc-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.vc-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================================
     AIM / VISION / QUALITY
     ============================================================ */

.avq-section {
  padding: 0 0 100px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  overflow: hidden;
}

.section-label h2 {
  font-size: 1.70rem;
  white-space: nowrap;
}

.section-label .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s 0.3s ease;
}

.section-label.in .line {
  transform: scaleX(1);
}

.avq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.avq-card {
  background: #fff;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

/* top bar sweep */
.avq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.avq-card:hover::before {
  transform: scaleX(1);
}

/* bg sweep on hover */
.avq-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(24, 156, 203, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.avq-card:hover::after {
  opacity: 1;
}

.avq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(33, 33, 36, 0.10);
}

.icon-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(24, 156, 203, 0.08);
  border: 1px solid rgba(24, 156, 203, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  animation: borderPulse 3s ease-in-out infinite;
}

.avq-card:hover .icon-ring {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(10deg) scale(1.08);
  animation: none;
}

.icon-ring svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  transition: color 0.35s ease;
}

.avq-card:hover .icon-ring svg {
  color: #fff;
}

.avq-card .num {
  font-family: monospace;
  font-size: 0.72rem;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.avq-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--ink);
}

.avq-card p {
  font-size: 0.95rem;
  color: var(--steel);
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
     PRODUCTS SECTION
     ============================================================ */

.about-products {
  padding: 0 0 110px;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.prod-intro {
  max-width: 820px;
  margin: 0 0 56px;
}

.prod-intro p {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.prod-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.prod-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.prod-tag img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.prod-tag span {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-align: center;
}

/* Tablets */
@media (max-width: 768px) {
    .prod-tag {
        width: 120px;
    }

    .prod-tag img {
        height: 110px;
    }

    .prod-tag span {
        font-size: 14px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .prod-tags {
        gap: 10px;
    }

    .prod-tag {
        width: 47%; /* 2 per row */
    }

    .prod-tag img {
        height: 100px;
    }

    .prod-tag span {
        font-size: 13px;
    }
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.trust-item {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

.trust-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item:hover {
  background: rgba(24, 156, 203, 0.03);
  transform: translateY(-4px);
}

.t-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(24, 156, 203, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.trust-item:hover .t-icon {
  background: var(--blue);
  transform: rotate(-6deg) scale(1.1);
}

.t-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-deep);
  transition: color 0.3s ease;
}

.trust-item:hover .t-icon svg {
  color: #fff;
}

.trust-item h5 {
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--steel);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
     COUNTER NUMBERS
     ============================================================ */

.stat-number {
  font-family: var(--font);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}

/* ============================================================
     RESPONSIVE
     ============================================================ */

@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual-card {
    animation: none;
  }

  .avq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .about-banner h1 {
    font-size: 2.2rem;
  }

  .banner-orbit,
  .banner-orbit-2 {
    display: none;
  }
}

@media (max-width: 576px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .vc-stats {
    grid-template-columns: 1fr 1fr;
  }
}



/***** Contact Page *****/
/* ============================================================
   PAGE BANNER
   ============================================================ */
.contact-banner {
  background: linear-gradient(120deg, var(--charcoal) 0%, #232325 55%, var(--blue-deep) 130%);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.contact-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
}

.contact-banner .inner {
  position: relative;
  z-index: 2;
}

.contact-banner .breadcrumb-bar {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  font-family: monospace;
  letter-spacing: 0.06em;
  animation: fadeInDown 0.7s ease both;
}

.contact-banner .breadcrumb-bar span {
  color: var(--blue);
}

.contact-banner h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.contact-banner p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  animation: fadeInUp 0.8s 0.35s ease both;
}

/* ============================================================
     QUICK-CONTACT STRIP
     ============================================================ */
.quick-strip {
  margin-top: -46px;
  position: relative;
  z-index: 3;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 44px rgba(33, 33, 36, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quick-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 28px 56px rgba(33, 33, 36, 0.14);
}

.quick-card .q-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(24, 156, 203, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.quick-card:hover .q-icon {
  background: var(--blue);
  transform: rotate(-6deg) scale(1.06);
}

.quick-card .q-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue-deep);
  transition: color 0.3s ease;
}

.quick-card:hover .q-icon svg {
  color: #fff;
}

.quick-card .q-text {
  min-width: 0;
}

.quick-card .q-text span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
}

.quick-card .q-text a,
.quick-card .q-text p {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.quick-card .q-text a:hover {
  color: var(--blue-deep);
}

/* ============================================================
     MAIN CONTACT SECTION
     ============================================================ */
.contact-main {
  padding: 110px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

/* -- Left: company / office details -- */
.office-card {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue) 75%, #34B6D9);
  border-radius: 20px;
  padding: 46px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(14, 111, 146, 0.3);
}

.office-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 20px 20px;
}

.office-card .oc-inner {
  position: relative;
  z-index: 2;
}

.office-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.office-card .tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulseDot 1.8s ease-in-out infinite;
}

.office-card h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.office-card .oc-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.oc-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

.oc-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.oc-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.oc-list .oc-ic {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.oc-list .oc-ic svg {
  width: 17px;
  height: 17px;
  color: #fff;
}

.oc-list .oc-body span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.oc-list .oc-body a,
.oc-list .oc-body p {
  font-size: 0.96rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}

.oc-list .oc-body a:hover {
  opacity: 0.8;
}

.oc-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--blue-deep);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.oc-map-link:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

/* -- Right: inquiry form -- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 20px 50px rgba(33, 33, 36, 0.06);
}

.form-card .fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 156, 203, 0.08);
  color: var(--blue-deep);
  border: 1px solid rgba(24, 156, 203, 0.25);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.form-card h2 {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.form-card>p {
  color: var(--steel);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 34px;
}

.dv-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dv-form .form-group {
  margin-bottom: 22px;
}

.dv-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.dv-form .form-control {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.dv-form .form-control:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(24, 156, 203, 0.12);
}

.dv-form textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.captcha-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  padding: 10px 18px;
}

.captcha-box #code {
  font-family: monospace;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink);
  user-select: none;
}

.captcha-refresh {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex: none;
}

.captcha-refresh:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(90deg);
}

.captcha-refresh svg {
  width: 15px;
  height: 15px;
  color: var(--ink);
  transition: color 0.25s ease;
}

.captcha-refresh:hover svg {
  color: #fff;
}

.dv-form .form-control.captcha-input {
  max-width: 140px;
  background: #fff;
}

.dv-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.96rem;
  padding: 15px 26px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 16px;
  text-align: center;
}

/* ============================================================
     MAP
     ============================================================ */
.map-section {
  padding: 0 0 100px;
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(33, 33, 36, 0.08);
  height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
     RESPONSIVE
     ============================================================ */
@media (max-width: 991px) {
  .quick-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-banner h1 {
    font-size: 2.2rem;
  }

  .form-card {
    padding: 36px 28px;
  }
}

@media (max-width: 576px) {
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .dv-form .row-2 {
    grid-template-columns: 1fr;
  }

  .office-card,
  .form-card {
    padding: 32px 24px;
  }
}



/***** Product Page *****/
/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes borderPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(24, 156, 203, 0.35);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(24, 156, 203, 0);
  }
}

/* ============================================================
 SCROLL-TRIGGER BASE — hidden until .in is added by JS
 ============================================================ */

.anim-fadeup,
.anim-fadeleft,
.anim-faderight,
.anim-zoomin {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(.22, .61, .36, 1),
    transform 0.75s cubic-bezier(.22, .61, .36, 1);
}

.anim-fadeup {
  transform: translateY(50px);
}

.anim-fadeleft {
  transform: translateX(-50px);
}

.anim-faderight {
  transform: translateX(50px);
}

.anim-zoomin {
  transform: scale(0.88);
}

.anim-fadeup.in,
.anim-fadeleft.in,
.anim-faderight.in,
.anim-zoomin.in {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.d1 {
  transition-delay: 0.10s;
}

.d2 {
  transition-delay: 0.20s;
}

.d3 {
  transition-delay: 0.30s;
}

.d4 {
  transition-delay: 0.40s;
}

.d5 {
  transition-delay: 0.50s;
}


/* ============================================================
 INTRO SECTION (identical pattern to about.php)
 ============================================================ */

.about-intro {
  padding: 100px 0 70px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-intro-left h2 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-intro-left p {
  color: var(--steel);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 16px;
}

.anim-underline {
  position: relative;
  display: inline-block;
}

.anim-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s 0.8s ease;
}

.anim-underline.in::after {
  transform: scaleX(1);
}

.about-visual-card {
  background: linear-gradient(160deg, var(--blue-deep), var(--blue) 70%, #34B6D9);
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  animation: floatUpDown 5s ease-in-out infinite;
  box-shadow: 0 30px 60px rgba(14, 111, 146, 0.35);
}

.about-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 20px 20px;
}

.about-visual-card img {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  width: 100%;
}

/* ============================================================
 SECTION LABEL (reused for every content block below)
 ============================================================ */

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  overflow: hidden;
}

.section-label h2 {
  font-size: 1.70rem;
  white-space: nowrap;
}

.section-label .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s 0.3s ease;
}

.section-label.in .line {
  transform: scaleX(1);
}

/* ============================================================
 SERVICES / WHY BUY — text blocks + checklist
 ============================================================ */

.services-section {
  padding: 20px 0 10px;
}

.services-section.alt {
  background: linear-gradient(180deg, #fff, var(--paper));
  padding: 100px 0;
}

.services-section p.lede,
.services-section p.closing {
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 820px;
  margin-bottom: 10px;
}

.services-section p.closing {
  margin-top: 32px;
  margin-bottom: 0;
}

.services-section p.lead-in {
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 22px;
  font-size: 1.05rem;
}

.check-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  max-width: 920px;
}

.check-grid li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
}

.check-grid li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

/* ============================================================
 AVQ-STYLE CARD GRID (Why Choose Our Service)
 ============================================================ */

.avq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.avq-card {
  background: #fff;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.avq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.avq-card:hover::before {
  transform: scaleX(1);
}

.avq-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(24, 156, 203, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.avq-card:hover::after {
  opacity: 1;
}

.avq-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(33, 33, 36, 0.10);
}

.icon-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(24, 156, 203, 0.08);
  border: 1px solid rgba(24, 156, 203, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  animation: borderPulse 3s ease-in-out infinite;
}

.avq-card:hover .icon-ring {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(10deg) scale(1.08);
  animation: none;
}

.icon-ring svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  transition: color 0.35s ease;
}

.avq-card:hover .icon-ring svg {
  color: #fff;
}

.avq-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--ink);
}

.avq-card p {
  font-size: 0.93rem;
  color: var(--steel);
  line-height: 1.8;
  margin: 0;
}



.prod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1.5px solid var(--line);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease,
    transform 0.3s ease, box-shadow 0.3s ease;
}

.prod-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  /*background: linear-gradient(90deg, var(--blue-deep), var(--blue));*/
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  border-radius: 30px;
  z-index: 0;
}

.prod-tag:hover::before {
  transform: scaleX(1);
}

.prod-tag:hover {
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(24, 156, 203, 0.25);
}

.prod-tag span {
  position: relative;
  z-index: 1;
}

/* ============================================================
 GALLERY — equal-height cards, images never cropped
 ============================================================ */

.gallery-section {
  padding: 0 0 110px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gallery-frame {
  height: 210px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(33, 33, 36, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-frame:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 22px 42px rgba(33, 33, 36, 0.12);
}

/* object-fit: contain — full image always visible, never cropped */
.gallery-frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
 CONTACT CTA BUTTONS
 ============================================================ */

.contact-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-wa-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.btn-wa-solid:hover {
  background: #1fb955;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.btn-wa-solid svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.btn-outline-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.btn-outline-call:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-call svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ============================================================
 RESPONSIVE
 ============================================================ */

@media (max-width: 991px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual-card {
    animation: none;
  }

  .avq-grid {
    grid-template-columns: 1fr;
  }

  .about-banner h1 {
    font-size: 2.2rem;
  }

  .banner-orbit,
  .banner-orbit-2 {
    display: none;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-frame {
    height: 150px;
  }

  .services-section,
  .services-section.alt {
    padding: 70px 0;
  }
}



/*****  Product Drop Pages *****/
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  overflow: hidden;
}

.section-label h2 {
  font-size: 1.70rem;
  white-space: nowrap;
}

.section-label .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s 0.3s ease;
}

.section-label.in .line {
  transform: scaleX(1);
}


.d1 {
  transition-delay: 0.10s;
}

.d2 {
  transition-delay: 0.20s;
}

.d3 {
  transition-delay: 0.30s;
}

.d4 {
  transition-delay: 0.40s;
}

.d5 {
  transition-delay: 0.50s;
}


.product-copy {
  padding: 100px 0 0;
}

/* .product-copy .copy-inner {
  max-width: 880px;
} */

.product-copy p {
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 18px;
}


.product-copy .section-label {
  margin: 46px 0 30px;
}

.product-copy .section-label h2 {
  font-size: 1.4rem;
}

/* ---------- Feature / Benefit checklist ---------- */
.check-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}

.check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.65;
}

.check-grid li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex-shrink: 0;
}

.product-showcase {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff, var(--paper));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.product-card {
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 0;
}

/* top bar sweep — identical treatment to .avq-card::before */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(33, 33, 36, 0.12);
}

/* ---------- Product image ----------
   Fixed equal height for every card 
   */
.product-card-img {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, #EEF3F4, #DCE7EA);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-body {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

/* WhatsApp CTA — brand green kept regardless of site palette,
   since it's a recognised universal WhatsApp affordance */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #25D366;
  color: #ffffff !important;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  padding: 13px 18px;
  border: none;
  border-radius: 30px;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-whatsapp i {
  font-size: 1.1rem;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1ebe5b;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.42);
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .check-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card-img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .product-copy {
    padding-top: 70px;
  }

  .product-showcase {
    padding: 60px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    padding: 18px 16px;
  }

  .product-card-img {
    height: 240px;
  }
}

/******* Cashew Sorting ********/

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .check-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-card-img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .product-copy {
    padding-top: 70px;
  }

  .product-showcase {
    padding: 60px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-body {
    padding: 18px 16px;
  }

  .product-card-img {
    height: 240px;
  }
}

  /* ============================================================
     NEW — MACHINE HERO IMAGE 
     ============================================================ */
  .machine-hero {
    padding: 40px 0 10px;
  }

  .machine-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .machine-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
  }

  .sample-quad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sample-quad figure {
    margin: 0;
    text-align: center;
  }

  .sample-quad figcaption {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .sample-quad img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
  }

  @media (max-width: 767px) {
    .machine-hero-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ============================================================
     NEW — SPECIFICATION TABLE
     ============================================================ */
  .spec-table-wrap {
    overflow-x: auto;
    margin: 24px 0 10px;
  }

  table.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
  }

  table.spec-table thead th {
    background: #3aa7b0;
    color: #fff;
    font-weight: 600;
    padding: 12px 10px;
    text-align: center;
    font-size: 0.92rem;
  }

  table.spec-table tbody td {
    text-align: center;
    padding: 12px 10px;
    border: 1px solid #e6e6e6;
    font-size: 0.92rem;
  }

  table.spec-table tbody tr:nth-child(odd) {
    background: #f7fbfb;
  }

  .spec-note {
    font-size: 0.85rem;
    color: #777;
    margin-top: 10px;
    font-style: italic;
  }

  /* ============================================================
     NEW — SALIENT FEATURES 
     ============================================================ */
  .salient-features {
    padding: 50px 0;
  }

  .salient-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #1c3f4a;
    margin-bottom: 40px;
  }

  .salient-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
  }

  .salient-copy {
    max-width: 190px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .salient-copy.left {
    text-align: right;
  }

  .salient-copy.right {
    text-align: left;
  }

  .salient-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid #3aa7b0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
  }

  .salient-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .salient-captions-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
  }

  @media (max-width: 767px) {
    .salient-row {
      flex-direction: column;
    }

    .salient-copy.left,
    .salient-copy.right {
      text-align: center;
      max-width: 260px;
    }

    .salient-captions-bottom {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* ============================================================
     NEW — ROBOTIC INTELLIGENT (Ri) TECH SECTION 
     ============================================================ */
  .ri-tech-section {
    background: #f5fafa;
    padding: 60px 0;
  }

  .ri-tech-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .ri-tech-copy h2 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #17323b;
  }

  .ri-tech-copy p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5a5f;
    margin-bottom: 16px;
  }

  .ri-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
  }

  .ri-badge .ri-letter {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3aa7b0;
  }

  .ri-badge .ri-labels {
    font-size: 0.85rem;
    line-height: 1.3;
    border-left: 2px solid #3aa7b0;
    padding-left: 10px;
  }

  .ri-tagline {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 18px 0;
  }

  .ri-tech-copy ul {
    padding-left: 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a5a5f;
  }

  .ri-accuracy-circle {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(#3aa7b0 0deg 356deg, #e6e6e6 356deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ri-accuracy-circle-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .ri-accuracy-circle-inner strong {
    font-size: 1.6rem;
    color: #17323b;
  }

  .ri-accuracy-circle-inner span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #777;
  }

  @media (max-width: 991px) {
    .ri-tech-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ============================================================
     Gallery
     ============================================================ */
  .sample-gallery-section {
    padding: 50px 0;
  }

  .sample-gallery-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #17323b;
    margin: 30px 0 16px;
  }

  .sample-gallery-row {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
  }

  .sample-gallery-row.size-row {
    grid-template-columns: repeat(12, 1fr);
  }

  .sample-gallery-row figure {
    margin: 0;
    text-align: center;
  }

  .sample-gallery-row img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    background: #f0f0f0;
  }

  .sample-gallery-row figcaption {
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 6px;
    color: #333;
  }

  @media (max-width: 991px) {
    .sample-gallery-row,
    .sample-gallery-row.size-row {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 576px) {
    .sample-gallery-row,
    .sample-gallery-row.size-row {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  
  




.spec-table-section {
    padding: 60px 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* forces horizontal scroll on small screens instead of squishing */
    font-size: 15px;
}

.spec-table thead th {
    background: #2c3e50;
    color: #fff;
    padding: 14px 16px;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}

.spec-table tbody td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #e5e8ec;
    color: #333;
}

.spec-table tbody tr:nth-child(even) {
    background: #f8f9fb;
}

.spec-table tbody tr:hover {
    background: #eef2f6;
}

.spec-note {
    margin-top: 14px;
    font-size: 13px;
    color: #777;
    font-style: italic;
}

/* Tablets */
@media (max-width: 768px) {
    .spec-table {
        font-size: 14px;
    }

    .spec-table thead th,
    .spec-table tbody td {
        padding: 10px 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .spec-table {
        font-size: 13px;
    }

    .spec-table thead th,
    .spec-table tbody td {
        padding: 8px 10px;
    }
}