/* ==========================================================================
   Chemclone Industries - Single Consolidated Stylesheet (Figma Exact Match)
   Clean, Semantic, CSS Variables, Responsive (Mobile to Desktop)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap');

/* ==========================================================================
   1. CSS Custom Properties & Design Tokens
   ========================================================================== */
:root {
  /* Colors */
  --color-primary-50: #e3f1fa;
  --color-primary-100: #c7e3f4;
  --color-primary-600: #2d8db5;
  --color-primary-700: #2a6f8e;
  --color-primary-800: #245369;
  --color-primary-900: #1d3846;
  --color-primary-950: #141f25;

  --color-dark-blue-400: #195c9a;
  --color-dark-blue-700: #00376b;
  --color-dark-blue-900: #0f2b46;
  --color-dark-blue-950: #00080f;

  --color-accent-50: #fef5e8;
  --color-accent-100: #fce6c7;
  --color-accent-200: #f8cd8f;
  --color-accent-500: #f29c1f;
  --color-accent-700: #bd7d1f;
  --color-accent-800: #8a5f21;
  --color-accent-900: #564021;

  --color-white: #ffffff;
  --color-dark: rgba(0, 0, 0, 0.8);
  --color-text-main: #141f25;
  --color-text-muted: #546b78;

  /* Gradients */
  --gradient-card-active: linear-gradient(237.3deg, #fce6c7 0%, #2d8db5 34.675%, #1d3846 99.071%);
  --gradient-footer: linear-gradient(46deg, #1d3846 14%, #2d8db5 77%, #f8cd8f 104%);
  --gradient-gold-text: linear-gradient(180deg, #bd7d1f 18%, #564021 60%);

  /* Typography */
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout Container */
  --container-max: 1284px;
}

/* ==========================================================================
   2. Reset & Global Defaults
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--color-text-main);
  background-color: var(--color-white);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  background-color: #ffffff;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

ul,
ol {
  list-style: none;
}

/* Common Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1340px) {
  .container {
    padding: 0;
  }
}

/* ==========================================================================
   3. Header Section (Figma Node: 409:2334 - 1284px x 57px)
   ========================================================================== */
.site-header {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 12px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
}

@media (min-width: 1024px) {
  .site-header {
    padding: 16px 0;
  }
}

.site-header__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
}

@media (min-width: 1340px) {
  .site-header__container {
    padding: 0;
  }
}

/* Logo (218px x 57px) */
.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 218px;
  height: 57px;
  object-fit: contain;
  display: block;
}

/* Desktop Navigation */
.site-header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
    align-items: center;
  }
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.site-header__menu-link {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  color: var(--color-dark);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
}

.site-header__menu-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-600);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.site-header__menu-link:hover,
.site-header__menu-link.active {
  color: var(--color-primary-900);
  font-weight: 500;
}

.site-header__menu-link:hover::after,
.site-header__menu-link.active::after {
  width: 100%;
}

/* Dropdown Submenu Styling (Figma Header Prototype) */
.site-header__menu-item.has-dropdown {
  position: relative;
}

.site-header__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
}

.site-header__menu-item.has-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
}

/* Click-to-Open Submenu List Styling */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  min-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 8px;
  list-style: none;
  box-shadow: 0 12px 32px rgba(0, 55, 107, 0.14);
  border: 1px solid rgba(0, 55, 107, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1050;
  pointer-events: none;
}

.site-header__menu-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu li {
  margin: 2px 0;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #1d3846;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #e3f1fa;
  color: #00376b;
  padding-left: 20px;
}

/* Mobile Dropdown Accordion */
.mobile-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-submenu-toggle {
  background: transparent;
  border: none;
  color: #1d3846;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.mobile-dropdown.open .mobile-submenu-toggle {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding: 6px 0 6px 16px;
  margin: 0;
}

.mobile-dropdown.open .mobile-submenu {
  display: block;
}

.mobile-submenu a {
  font-size: 15px;
  color: #245369;
  line-height: 32px;
  text-decoration: none;
}

/* Mobile Hamburger Toggle */
.site-header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

@media (min-width: 1024px) {
  .site-header__mobile-toggle {
    display: none;
  }
}

.site-header__mobile-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.site-header__mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.site-header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.site-header__mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer & Backdrop */
.site-header__mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  padding: 90px 30px 40px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

.site-header__mobile-drawer.open {
  transform: translateX(0);
}

.site-header__mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-header__mobile-menu .site-header__menu-link {
  font-size: 18px;
  line-height: 44px;
  border-bottom: 1px solid rgba(0, 55, 107, 0.08);
  display: block;
}

.site-header__mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 8, 15, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.site-header__mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   4. Hero Section (Figma Node: 356:75 - 1440px x 659px)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 580px;
  height: clamp(580px, 46vw, 660px);
  background-color: #0c1a24;
  overflow: hidden;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-section {
    height: 659px;
  }
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(6, 17, 26, 0.85) 0%,
      rgba(6, 17, 26, 0.72) 35%,
      rgba(6, 17, 26, 0.35) 65%,
      rgba(6, 17, 26, 0.1) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Concentric Rings */
.hero-decor-ring-1 {
  position: absolute;
  left: -80px;
  bottom: -100px;
  width: 449px;
  height: 449px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
}

.hero-decor-ring-2 {
  position: absolute;
  left: 55%;
  top: 18%;
  width: 107px;
  height: 107px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: 2;
}

.hero-section__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

@media (min-width: 1340px) {
  .hero-section__container {
    padding: 0;
  }
}

.hero-section__content {
  max-width: 699px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 8px 18px 8px 12px;
  margin-bottom: 24px;
  max-width: 100%;
}

.hero-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-badge__text {
  font-family: var(--font-family);
  font-size: 13.5px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-badge__text {
    font-size: 14px;
    white-space: nowrap;
  }
}

.hero-title {
  font-family: var(--font-family);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.19;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
}

.hero-description {
  font-family: var(--font-family);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 699px;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 16px;
  }
}

.hero-slider-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 80px;
  padding: 20px;
  background: rgba(29, 56, 70, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
  z-index: 10;
}

@media (min-width: 1340px) {
  .hero-slider-controls {
    right: calc((100% - var(--container-max)) / 2);
  }
}

.hero-slider-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 138px;
  height: 40px;
}

.hero-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-slider-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

.hero-slider-btn--prev {
  opacity: 0.45;
}

.hero-slider-btn--prev:hover {
  opacity: 0.85;
}

.hero-slider-divider {
  width: 1px;
  height: 24px;
  background-color: #ffffff;
  opacity: 0.8;
}

.hero-curved-mask {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  pointer-events: none;
  z-index: 5;
}

@media (min-width: 768px) {
  .hero-curved-mask {
    height: 65px;
  }
}

.hero-curved-mask svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   5. Products Section (Figma Node: 356:93 & 356:106)
   ========================================================================== */
.products-section {
  position: relative;
  width: 100%;
  padding: 80px 0 100px;
  background-color: #ffffff;
}

@media (min-width: 1024px) {
  .products-section {
    padding: 100px 0 120px;
  }
}

.products-section__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1340px) {
  .products-section__container {
    padding: 0;
  }
}

.products-section__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .products-section__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }
}

.products-section__header-left {
  flex: 1.25;
  max-width: 739px;
}

.products-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 55, 107, 0.1), rgba(242, 156, 31, 0.1));
  color: var(--color-dark-blue-700);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 4px 14px;
  border-radius: 8px;
  margin-bottom: 24px;
  width: fit-content;
}

.products-title {
  font-family: var(--font-family);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 50px;
  color: var(--color-text-main);
  margin: 0;
  letter-spacing: -0.01em;
}

.products-title-em {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary-800);
}

.products-section__header-right {
  flex: 1;
  max-width: 521px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.products-subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-dark);
  margin: 0;
}

.products-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-accent-900);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: fit-content;
}

.products-explore-link:hover {
  transform: translateX(4px);
  opacity: 0.9;
}

.products-explore-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 20px;
  transform: rotate(90deg);
}

.products-explore-arrow img {
  width: 20px;
  height: 32px;
  display: block;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* @media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.product-card {
  position: relative;
  background-color: var(--color-primary-50);
  border-radius: 16px;
  padding: 24px 20px 20px 20px;
  min-height: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.product-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.product-card__icon-wrap img {
  width: 66px;
  height: 68px;
  object-fit: contain;
  transition: all 0.35s ease;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.product-card__header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  transition: all 0.35s ease;
}

.product-card__title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-primary-900);
  margin: 0;
  transition: color 0.3s ease;
}

.product-card__arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 24px;
  border-radius: 9999px;
  background-color: var(--color-primary-100);
  color: var(--color-primary-900);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.product-card__arrow-btn svg {
  width: 15px;
  height: 15px;
  display: block;
}

.product-card__desc-box {
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 16px;
  border-radius: 16px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
}

.product-card__desc-text {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  margin: 0;
  padding: 12px 0;
}

.product-card.active,
.product-card:hover {
  background: var(--gradient-card-active);
  box-shadow: 0 16px 36px rgba(29, 56, 70, 0.2);
  transform: translateY(-4px);
}

.product-card.active .product-card__icon-wrap,
.product-card:hover .product-card__icon-wrap {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-700);
}

.product-card.active .product-card__icon-wrap img,
.product-card:hover .product-card__icon-wrap img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.product-card.active .product-card__title,
.product-card:hover .product-card__title {
  color: #ffffff;
}

.product-card.active .product-card__header-row,
.product-card:hover .product-card__header-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card.active .product-card__arrow-btn,
.product-card:hover .product-card__arrow-btn {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.product-card.active .product-card__desc-box,
.product-card:hover .product-card__desc-box {
  opacity: 1;
  /* max-height: 110px; */
  max-height: 150px;
  margin-top: 10px;
}

/* ==========================================================================
   6. About Us / What We Focus Section (Figma Node: 356:110 & 356:146)
   ========================================================================== */
.about-section {
  position: relative;
  width: 100%;
  padding: 110px 0 130px;
  background-color: #ffffff;
  overflow: hidden;
}

/* Background Subtle Molecular Watermark Shapes (Figma Node: 356:54 & 356:55) */
.about-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Shape 2 (Node 356:55): Full-width molecular chemical formula watermark
   Positioned left:-4px, full section width, fades white at top 10% and bottom 100% */
.about-bg-shape-2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg,
      white 0%,
      transparent 10%,
      transparent 77%,
      white 100%);
  mask-image: linear-gradient(180deg,
      white 0%,
      transparent 10%,
      transparent 77%,
      white 100%);
}

/* Shape 1 (Node 356:54): Right-side hexagon pattern
   Positioned at right/center, fades white top and bottom */
.about-bg-shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg,
      white 0%,
      transparent 36%,
      transparent 81%,
      white 100%);
  mask-image: linear-gradient(180deg,
      white 0%,
      transparent 36%,
      transparent 81%,
      white 100%);
}

.about-section__container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1340px) {
  .about-section__container {
    padding: 0;
  }
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-section__grid {
    grid-template-columns: 530px 1fr;
    gap: 70px;
  }
}

/* Left: Exact "C" Masked Laboratory Image Collage (Figma Node: 356:146) */
.about-collage-wrap {
  position: relative;
  width: 100%;
  max-width: 530px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

/* Masked "C" Letter Shaped Container using exact Figma Mask */
.about-c-mask-container {
  position: relative;
  width: 100%;
  height: 100%;
  /* -webkit-mask-image: url('../assets/images/c-mask.png');
  mask-image: url('../assets/images/c-mask.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  background-color: #ffffff;
  overflow: hidden; */
}

.about-collage-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-collage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-collage-wrap:hover .about-collage-photo img {
  transform: scale(1.05);
}



/* Central Badge (Established In 1991 - Figma Node: 356:162 - 356:165) */
.about-center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(0, 55, 107, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
}

.about-center-badge__label {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-accent-800);
}

.about-center-badge__year {
  font-family: var(--font-family);
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
  background: var(--gradient-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Right Side: What We Focus Content (Figma Node: 356:110) */
.about-content {
  display: flex;
  flex-direction: column;
}

/* Badge (About Us) */
.about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 55, 107, 0.1), rgba(242, 156, 31, 0.1));
  color: var(--color-dark-blue-700);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 4px 14px;
  border-radius: 8px;
  margin-bottom: 25px;
  width: fit-content;
}

/* Heading (What we Focus) */
.about-title {
  font-family: var(--font-family);
  font-size: clamp(32px, 3.8vw, 40px);
  font-weight: 400;
  line-height: 50px;
  color: var(--color-text-main);
  margin: 0 0 16px 0;
}

.about-title-em {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary-800);
}

/* Subtitle */
.about-subtitle {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
  color: var(--color-dark-blue-700);
  margin: 0 0 25px 0;
}

/* Description paragraph */
.about-description {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-dark);
  margin: 0 0 30px 0;
  max-width: 684px;
}

/* Know More CTA Link */
.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-accent-900);
  text-decoration: none;
  transition: transform 0.2s ease;
  width: fit-content;
}

.about-cta-link:hover {
  transform: translateX(4px);
}

.about-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 20px;
  transform: rotate(90deg);
}

.about-cta-arrow img {
  width: 20px;
  height: 32px;
  display: block;
}

/* Divider Line */
.about-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

/* ==========================================================================
   4 Metrics Stats Row (Figma Node: 356:125 - Gap 40px, Font 52px, lh 62px)
   ========================================================================== */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .about-stats-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Counter Number (Poppins 52px, color #195c9a) */
.about-stat-number {
  font-family: var(--font-family);
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--color-dark-blue-400);
  display: inline-flex;
  align-items: baseline;
}

.about-stat-number .counter {
  font-family: var(--font-family);
}

.about-stat-number .plus-sign {
  font-family: var(--font-family);
  color: var(--color-dark-blue-400);
}

.about-stat-label {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-dark);
}

/* ==========================================================================
   7. Sustainability Section (Figma Node: 356:166 & 356:171)
   ========================================================================== */
.sustain-section {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0.18%, #d7f4ff 87.29%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Background: Sky-to-light-blue gradient (Figma Node: 356:168) */
.sustain-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #ffffff 0.18%, #d7f4ff 87.29%);
  z-index: 0;
}

/* Molecular Network background graphic (Figma Node: 356:167) — flipped vertically */
.sustain-network-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 95%;
  max-width: 1369px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  /* Radial fade: visible in centre, fades left & right edges */
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at center, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 100% at center, black 0%, transparent 100%);
}

/* Large decorative ellipse ring (Figma Node: 356:169) */
.sustain-ellipse {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 679px;
  height: 679px;
  pointer-events: none;
  z-index: 1;
}

/* Grass / green field bottom photo (Figma Node: 356:170) — Crisp & 100% visible */
.sustain-grass-img {
  position: relative;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center bottom;
  z-index: 4;
  display: block;
  margin-top: -30px;
}

/* Main content block — centered */
.sustain-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 24px 40px;
  max-width: 820px;
  margin: 0 auto;
  gap: 25px;
}

/* Badge (Figma Node: 356:173) */
.sustain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 55, 107, 0.1), rgba(153, 153, 153, 0));
  color: var(--color-dark-blue-700);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  padding: 4px 14px;
  border-radius: 8px;
  width: fit-content;
}

/* Heading group (Figma Node: 356:175) — title + subtitle stacked */
.sustain-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* "At Chemclone Industries" — 40px */
.sustain-title {
  font-family: var(--font-family);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 50px;
  color: var(--color-text-main);
  margin: 0;
}

.sustain-title-em {
  font-style: italic;
  font-weight: 600;
  color: var(--color-primary-800);
}

/* "Innovating Chemical Solutions for a Cleaner Tomorrow" — 22px #00376b */
.sustain-subtitle {
  font-family: var(--font-family);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  line-height: 32px;
  color: var(--color-dark-blue-700);
  margin: 0;
}

/* Description paragraph — 16px, centered */
.sustain-description {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-dark);
  margin: 0;
  text-align: center;
  max-width: 720px;
}

/* Know More CTA */
.sustain-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: var(--color-accent-900);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.sustain-cta-link:hover {
  transform: translateX(4px);
}

.sustain-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 20px;
  transform: rotate(90deg);
}

.sustain-cta-arrow img {
  width: 20px;
  height: 32px;
  display: block;
}

/* ==========================================================================
   8. Global Presence Section
   ========================================================================== */
.global-presence-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
}

.global-presence-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.global-presence-card {
  position: relative;
  background: linear-gradient(120deg, #1d3846 16.14%, #2d8db5 80.68%, #f8cd8f 107.58%);
  border-radius: 16px;
  padding: 54px 54px 0 54px;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(29, 56, 70, 0.2);
}

.global-presence-header {
  margin-bottom: 30px;
  max-width: 550px;
}

.global-presence-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.global-presence-title {
  font-family: var(--font-family);
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 50px;
  color: #ffffff;
  margin: 0;
}

.global-presence-em {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 600;
  color: #fce6c7;
}

.global-presence-content-layout {
  position: relative;
  width: 100%;
  /* min-height: 480px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-presence-map-wrap {
  position: relative;
  width: 100%;
  /* max-width: 900px;
  height: 450px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-presence-map-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.15));
}

.global-presence-address-card {
  position: relative;
  background: #fef5e8;
  border-radius: 16px;
  padding: 32px 24px 24px 32px;
  box-shadow: 4px 4px 35px -5px rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  max-width: 395px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 5;
}

.address-card-title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}

.address-card-text {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
}

@media (max-width: 991px) {
  .global-presence-card {
    padding: 36px 24px 24px 24px;
  }

  .global-presence-content-layout {
    flex-direction: column;
    gap: 30px;
    min-height: auto;
  }

  .global-presence-map-wrap {
    height: 300px;
  }

  .global-presence-address-card {
    max-width: 100%;
  }
}

/* ==========================================================================
   9. Latest News & Events Section
   ========================================================================== */
.news-section {
  position: relative;
  width: 100%;
  padding: 90px 0;
  background-color: #ffffff;
}

.news-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.news-header {
  text-align: center;
  max-width: 666px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.news-title {
  font-family: var(--font-family);
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 50px;
  color: #1d3846;
  margin: 0;
}

.news-subtitle {
  font-family: var(--font-family);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 32px;
  color: #00376b;
  margin: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: #e5edf4;
  border-radius: 12px;
  padding: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(29, 56, 70, 0.12);
}

.news-card__image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__image {
  transform: scale(1.04);
}

.news-card__date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(90deg, #c7e3f4 55%, #fce6c7 100%);
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 500;
  /* line-height: 28px; */
  line-height: 1;
  color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
}

.news-card__heading {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: #245369;
  margin: 0;
}

.news-card__excerpt {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
  flex-grow: 1;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #245369;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.news-card__link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.news-card__link:hover {
  color: #1d3846;
  gap: 16px;
}

.news-card__link:hover .news-card__link-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   10. Contact CTA Banner Section
   ========================================================================== */
.cta-banner-section {
  position: relative;
  width: 100%;
  padding: 60px 0;
  background-color: #ffffff;
}

.cta-banner-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.cta-banner-card {
  position: relative;
  width: 100%;
  min-height: 293px;
  background: #f2f5f7;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.cta-banner-bg-img {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  mix-blend-mode: hard-light;
  overflow: hidden;
  border-radius: 16px;
}

.cta-banner-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(162, 224, 255, 0.45) 0%, rgba(237, 250, 255, 0.85) 87%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.cta-banner-side-img {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.cta-banner-side-img--left {
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 130%;
  max-width: 45%;
  object-fit: contain;
  opacity: 0.3;
}

.cta-banner-side-img--right {
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 120%;
  max-width: 35%;
  object-fit: contain;
  opacity: 0.35;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 630px;
  margin: 0 auto;
  gap: 20px;
}

.cta-banner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(127, 164, 199, 0.4) 100%);
  color: rgba(0, 0, 0, 0.8);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  padding: 6px 16px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.cta-banner-title {
  font-family: var(--font-family);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 50px;
  color: #1d3846;
  margin: 0;
}

.cta-banner-em {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 600;
  color: #245369;
}

.cta-banner-subtitle {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
  margin: 0;
}

.cta-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #245369;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  margin-top: 4px;
}

.cta-banner-link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.cta-banner-link:hover {
  color: #1d3846;
  gap: 16px;
}

.cta-banner-link:hover .cta-banner-link-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   11. Footer Section
   ========================================================================== */
.site-footer {
  position: relative;
  width: 100%;
  background: linear-gradient(46.26deg, #1d3846 14.41%, #2d8db5 77.47%, #f8cd8f 103.74%);
  color: #ffffff;
  padding: 80px 0 30px 0;
  overflow: hidden;
}

.footer-bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  overflow: hidden;
}

.footer-bg-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-main-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 37px;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 521px;
  width: 100%;
}

.footer-logo-link {
  display: inline-block;
  width: max-content;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-nav-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-nav-col {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav-title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-nav-list a {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.footer-nav-list a:hover {
  opacity: 1;
  color: #f8cd8f;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copyright {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-links a {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #f8cd8f;
}

.footer-bottom-sep {
  display: inline-block;
  width: 1px;
  height: 19px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.footer-social-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
  color: #f8cd8f;
}

@media (max-width: 768px) {
  .footer-main-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav-cols {
    width: 100%;
    justify-content: space-between;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-sep {
    display: none;
  }
}

/* ==========================================================================
   12. Page Hero Banner & Overview Page Styles (Figma Node: 435:2406)
   ========================================================================== */
.page-hero {
  position: relative;
  width: 100%;
  padding: 100px 0 60px 0;
  background: linear-gradient(120deg, #1d3846 16.14%, #2d8db5 80.68%, #f8cd8f 107.58%);
  color: #ffffff;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: hard-light;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
}

.page-hero__title {
  font-family: var(--font-family);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.page-hero__em {
  font-style: italic;
  font-weight: 600;
  color: #fce6c7;
}

.page-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
}

.page-hero__breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-hero__breadcrumbs a:hover {
  color: #fce6c7;
}

.page-hero__breadcrumbs .sep {
  opacity: 0.5;
}

.page-hero__breadcrumbs .current {
  color: #fce6c7;
  font-weight: 500;
}

/* Overview Section */
.overview-section {
  position: relative;
  padding: 90px 0;
  background-color: #ffffff;
}

.overview-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr 700px;
    gap: 70px;
  }
}

.overview-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
  display: none;
}

@media (max-width: 640px) {
  .overview-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0f7fc;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(45, 141, 181, 0.12);
}

.pillar-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2d8db5;
  color: #ffffff;
  border-radius: 8px;
  flex-shrink: 0;
}

.pillar-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pillar-item__text strong {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: #1d3846;
}

.pillar-item__text span {
  font-family: var(--font-family);
  font-size: 13px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.65);
}

/* Mission Vision Values Grid Section */
.values-section {
  position: relative;
  padding: 90px 0;
  background-color: #f7fafc;
}

.values-cards-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .values-cards-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 10px 30px rgba(0, 55, 107, 0.06);
  border: 1px solid rgba(0, 55, 107, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 55, 107, 0.12);
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1d3846 0%, #2d8db5 100%);
  color: #ffffff;
}

.value-card__title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 600;
  color: #1d3846;
  margin: 0;
}

.value-card__desc {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

/* ==========================================================================
   13. Exact Figma History Timeline Section (Node: 664:2730 & 3-Row Viewport)
   ========================================================================== */
.figma-history-section {
  position: relative;
  width: 100%;
  padding: 60px 0 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.figma-history-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.figma-history-layout {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 20px;
}

/* 3-Row Visible Carousel Viewport Container (~480px height displays 3 rows) */
.timeline-rows-viewport {
  position: relative;
  flex: 1;
  max-width: 1000px;
  max-height: 480px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.timeline-rows-viewport::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Timeline Rows Container */
.timeline-rows-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 3;
  padding: 10px 0;
}

/* Bronze/Gold Vertical Timeline Line (Positioned at 170px center of column 2) */
.timeline-line {
  position: absolute;
  top: 30px;
  bottom: 50px;
  left: 170px;
  width: 2px;
  background: linear-gradient(180deg, #b2834b 0%, #e0c294 100%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 992px) {
  .timeline-line {
    left: 140px;
  }
}

@media (max-width: 640px) {
  .timeline-line {
    display: none;
  }
}

.timeline-row {
  display: grid;
  grid-template-columns: 150px 40px 1fr;
  align-items: flex-start;
  gap: 0;
  position: relative;
  scroll-snap-align: start;
  scroll-margin-top: 20px;
  transition: opacity 0.4s ease;
  width: 100%;
  min-height: 120px;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .timeline-row {
    grid-template-columns: 120px 40px 1fr;
  }
}

@media (max-width: 640px) {
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Left: Year Pill Badges */
.timeline-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0;
  padding-top: 4px;
}

@media (max-width: 640px) {
  .timeline-left {
    justify-content: flex-start;
  }
}

.pill-connector {
  display: inline-block;
  width: 16px;
  height: 2px;
  background: rgba(178, 131, 75, 0.4);
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.timeline-row.active .pill-connector {
  background: #b2834b;
}

.year-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(45, 141, 181, 0.15);
  color: #195c9a;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.year-pill-badge.active {
  background: linear-gradient(135deg, #1d3846 0%, #2d8db5 100%);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(29, 56, 70, 0.25);
  transform: scale(1.03);
}

.year-pill-badge .lbl {
  opacity: 0.85;
}

.year-pill-badge .yr {
  font-weight: 700;
}

/* Center: Circle Nodes on Vertical Line */
.timeline-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  position: relative;
  z-index: 5;
}

@media (max-width: 640px) {
  .timeline-center {
    display: none;
  }
}

.timeline-node-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #2d8db5;
  transition: all 0.3s ease;
}

.timeline-node-circle.active {
  width: 14px;
  height: 14px;
  background: #1d3846;
  border-color: #2d8db5;
  box-shadow: 0 0 10px rgba(45, 141, 181, 0.8);
}

/* Right: Milestone Content & Huge Watermark Year */
.timeline-right {
  position: relative;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

@media (max-width: 640px) {
  .timeline-right {
    padding-left: 0;
  }
}

.watermark-year {
  position: absolute;
  top: -38px;
  left: 10px;
  font-family: var(--font-family);
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: rgba(45, 141, 181, 0.08);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  transition: color 0.4s ease;
}

.timeline-row.active .watermark-year {
  color: rgba(45, 141, 181, 0.15);
}

.milestone-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #1d3846;
  margin: 0;
  padding-top: 6px;
}

.milestone-desc {
  position: relative;
  z-index: 2;
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.65);
  margin: 0;
  max-width: 620px;
}

/* Far-Right Synced C-Dots Sidebar (Aligned to Right Edge) */
.timeline-c-dots-sidebar {
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  width: 40px;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 10;
}

@media (max-width: 992px) {
  .timeline-c-dots-sidebar {
    display: none;
  }
}

.c-dot {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  outline: none;
}

.c-dot__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a8d5ea;
  transition: background 0.3s ease, transform 0.3s ease;
}

.c-dot:hover .c-dot__dot {
  transform: scale(1.3);
  background: #2d8db5;
}

.c-dot.active .c-dot__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.15);
  filter: drop-shadow(0 2px 6px rgba(29, 56, 70, 0.3));
}

/* Bottom Industrial Factory Skyline Watermark */
.timeline-factory-watermark {
  width: 100%;
  margin-top: 30px;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: multiply;
  overflow: hidden;
  display: none;
}

.timeline-factory-watermark img {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
}

/* ==========================================================================
   14. Laboratory Leadership Hero & 4-Column Circular Avatar Grid (Figma)
   ========================================================================== */
.lab-leadership-hero {
  position: relative;
  width: 100%;
  padding: 120px 0 100px 0;
  overflow: hidden;
  background-color: #1d3846;
}

.lab-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lab-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lab-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 56, 70, 0.92) 0%, rgba(29, 56, 70, 0.45) 60%, rgba(29, 56, 70, 0.2) 100%);
}

.lab-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.lab-hero-content {
  max-width: 600px;
}

.lab-hero-title {
  font-family: var(--font-family);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.lab-hero-em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

/* Bottom Curved Wave */
.lab-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.lab-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Figma Leadership Section */
.figma-leadership-section {
  position: relative;
  padding: 60px 0 100px 0;
  background-color: #ffffff;
}

.figma-leadership-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Centered Pill-Shaped Segmented Tab Switcher Bar */
.segmented-pill-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #ffffff;
  border: 1.5px solid #a4d3e8;
  border-radius: 30px;
  padding: 4px;
  margin: 0 auto 60px auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 16px rgba(45, 141, 181, 0.08);
}

.pill-tab-btn {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  color: #195c9a;
  background: transparent;
  border: none;
  padding: 8px 24px;
  border-radius: 24px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pill-tab-btn:hover {
  color: #1d3846;
}

.pill-tab-btn.active {
  background: linear-gradient(135deg, #1d3846 0%, #2d8db5 100%);
  color: #ffffff;
  font-style: italic;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(29, 56, 70, 0.2);
}

/* Tab Panes (Strict Hide/Show) */
.leadership-tab-pane {
  display: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.leadership-tab-pane.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 4-Column Circular Avatar Grid */
.circular-avatar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
}

@media (max-width: 992px) {
  .circular-avatar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 540px) {
  .circular-avatar-grid {
    grid-template-columns: 1fr;
  }
}

/* Avatar Profile Card */
.avatar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.avatar-card:hover {
  transform: translateY(-6px);
}

.avatar-circle-wrap {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, #cde6f5 0%, #eef7fc 100%);
  box-shadow: 0 8px 24px rgba(45, 141, 181, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.avatar-card:hover .avatar-circle-wrap {
  box-shadow: 0 14px 32px rgba(45, 141, 181, 0.22);
  transform: scale(1.03);
}

.avatar-circle-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.avatar-name {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #1d3846;
  margin: 4px 0 0 0;
}

.avatar-designation {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   15. Research & Development Page Styles (Figma)
   ========================================================================== */
.rnd-hero {
  position: relative;
  width: 100%;
  padding: 120px 0 100px 0;
  overflow: hidden;
  background-color: #1d3846;
}

.rnd-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rnd-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.rnd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 76, 119, 0.85) 0%, rgba(29, 88, 131, 0.65) 50%, rgba(0, 55, 107, 0.4) 100%);
}

.rnd-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.rnd-hero-content {
  max-width: 600px;
}

.rnd-hero-title {
  font-family: var(--font-family);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.rnd-hero-em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

.rnd-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.rnd-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Main R&D Section */
.rnd-main-section {
  position: relative;
  padding: 80px 0 100px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.rnd-main-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.rnd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .rnd-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Overlapping Lab Photo Collage */
.rnd-collage-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding-bottom: 60px;
}

.rnd-photo-main {
  width: 85%;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 55, 107, 0.12);
}

.rnd-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rnd-photo-overlap {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 55%;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 12px 32px rgba(0, 55, 107, 0.18);
  z-index: 2;
}

.rnd-photo-overlap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .rnd-collage-wrap {
    padding-bottom: 40px;
  }

  .rnd-photo-main {
    width: 100%;
    height: 260px;
  }

  .rnd-photo-overlap {
    position: relative;
    bottom: 30px;
    left: 0;
    width: 80%;
    height: 160px;
    margin-top: -40px;
  }
}

/* R&D Content Right Block */
.rnd-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rnd-title {
  font-family: var(--font-family);
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  color: #1d3846;
  margin: 0;
}

.rnd-title-em {
  font-style: italic;
  font-weight: 700;
  color: #2d8db5;
}

.rnd-text {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.72);
  margin: 0;
}

/* ==========================================================================
   16. Contact Us Page Styles (Figma)
   ========================================================================== */
.contact-hero {
  position: relative;
  width: 100%;
  padding: 120px 0 100px 0;
  overflow: hidden;
  background-color: #1d3846;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 56, 70, 0.9) 0%, rgba(29, 56, 70, 0.5) 60%, rgba(29, 56, 70, 0.2) 100%);
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.contact-hero-content {
  max-width: 600px;
}

.contact-hero-title {
  font-family: var(--font-family);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.contact-hero-em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

.contact-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.contact-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Get in Touch Location Cards Section */
.location-cards-section {
  position: relative;
  padding: 60px 0 80px 0;
  background-color: #ffffff;
}

.location-cards-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.location-section-title {
  font-family: var(--font-family);
  font-size: 36px;
  font-weight: 600;
  color: #1d3846;
  text-align: center;
  margin: 0 0 40px 0;
}

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

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

.location-card {
  position: relative;
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 55, 107, 0.08);
}

.location-card--office {
  background-color: #e7f2f8;
}

.location-card--factory {
  background-color: #fdf4e7;
}

.location-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}

.location-card__icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 55, 107, 0.08);
}

.location-card__arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29, 56, 70, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.location-card__arrow-btn:hover {
  background: #1d3846;
  transform: scale(1.1);
}

.location-card__arrow-btn:hover svg {
  stroke: #ffffff;
}

.location-card__title {
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1d3846;
  margin: 0;
}

.location-card__body {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
}

.location-card__text {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

/* Inquiry Form & Dark Teal Contact Info Card */
.inquiry-section {
  position: relative;
  padding: 60px 0 90px 0;
  background-color: #f8fafc;
}

.inquiry-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.inquiry-layout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .inquiry-layout-grid {
    grid-template-columns: 1fr;
  }
}

.inquiry-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-form-title {
  font-family: var(--font-family);
  font-size: 30px;
  font-weight: 600;
  color: #1d3846;
  margin: 0;
}

.inquiry-form-subtitle {
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.65);
  margin: 0 0 10px 0;
}

.form-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .form-fields-grid {
    grid-template-columns: 1fr;
  }
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-family);
  font-size: 15px;
  color: #1d3846;
  background: #e8f1f7;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  background: #ffffff;
  border-color: #2d8db5;
  box-shadow: 0 0 10px rgba(45, 141, 181, 0.15);
}

.select-group {
  position: relative;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.select-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

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

.form-submit-row {
  margin-top: 20px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  color: #1d3846;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: color 0.2s ease;
}

.form-submit-btn:hover {
  color: #2d8db5;
}

.submit-arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1d3846;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit-btn:hover .submit-arrow-circle {
  background: #2d8db5;
  transform: translateX(4px);
}

/* Dark Teal Contact Info Card */
.contact-info-card {
  background: linear-gradient(135deg, #1d3846 0%, #2d8db5 100%);
  border-radius: 16px;
  padding: 36px 32px;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(29, 56, 70, 0.2);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-card__title {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.contact-info-card__list {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
  gap: 10px;
}

.contact-info-card__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-info-card__text,
.contact-info-card__link {
  font-family: var(--font-family);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-card__link:hover {
  color: #f8cd8f;
}

/* Google Map Embed Section */
.map-embed-section {
  width: 100%;
  line-height: 0;
}

.google-map-wrap iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ==========================================================================
   17. Plant, Machinery & Infrastructure Page Styles (Figma)
   ========================================================================== */
.infra-hero {
  position: relative;
  width: 100%;
  padding: 120px 0 100px 0;
  overflow: hidden;
  background-color: #1d3846;
}

.infra-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.infra-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.infra-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 56, 70, 0.92) 0%, rgba(29, 56, 70, 0.5) 60%, rgba(29, 56, 70, 0.2) 100%);
}

.infra-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.infra-hero-content {
  max-width: 600px;
}

.infra-hero-title {
  font-family: var(--font-family);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.infra-hero-em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

.infra-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.infra-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* 2-Level Nested Tab Architecture Section */
.infra-main-section {
  position: relative;
  padding: 80px 0 100px 0;
  background-color: #ffffff;
}

.infra-main-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.infra-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .infra-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* Left Vertical Category Tabs Bar */
.infra-left-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.infra-left-btn {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  color: #1d3846;
  background: #e8f1f7;
  border: 1px solid transparent;
  padding: 14px 20px;
  border-radius: 24px;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.infra-left-btn:hover {
  background: #d8e8f3;
  color: #00376b;
  transform: translateX(4px);
}

.infra-left-btn.active {
  background: linear-gradient(135deg, #1d3846 0%, #2d8db5 100%);
  color: #ffffff;
  border-color: transparent;
  font-style: italic;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(29, 56, 70, 0.18);
}

.infra-left-btn.active em {
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
}

/* Right Top Horizontal Sub-Tabs Slider & Content Card */
.infra-right-card {
  background: #e7f2f8;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.sub-tabs-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.sub-tabs-track {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.sub-tabs-track::-webkit-scrollbar {
  display: none;
}

.sub-tab-btn {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: #1d3846;
  background: #cde4f2;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sub-tab-btn:hover {
  background: #bbdaf0;
  color: #00376b;
}

.sub-tab-btn.active {
  background: linear-gradient(135deg, #1d3846 0%, #2d8db5 100%);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(29, 56, 70, 0.15);
}

.sub-tabs-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1d3846;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  outline: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sub-tabs-arrow-btn:hover {
  background: #2d8db5;
  transform: scale(1.1);
}

/* Active Sub-Tab Detail Box */
.infra-content-pane {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.infra-content-title {
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 600;
  color: #1d3846;
  margin: 0;
}

.infra-detail-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(0, 55, 107, 0.04);
}

/* ==========================================================================
   18. Bromine & its Derivatives Product Page Styles (Figma Node 864:4297)
   ========================================================================== */
.product-hero {
  position: relative;
  width: 100%;
  padding: 120px 0 100px 0;
  overflow: hidden;
  background-color: #1d3846;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 56, 70, 0.9) 0%, rgba(29, 56, 70, 0.5) 60%, rgba(29, 56, 70, 0.2) 100%);
}

.product-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.product-hero-content {
  max-width: 600px;
}

.product-hero-title {
  font-family: var(--font-family);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}

.product-hero-em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

.product-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.product-hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Products Main Section Layout (Figma Node: 864:4297) */
.product-main-section {
  position: relative;
  padding: 80px 0 100px 0;
  background-color: #ffffff;
}

.product-main-container {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.products-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .products-layout-grid {
    grid-template-columns: 1fr;
  }
}

/* Left Sidebar Category Redirect Links */
.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 100px;
}

.product-sidebar-link {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  background: #e3f1fa;
  padding: 16px 20px;
  border-radius: 50px;
  text-decoration: none;
  line-height: 24px;
  transition: all 0.3s ease;
}

.product-sidebar-link:hover {
  background: #d4e8f5;
  color: #1d3846;
  transform: translateX(4px);
}

.product-sidebar-link.active {
  background: linear-gradient(155deg, #1d3846 16%, #2d8db5 80%, #f8cd8f 107%);
  color: #ffffff;
  font-style: italic;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(29, 56, 70, 0.2);
}

.product-sidebar-link.active em {
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
}

/* Right Content Area: Sub-Tabs & Cards Grid */
.product-content-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-width: 0;
  max-width: 100%;
}

.product-subtabs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.product-subtabs-bar {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0;
}

.product-subtabs-bar::-webkit-scrollbar {
  display: none;
}

.product-subtab-btn {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  background: #bfd2e3;
  border: none;
  height: 41px;
  padding: 0 18px;
  border-radius: 8px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-sizing: border-box;
}

.product-subtab-btn:hover {
  background: #adcae0;
  color: #1d3846;
}

.product-subtab-btn.active {
  background: linear-gradient(17deg, #1d3846 9%, #2d8db5 67%, #f8cd8f 108%);
  color: #ffffff;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(29, 56, 70, 0.18);
}

.product-subtabs-arrow {
  display: none !important;
}

/* Chemical Product Cards Grid */
.product-cards-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-cards-pane.active {
  display: block;
  opacity: 1;
}

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

@media (max-width: 992px) {
  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Chemical Card Item (Figma Node: 843:3498) */
.product-chemical-card {
  background: #e3f1fa;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  min-height: 144px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-chemical-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 55, 107, 0.08);
}

.product-chemical-title {
  font-family: var(--font-family);
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(0, 0, 0, 0.85);
  margin: 0;
}

.cas-badge {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.8);
}

.infra-detail-text {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  color: #1d3846;
  margin: 0;
}



.form-message {
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 4px;
}

.form-message-success {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}

.form-message-error {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}