@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary: #007d7f;
  --primary-dark: #007d7f;
  --primary-soft: #e5f4f4;
  --red: #ee3428;
  --ink: #063b3b;
  --text: #5d7072;
  --muted: #8a9b9d;
  --line: #d4e6e5;
  --white: #ffffff;
  --light: #f5f8f9;
  --shadow: 0 20px 45px rgba(12, 73, 78, 0.12);
  --soft-shadow: 0 12px 32px rgba(12, 73, 78, 0.09);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --heading-font: "Archivo", sans-serif;
  --body-font: "Open Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--heading-font);
  line-height: 1.05;
}

a,
button,
.primary-btn,
.secondary-btn,
.quote-btn,
.site-nav,
.product-body a,
.blog-link,
.footer-grid a,
.socials a,
.faq-accordion .accordion-button {
  font-family: var(--body-font);
  font-weight: 700;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.section-space {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--red);
  font-family: var(--body-font); 
  font-size: 13px;
  font-weight: 700;
    letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading {
      width: min(100%, 1174px);
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.about-heading h2 {
  color: var(--primary);
      font-size: 42px;
    font-weight: 700;
}
.section-heading1 h2,
.about-heading1 h2 {
  color:  #fff;
  font-size: 42px;
  font-weight: 700;
}

.section-heading p {
  margin-top: 15px;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.primary-btn,
.secondary-btn,
.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
      min-height: 42px;
    border-radius: 8px;
    font-size: 13px;
  font-family: var(--body-font);
  font-weight: 700; 
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.primary-btn {
  padding: 0 28px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
}

.primary-btn:hover {
  color: var(--white);
  background: var(--primary);
     border: 1px solid #fff;
  box-shadow: 0 12px 22px rgba(0, 125, 127, 0.2);
}

.primary-btn.small {
  min-height: 42px;
  padding: 0 22px;
  font-size: 12px;
}

.primary-btn.full {
  width: 100%;
}

.secondary-btn {
  padding: 0 50px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.secondary-btn:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #007d7fb8;
  backdrop-filter: blur(11px);
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.preloader img {
  width: 120px;
  animation: preloaderPulse 1.1s var(--ease) infinite alternate;
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: absolute;
  top: 76px;
  right: 0;
  left: 0;
  z-index: 20;
  transition: top 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  position: fixed;
  top: 0; 
      background: #007d7fc2;
    backdrop-filter: blur(21px);
}


.header-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 92px;
  padding-right: 70px;
  padding-left: 70px;
}
.is-scrolled .header-inner { 
  padding-right: 0px;
  padding-left: 0px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: 150px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1 1 auto;
  color: var(--white);
  font-size: 14px;
     font-weight: 500;
    letter-spacing: 0.2px; 
  /* text-transform: uppercase; */
  font-family: var(--body-font);
}

.site-nav > a,
.nav-item > a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.3s var(--ease);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-family: var(--body-font);
  cursor: pointer;
}

.site-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav > a:hover,
.site-nav > a.active,
.nav-item > a:hover,
.nav-item > a.active {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a.active::after,
.nav-item > a:hover::after,
.nav-item > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item {
  position: relative;
}

.nav-item > a .dropdown-icon {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.25s var(--ease);
}

.nav-item:hover > a .dropdown-icon {
  transform: rotate(180deg);
}

.nav-item:hover > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown {
  position: absolute;
  top: calc(100% + 11px);
    left: 160px; 
  transform: translateX(-50%) translateY(10px);
  min-width: 326px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  padding: 6px 0;
  border-top: 3px solid #008c8d;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  z-index: 100;
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 10%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 101;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 5px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: normal;
  transition: background 0.2s;
  font-family: var(--body-font);
  border-left: 3px solid transparent;
}

.dropdown a:hover {
  background: #e6f2f2;
  color: #008c8d;
  border-left-color: #008c8d;
}

.dropdown a::after,
.sub-dropdown a::after {
  display: none !important;
}

.dropdown-item {
  position: relative;
}

.dropdown-item.has-sub-dropdown {
  /* border-bottom: 1px solid #eef2f4; */
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.dropdown-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 15px;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--body-font);
  border-left: 3px solid transparent;
  transition: background 0.2s;
}

.dropdown-item > a:hover {
  background: #e6f2f2;
  color: #008c8d;
  border-left-color: #008c8d;
}

.dropdown-item > a .sub-dropdown-icon {
  font-size: 10px;
  color: #999;
  transition: transform 0.25s var(--ease);
}

.dropdown-item:hover > a .sub-dropdown-icon {
  transform: rotate(180deg);
}

.sub-dropdown {
  position: absolute;
  top: -6px;
  left: calc(100% + 4px);
  min-width: 250px;
  background: #fff;
  border-radius: 14px;
  padding: 6px 0;
  border-top: 3px solid #008c8d;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  z-index: 101;
}

.sub-dropdown::before {
  content: "";
  position: absolute;
  top: 14px;
  left: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #fff;
  z-index: 102;
}

.dropdown-item:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
}

.sub-dropdown a {
  display: block;
  padding: 7px 18px;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: var(--body-font);
  border-left: 3px solid transparent;
}

.sub-dropdown a:hover {
  background: #e6f2f2;
  color: #008c8d;
  border-left-color: #008c8d;
}

.mobile-nav-brand,
.mobile-nav-contact {
  display: none;
}

.quote-btn {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
}

.quote-btn:hover {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 10px 18px rgba(0, 125, 127, 0.22);
  border: 1px solid #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  position: relative;
  padding: 50px 0 0;
  overflow: hidden;
  background: url("../img/Banner-bg.webp") center top/100% auto no-repeat;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 34%;
  pointer-events: none;
  background: url("../img/Banner-element.webp") center bottom/100% auto no-repeat;
}

.hero-panel {
  position: relative;
  z-index: 1;
  min-height: 780px;
  padding: 220px 70px 170px;
  overflow: hidden;
  border-radius: 58px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #007d7fb8;
  backdrop-filter: blur(11px);
}

.hero-content,
.hero-machine {
  z-index: 3;
}

.hero-content {
  position: relative;
  width: 58%;
  max-width: 880px;
}

.hero-content h1 {
  max-width: 860px;
  color: var(--white);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.hero-content p {
  width: min(100%, 780px);
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 28px;
}

.hero-machine {
     position: absolute;
    right: 8px;
    bottom: 188px;
    width: 41%;
    min-width: 480px;

}

.hero-machine img {
  width: 100%;
  /* filter: drop-shadow(0 32px 38px rgba(0, 47, 48, 0.27)); */
  /* animation: machineFloat 5s var(--ease) infinite alternate; */
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 0.86fr 0.86fr;
  gap: 38px 34px;
  align-items: end;
}

.about-image {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.about-heading {
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: center;
  padding-top: 22px;
}

.about-top-img {
  width: 100%;
  height: 170px;
  border-radius: 24px;
  object-fit: cover;
}

.about-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
}

.about-copy {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
}

.about-copy p {
  color: var(--text);
 font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}

.about-copy p + p {
  margin-top: 14px;
}

.about-copy .primary-btn {
  margin-top: 24px;
}

.about-media {
  grid-column: 2;
  grid-row: 2;
}

.video-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 255px;
  padding: 0;
  overflow: hidden;
  border: 0;
      border-radius: 40px;
        background: #007d7fb8;
    backdrop-filter: blur(11px);

}

.video-card img {
  width: 100%;
  height: 100%;
  min-height: 255px;
  object-fit: cover;
  opacity: 0.54;
  transition: transform 0.7s var(--ease);
}

.video-card:hover img {
  transform: scale(1.06);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.08), 0 0 34px rgba(255, 255, 255, 0.82), 0 0 58px rgba(0, 197, 189, 0.38);
  filter: none;
  transform: translate(-50%, -50%);
}

.play-icon::before {
  content: "";
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--primary);
}

.stats-card {
  grid-column: 3;
  grid-row: 2;
  display: grid;
  gap: 0;
  padding: 35px;
  border-radius: 40px;
  background: var(--primary);
  color: var(--white);
  min-height: 356px;
}

.stat-item {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 0px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-item:first-child {
  padding-top: 0;
}

.stat-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat-item img {
  width: 55px;
  height: auto;
  object-fit: contain;
  grid-row: 1 / span 2;
}

.stat-item span {
  display: block;
  margin-bottom: -10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  grid-column: 2;
  grid-row: 1;
}

.stat-item strong {
  display: block;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 24px;
  overflow-wrap: anywhere;
  line-height: 1.1;
  grid-column: 2;
  grid-row: 2;
}

.products-section {
  padding-top: 8px;
  padding-bottom: 30px;
}

.factory-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 18px;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
}

.product-card {
  grid-column: span 2;
  overflow: visible;
  border: 0;
  border-radius: 8px;
  background: transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08); */
}

.product-card.wide {
  grid-column: span 3;
}

.product-img {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7e8;
}

.product-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 90px; 
  margin-top: -20px;
  padding: 22px;
  border: 1px solid #e5edf4;
  border-radius: 22px;
  background: #f5f6fa;
}

.product-body h3 {
  color: var(--primary);
     font-size: 21px;
    font-weight: 700;
}

.product-body p {
  margin-top: 15px;
  color: var(--text);
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
      margin-bottom: 15px;


}

.product-body a {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--red);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
}

.product-body a i {
  margin-left: 9px;
  font-size: 13px;
  transition: transform 0.3s var(--ease);
}

.product-body a:hover i {
  transform: translateX(4px);
}

.factory-bg-wrap {
  --factory-bg-x: center;
  --factory-bg-y: -100px;
  --factory-bg-size: cover;
  position: relative;
  overflow: hidden;
  background-image: url("../img/values-bg.webp");
  background-position: var(--factory-bg-x) var(--factory-bg-y);
  background-size: var(--factory-bg-size);
  background-repeat: no-repeat;
  /* background: linear-gradient(rgba(247, 252, 252, 0.78), rgba(247, 252, 252, 0.9)), url("../img/values-bg.webp") center top/cover no-repeat; */
}
.manufacturing-bg-wrap {
  --factory-bg-x: center;
  --factory-bg-y: -100px;
  --factory-bg-size: cover;
  position: relative;
  overflow: hidden;
  background-image: url("../img/manufacturing-bg.webp");
  background-position: var(--factory-bg-x) var(--factory-bg-y);
  background-size: var(--factory-bg-size);
  background-repeat: no-repeat;
  /* background: linear-gradient(rgba(247, 252, 252, 0.78), rgba(247, 252, 252, 0.9)), url("../img/values-bg.webp") center top/cover no-repeat; */
}

.values-section {
  position: relative;
  padding-bottom: 68px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.values-grid1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 300px;
}

.value-card {
  display: grid;
  gap: 17px;
  min-height: 174px;
  padding: 24px 34px 25px;
     border: 1px solid rgb(0 125 127);
    border-radius: 20px;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(10px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease);
}
.value-card1 {
  display: grid;
  gap: 17px;
  min-height: 174px;
  padding: 24px 34px 25px;
     border: 1px solid rgb(0 125 127);
    border-radius: 20px;
    background: #fff;
    backdrop-filter: blur(10px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 12px 38px rgba(0,125,127,0.12);
}

.value-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgb(6 116 113 / 31%);
}
.value-head1 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(6 116 113 / 31%);
}

.value-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
      height: 1px;
    background: #ee342896;
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}

.value-card:hover .value-head::after {
  width: 100%;
  left: 0;
}

.value-card img {
  width: 52px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

.value-card:hover img {
  transform: scale(1.15) rotate(-8deg);
}

.value-card h3 {
  color: var(--ink);
    font-size: 22px;
    font-weight: 700;
}

.value-card1 h3 {
    color: #0a7872;
    font-size: 22px;
    font-weight: 700;
}

.value-card p {
      color: var(--text);
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
}

.value-card strong {
  color: var(--ink);
  font-weight: 700;
}

.value-card em {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink);
}

.exhibition-section {
  padding-top: 78px;
  padding-bottom: 98px;
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.exhibition-card {
  display: block;
  border-radius: 8px;
  background: var(--primary-dark);
  color: inherit;
  text-decoration: none;
}

.exhibition-card .exhibition-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.exhibition-card .exhibition-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 78, 80, 0.85), transparent 50%);
}

.exhibition-card .exhibition-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.exhibition-card:hover .exhibition-img img {
  transform: scale(1.06);
}

.exhibition-card .exhibition-img span {
  position: absolute;
  right: 20px;
  bottom: 19px;
  left: 20px;
  z-index: 1;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.exhibition-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.4;
  padding: 16px 20px 20px;
}

.clients-section {
  padding: 16px 0 100px;
}

.client-strip {
  border: 1px solid #0d84864a;
  border-radius: 4px;
  background: #f4f5f6;
}

.client-strip .slick-track {
  display: flex;
  align-items: center;
}

.client-slide {
  height: 120px;
  outline: none;
}

.client-slide:nth-child(even) {
  background: var(--white);
}

.client-slide img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 28px;
  object-fit: contain;
  filter: saturate(0.96);
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.client-slide:hover img {
  transform: translateY(-4px);
  filter: saturate(1.1);
}

.client-strip .slick-list {
  overflow: hidden;
}

.testimonials-section {
  padding-top: 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.testimonial-card {
  position: relative;
  padding: 34px 34px 30px;
     border: 1px solid rgb(0 125 127);
    border-radius: 15px;
    background: #e6f2f2;
}

.quote-mark {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 900;
  line-height: 0.8;
}

.testimonial-card p {
  color: #6c7b9b;
    font-size: 15px;
    font-style: italic;
    font-weight: 600;
}

.author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
}

.author span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #1ed6c5;
  background: #183059;
  font-family: var(--heading-font);
  font-size: 12px;
  font-weight: 900;
}

.author strong {
      display: block;
    color: #007d7f;
    font-family: var(--heading-font);
    font-size: 14px;
    margin-bottom: -9px;
}

.author small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.blog-section {
  padding-top: 0;
}

.blog-section .section-heading {
  width: 100%;
}

.blog-section .section-heading h2 {
  white-space: nowrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #edf2f3;
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.blog-card:hover {
  border-color: rgba(0, 125, 127, 0.22);
  box-shadow: 0 22px 48px rgba(5, 65, 70, 0.13);
}

.blog-image {
  display: block;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-body {
  padding: 24px;
}

.blog-body span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-body h3 {
  color: var(--primary);
font-size: 21px;
    font-weight: 700;
}

.blog-body p {
  margin-top: 12px;
  color: #6f8084;
  font-size: 14px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--red);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
}

.blog-link i {
  margin-left: 9px;
  font-size: 13px;
  transition: transform 0.3s var(--ease);
}

.blog-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   BLOG DETAIL PAGE
   ========================================================================== */

.blog-detail {
  padding: 70px 0 90px;
}
.blog-detail .blog-detail-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 36px;
}
.blog-detail h1 {
  color: var(--primary-dark);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.blog-detail .blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
  color: #6f8084;
  font-size: 14px;
}
.blog-detail .blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-detail .blog-meta span i {
  color: var(--red);
}
.blog-detail .blog-content h2 {
  color: var(--primary-dark);
  font-size: 26px;
  font-weight: 700;
  margin: 36px 0 16px;
}
.blog-detail .blog-content h3 {
  color: var(--primary-dark);
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.blog-detail .blog-content p {
  color: #4a5a5e;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.blog-detail .blog-content ul,
.blog-detail .blog-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-detail .blog-content li {
  color: #4a5a5e;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.blog-detail .blog-content strong {
  color: var(--primary-dark);
}
.blog-detail .blog-divider {
  height: 1px;
  background: #e4edef;
  margin: 48px 0;
}
.blog-nav-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-nav-links a {
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.blog-nav-links a:hover {
  color: var(--primary-dark);
}
.blog-detail .blog-content blockquote {
  border-left: 4px solid var(--red);
  padding: 18px 24px;
  margin: 28px 0;
  background: #f8fbfc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4a5a5e;
  font-size: 17px;
  line-height: 1.7;
}
.blog-detail .blog-content img {
  width: 100%;
  border-radius: 10px;
  margin: 24px 0;
}
.blog-detail .blog-content .blog-highlight-box {
  background: #eef9f8;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 28px 0;
  border: 1px solid #d4eae8;
}
.blog-detail .blog-content .blog-highlight-box h4 {
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-detail .blog-content .blog-highlight-box p {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .blog-detail h1 { font-size: 28px; }
  .blog-detail .blog-content h2 { font-size: 22px; }
  .blog-detail .blog-content h3 { font-size: 18px; }
  .blog-detail .blog-content p,
  .blog-detail .blog-content li { font-size: 15px; }
}

.map-section {
  overflow: hidden;
}
.map-container {
  width: 100%;
}
.map-container iframe {
  display: block;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfc 0%, #eef9f8 100%);
}
.page-faqs .faq-section {
  overflow: visible;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.faq-layout .section-heading {
  margin-bottom: 0;
  position: sticky;
  top: 120px;
  align-self: start;
  z-index: 1;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(0, 125, 127, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
}

.faq-accordion .accordion-button {
  min-height: 66px;
  color: var(--ink);
  background: transparent;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 700;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(0, 125, 127, 0.08);
  box-shadow: none;
}

 

.faq-accordion .accordion-body {
  padding: 13px 20px 13px;
  color: #6f8084;
  font-size: 14px;
}

.contact-section {
  padding-top: 64px;
  padding-bottom: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 86px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 22px;
  max-width: 560px;
}

.address-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d7e9e8;
}

.address-block {
  padding-bottom: 22px;
  border-bottom: 1px solid #d7e9e8;
}

.address-row .address-block {
  padding-bottom: 0;
  border-bottom: 0;
}

.address-block h3 {
  margin-bottom: 11px;
  color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
  text-transform: uppercase;
}

.small-block h3 {
      color: var(--ink);
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: -10px;

}

.address-block p {
  max-width: 760px;
  color: #7d8ca5;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
}

.address-block ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 30px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  color: #7d8ca5;
  font-size: 14px;
  font-weight: 600;
}

.address-block li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.address-block a {
  color: inherit;
  font-family: var(--body-font);
  font-weight: 600;
}

.address-block a:hover {
  color: var(--primary);
}

.address-block li i {
  color: var(--primary);
  font-size: 14px;
}

.small-block ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enquiry-form {
  width: min(100%, 600px);
  justify-self: end;
  padding: 34px 36px;
  border: 1px solid rgba(0, 125, 127, 0.5);
  border-radius: 16px;
  background: #eaf8f7;
}

.enquiry-form h3 {
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}
.enquiry-form .primary-btn {
  min-height: 38px;
  padding: 0 18px;
  font-size: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
     color: #000;
    font-family: var(--body-font);
    font-size: 13px;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  min-height: 43px;
  padding: 0 16px;
  color: var(--text);
  border: 1px solid rgba(0, 125, 127, 0.12);
  border-radius: 6px;
  outline: 0;
  background: rgba(255, 255, 255, 0.76);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.enquiry-form textarea {
  min-height: 110px;
  padding-top: 13px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 125, 127, 0.12);
}

.site-footer {
  background: #f5f6fa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 0.72fr 1fr;
  gap: 86px;
  padding: 74px 0 58px;
}

.footer-about img {
  width: 220px;
  max-width: 100%;
  margin-bottom: 50px;
}

.footer-grid h4 {
      margin-bottom: 24px;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-family: var(--body-font);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin-bottom: 10px;
  color: #132b4e;
  font-size: 14px;
  line-height: 1.45;
      font-weight: 600;
}

.footer-about p {
      max-width: 350px;
    color: #4e5868;
    line-height: 1.6;
    font-weight: 500;
    font-size: 14px;
}

.footer-grid a {
  font-family: var(--body-font);
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

.footer-grid a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 20px;
  border-top: 1px solid #cfe2e5;
}

.footer-bottom p {
  color: #132b4e;
  font-size: 14px;
  font-weight: 600;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--primary);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.socials a i {
  color: #fff;
}

.socials a:hover {
  background: var(--red);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 24px;
}

.video-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 39, 40, 0.78);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 28px;
  line-height: 1;
}

.video-placeholder {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--primary);
}

.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.video-placeholder p {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 9;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  color: var(--white);
  background: #25d366;
  font-size: 20px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.floating-whatsapp:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-3px);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 4px;
  color: var(--white);
  background: var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease);
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

[data-reveal],
.reveal-up,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal],
.reveal-up {
  transform: translateY(34px);
}

.reveal-scale {
  transform: scale(0.94);
}

[data-reveal].is-visible,
.reveal-up.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes preloaderPulse {
  from {
    transform: scale(0.95);
    opacity: 0.65;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes machineFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-16px);
  }
}
.highlight-banner{
    width:100%;
    background:#e9f6f7;
    border-left:6px solid #007b7f;
    border-radius:8px;
    padding:16px 25px;
    margin:40px 0;
    box-sizing:border-box;
}

.highlight-banner span{
    display:block;
    color:#008a8f;
    font-size:19px;
    /* max-width: 622px;  */
    font-style:italic;
    text-transform:uppercase;
    line-height:1.3;
    letter-spacing:0.5px;
}

.view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  width: 92%;
  margin-left: 60px;
}

.timeline-sticky {
  position: sticky;
  top: 130px;
}

.timeline-sticky .section-label {
  margin-bottom: 13px;
}

.timeline-sticky h2 {
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}

.timeline-sticky p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  
}

.timeline-content {
  position: relative;
}

.timeline-track {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--line);
  border-radius: 2px;
  z-index: 0;
}

.timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #007d7f91;;
  border-radius: 2px;
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-left: 76px;
  margin-bottom: 56px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}


.timeline-dot {
  position: absolute;
  left: 18px;
  top: 110px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  z-index: 2;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  cursor: default;
  box-shadow: 0 0 0 4px rgba(238, 52, 40, 0.15);
}

.timeline-dot:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px rgba(238, 52, 40, 0.2);
}

.timeline-card {
  background: #e6f2f2;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.timeline-card h3 {
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-year {
  display: block;
  color: var(--red);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.timeline-subtitle {
  display: block;
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-divider {
  position: relative;
  height: 1px;
  margin: 16px 0;
  background: var(--line);
  overflow: hidden;
}

.timeline-divider::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: #ee342896;
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}

.timeline-card:hover .timeline-divider::after {
  width: 100%;
  left: 0;
}

.timeline-card p {
  color: var(--text);
      font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.factory-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:50px;
    
}
.gallery-section {
  margin-top: -300px;
}
.page-manufacturing-unit .gallery-section {
  margin-top: 0;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.4s ease;
}

.gallery-item:hover img{
    transform:scale(1.05);
}


.about-banner {
  position: relative;
  background: url("../img/about-banner.webp") center center / 100% auto no-repeat;
  display: flex;
  align-items: center;
  padding: 240px 0 160px;
}
.about-banner::after {
  display: none;
}
.about-banner-content {
  text-align: left;
  margin-left: 60px;
}
.about-breadcrumb {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.about-breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.about-breadcrumb .sep {
  margin: 0 8px;
}
.about-banner-content h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 900; 
  font-family: "Archivo", sans-serif;
}
.about-header {
  top: 32px;
}
.about-page-grid {
  display: block;
  width: 92%;
  margin-left: 60px;
}
.about-page-grid .about-heading {
  margin-bottom: 24px;
}
.about-page-grid .about-heading .section-label {
  margin-bottom: 8px;
}
.about-page-grid .about-heading h2 {
  max-width: 100%;
}
.about-page-grid .about-copy {
  width: 100%;
}
.about-page-grid .about-copy p {
  max-width: 100%;
}
.about-bottom-row {
  display: flex;
  gap: 34px;
  margin-top: 40px;
}
.about-bottom-row .about-bottom-images {
  flex: 1;
}
.about-bottom-row .about-bottom-images img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.about-bottom-row .stats-card {
  flex: 1;
  display: grid;
  gap: 0;
  padding: 35px;
  border-radius: 40px;
  background: url("../img/about-img-2.webp") center center / cover no-repeat;
  color: #fff;
}
.about-bottom-row .stat-item {
  display: grid;
  grid-template-columns: 95px 1fr;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.about-bottom-row .stat-item:first-child {
  padding-top: 0;
}
.about-bottom-row .stat-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.about-bottom-row .stat-item img {
  width: 55px;
  grid-row: 1 / span 2;
}
.about-bottom-row .stat-item span {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  grid-column: 2;
  grid-row: 1;
}
.about-bottom-row .stat-item strong {
  color: #fff;
  font-family: "Archivo", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  grid-column: 2;
  grid-row: 2;
}
.values-grid1 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
  margin-bottom: 300px;
}
.value-card1 {
  min-height: 174px;
  padding: 24px 34px 25px;
  border: 1px solid rgb(0 125 127);
  border-radius: 20px;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.4s var(--ease);
}
.value-head1 {
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(6 116 113 / 31%);
}
.factory-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 50px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,.08);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   PRODUCT TECH DATA - Tabs & Spec Tables
   ========================================================================== */

.sub-title {
  color: #df4d35;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
      margin-bottom: 10px;
}
.main-title {
    font-size: 42px;
    color: #007f83;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}
.description {
  max-width: 700px;
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 35px;
}
.tab-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}
.tab-btn {
  width: 150px;
  height: 55px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #007f83;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 127, 131, 0.15);
}
.tab-btn.active {
  background: #007f83;
  color: #fff;
  border-color: #007f83;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: fadeSlideUp 0.5s ease forwards;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.content-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 20px;
  align-items: center;
}
.image-box {
  overflow: hidden;
  border-radius: 20px;
}
.image-box img {
  width: 92%;
  border-radius: 20px;
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.image-box:hover img {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.info h2 {
     font-size: 42px;
    color: #007f83;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}
.info p {
    
  margin-bottom: 30px;
  color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
}
.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #007f9230;
}
.spec-table td {
  padding: 15px 25px;
  border: 1px solid #007f9230;
  font-size: 15px;
}
.spec-table tr td:first-child {
  border-left: 0;
}
.spec-table tr td:last-child {
  border-right: 0;
}
.spec-table tr:first-child td {
  border-top: 0;
}
.spec-table tr:last-child td {
  border-bottom: 0;
}
.spec-table tr:nth-child(odd) {
  background: #eef8f8;
}
.spec-table td:first-child {
  width: 55%;
  color: #007f83;
  font-weight: 700;
  text-transform: uppercase;
}
.spec-table td:last-child {
  text-align: left; 
  color: #6e7f93;
  font-weight: 600;
}
@media(max-width: 991px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  .main-title {
    font-size: 40px;
  }
  .info h2 {
    font-size: 42px;
  }
}
@media(max-width: 600px) {
  .tab-buttons {
    flex-wrap: wrap;
  }
  .tab-btn {
    width: 100%;
  }
  .main-title {
    font-size: 32px;
  }
  .info h2 {
    font-size: 34px;
  }
}

/* ==========================================================================
   WHY PMS SERIES - Feature Grid
   ========================================================================== */

.note-box {
  display: flex;
  align-items: center;
  background: #fdeeee;
  border-left: 6px solid #ef3d35;
  border-radius: 10px;
  padding: 18px 30px;
  margin-bottom: 60px;
}
.note-box p {
      color: #e5574d;
    font-size: 16px;
    font-style: italic;
}
.note-box strong {
  font-weight: 800;
}
.sub-heading {
  color: #ef3d35;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 18px;
}
.main-heading {
      font-size: 42px;
    color: #007f83;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #d3e5e8;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #edf8f9;
  min-height: 95px;
  padding: 30px;
  border-right: 1px solid #d3e5e8;
  border-bottom: 1px solid #d3e5e8;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 125, 131, 0.12);
  position: relative;
  z-index: 2;
}
.feature-item:nth-child(2),
.feature-item:nth-child(4) {
  border-right: none;
}
.feature-item:nth-child(3),
.feature-item:nth-child(4) {
  border-bottom: none;
}
.feature-grid.full-last .feature-item:last-child {
  grid-column: 1 / -1;
  border-right: none;
}
.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #007d83;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: transform 0.4s ease, background 0.4s ease;
}
.feature-item:hover .icon {
  transform: scale(1.15) rotate(-6deg);
  background: #ef3d35;
}
.feature-item h4 {
  font-size: 16px;
  color: #66789d;
  font-weight: 700;
  text-transform: uppercase;
}
@media(max-width: 991px) {
  .main-heading {
    font-size: 42px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none !important;
  }
  .feature-item:last-child {
    border-bottom: none;
  }
}
@media(max-width: 600px) {
   
  .note-box {
    padding: 15px;
  }
  .note-box p {
    font-size: 15px;
  }
  .feature-item {
    padding: 20px;
  }
  .feature-item h4 {
    font-size: 18px;
  }
}


.relatsed {
  padding-top: 80px;
  padding-bottom: 60px;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
   padding-top: 0px;
   padding-bottom: 80px;
}
.cta-banner {
  position: relative;
  background: url("../img/CTA-banner.webp") center center / cover no-repeat;
  border-radius: 30px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.cta-banner:hover {
  transform: scale(1.008);
  box-shadow: 0 16px 40px rgba(0, 125, 131, 0.18);
}
.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 70px;
  gap: 40px;
}
.cta-text {
  max-width: 650px;
}
.cta-text h2 {
  color: #fff; 
    font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-buttons .primary-btn,
.cta-buttons .secondary-btn {
  min-width: 210px;
  justify-content: center;
}
.cta-buttons .primary-btn:hover {
  border-color: #fff;
  transform: scale(1.04);
}
.cta-buttons .secondary-btn:hover {
  transform: scale(1.04);
}
@media (max-width: 991px) {
  .cta-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 30px;
  }
  .cta-text h2 {
    font-size: 38px;
  }
  .cta-text p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .cta-text h2 {
    font-size: 30px;
  }
  .cta-buttons {
    width: 100%;
  }
}

.latesblog {
  padding-top: 80px;
  padding-bottom: 80px;
}