/* ==========================================================================
   MRG Composites Premium Style Sheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root Variables & Typography
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Gilroy-Medium";
  src: url("../font/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../font/Gilroy-Bold.woff") format("woff"); /* Mapping Bold file to SemiBold */
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../font/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #f5c400;
  --primary-hover: #d4a900;
  --dark-bg: #111111;
  --dark-card: #1a1a1a;
  --dark-border: #2c2c2c;
  --light-bg: #f9f9f9;
  --light-card: #ffffff;
  --light-border: #e5e5e5;
  --text-dark: #1a1a1a;
  --text-gray: #555555;
  --text-light: #ffffff;
  --text-gray-light: #aaaaaa;

  --font-headings: "Gilroy-SemiBold", sans-serif;
  --font-body: "Gilroy-Medium", sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   2. Reset & Core Styling
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-gray);
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 0;
  letter-spacing: -0.02em;
}

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

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

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

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

.page-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--light-bg);
}

.bg-dark {
  background-color: var(--dark-bg);
}

.text-white {
  color: var(--text-light);
}

.text-primary {
  color: var(--primary) !important;
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   3. Buttons & UI Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background-color: transparent;
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--dark-bg);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-dark:hover {
  background-color: var(--primary);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 40px;
}

.section-header {
  margin-bottom: 60px;
}

/* --------------------------------------------------------------------------
   4. Integrated Header & Brand Grid
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--light-card);
  border-bottom: 1.5px solid var(--light-border);
  padding: 0;
  transition: var(--transition);
  z-index: 100;
  position: relative;
}

.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.3s ease-out;
  z-index: 999;
}

.header-grid-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: stretch;
  padding: 0 20px;
}

/* Left Brand Column (Full Height) */
.header-logo-column {
  display: flex;
  align-items: center;
  padding: 20px 25px 20px 0;
  border-right: 1.5px solid var(--light-border);
}

.custom-logo {
  max-height: 70px;
  width: auto;
}

/* Custom Text Logo mimicking the exact brand identity */
.custom-mrg-text-logo a {
  display: block;
}

.logo-top-mrg {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-squares {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.logo-squares .sq {
  background: var(--primary);
  width: 8px;
  height: 8px;
}

.logo-squares .sq2 {
  margin-left: 4px;
}

.logo-squares .sq3 {
  background: var(--text-dark);
}

.logo-top-mrg strong {
  font-weight: 900;
}

.logo-top-mrg sup {
  font-size: 8px;
  top: -8px;
  color: var(--text-dark);
}

.logo-bottom-mrg {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  margin-top: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-bottom-mrg span {
  color: #00a65a; /* Green accent color for PVT. LTD. as in image */
  font-weight: 700;
}

/* Right Dual Row Content Column */
.header-content-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Top Row - Contacts & Socials */
.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 10px 25px;
  border-bottom: 1.5px solid var(--light-border);
}

.header-top-left {
  display: flex;
  gap: 25px;
}

.header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-gray);
}

.header-info-item i {
  font-size: 14px;
}

.header-info-item a {
  color: var(--text-gray);
}

.header-info-item a:hover {
  color: var(--primary);
}

.header-social-links {
  display: flex;
  gap: 15px;
}

.header-social-links .social-icon {
  color: var(--text-gray-light);
  font-size: 13px;
  transition: var(--transition);
}

.header-social-links .social-icon:hover {
  color: var(--primary);
}

/* Bottom Row - Menu & Search/CTA */
.header-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 15px 25px;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li a {
  font-family: var(--font-headings);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--primary);
}

/* Dropdown Menu Arrow Indicator */
.main-navigation ul li.menu-item-has-children > a::after {
  content: "\f107"; /* fontawesome chevron down symbol */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  margin-left: 2px;
  transition: var(--transition);
}

.main-navigation ul li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Sub-menu Dropdown Styling */
.main-navigation ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light-card);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 6px;
  padding: 10px 0;
}

.main-navigation ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation ul li .sub-menu li {
  width: 100%;
}

.main-navigation ul li .sub-menu li a {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-gray);
  border-bottom: 1px solid var(--light-border);
  transition: all 0.3s ease;
  display: block;
}

.main-navigation ul li .sub-menu li:last-child a {
  border-bottom: none;
}

.main-navigation ul li .sub-menu li a:hover {
  background: #fdfdfd;
  color: var(--primary);
  padding-left: 25px;
}

/* Multi-level dropdowns (3rd level) */
.main-navigation ul li .sub-menu .sub-menu {
  top: 0;
  left: 100%;
  transform: translateX(15px);
}

.main-navigation ul li .sub-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Actions wrapper */
.header-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(245, 196, 0, 0.2);
}

.header-search-btn:hover {
  background: var(--text-dark);
  color: var(--primary);
  transform: scale(1.05);
}

/* Elegant Pill-shaped CTA Button */
.header-cta-pill {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid var(--light-border);
  border-radius: 30px;
  padding: 4px 4px 4px 20px;
  gap: 15px;
  font-family: var(--font-headings);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.header-cta-pill .pill-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
}

.header-cta-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.header-cta-pill:hover .pill-arrow {
  background: var(--text-dark);
  color: var(--primary);
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger-bar {
  width: 24px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* --------------------------------------------------------------------------
   5. Hero Section (WOW Overlay)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 700px;
  background-color: var(--dark-bg);
  overflow: hidden;
  padding: 0;
  display: block;
}

.hero-bg-text {
  position: absolute;
  right: -50px;
  bottom: -50px;
  font-family: var(--font-headings);
  font-size: 320px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 700px;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0.8s ease;
}

.hero-slide.active {
  position: relative;
  height: auto;
  min-height: 700px;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-content-wrapper {
  max-width: 620px;
  position: relative;
  z-index: 3;
}

.hero-solid-white-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.hero-card-inner-padding {
  padding: 45px 50px;
}

.hero-tag-yellow {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-heading-dark {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-description-dark {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-cta-button-row {
  margin-bottom: 35px;
}

.hero-glass-stats-block {
  display: flex;
  gap: 40px;
  padding: 22px 35px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 25px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-stat-value {
  font-family: var(--font-headings);
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}
.hero-card-bottom-yellow-strip {
  background: var(--primary);
  padding: 15px 30px;
  text-align: center;
}

.hero-card-bottom-yellow-strip p {
  margin: 0;
  font-family: var(--font-headings);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Grid & Right Rotator elements */
.flex-container-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-rotating-badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.hero-rotating-play-btn {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rotating-text-svg {
  animation: rotateText 18s linear infinite;
  position: absolute;
  width: 100%;
  height: 100%;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.play-circle-center {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 0 15px rgba(245, 196, 0, 0.4);
  transition: var(--transition);
  z-index: 2;
  position: relative;
  padding-left: 3px;
}

.play-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.play-btn-link:hover .play-circle-center {
  background: #ffffff;
  color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* Slider Controls Navigation overlays */
.hero-slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 25px;
  z-index: 10;
}

.hero-slider-btn {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}

.hero-slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
}

.hero-slider-dots {
  display: flex;
  gap: 8px;
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slide-dot.active {
  background: var(--primary);
  width: 22px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   6. Pioneers / About Section
   -------------------------------------------------------------------------- */
.about-grid-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.about-left-column {
  position: relative;
  padding-top: 10px;
}

.about-watermark-text {
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--font-headings);
  font-size: 160px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.015);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.about-title-inner {
  position: relative;
  z-index: 2;
}

.section-tag-gold {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.about-main-heading {
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

.about-right-column {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
  transition: var(--transition);
}

.about-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.about-product-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 520px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-image-wrapper:hover .about-product-img {
  transform: scale(1.03);
}

.about-description-copy {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-gray);
  margin-top: 30px;
}

.about-description-copy p {
  margin-bottom: 20px;
}

.about-description-copy p:last-child {
  margin-bottom: 0;
}

/* Dynamic 2x2 Stats Grid with Cross Borders separator */
.about-cross-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  margin-top: 10px;
}

.about-cross-metrics-grid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background-color: var(--light-border);
  transform: translateY(-50%);
}

.about-cross-metrics-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.5px;
  height: 100%;
  background-color: var(--light-border);
  transform: translateX(-50%);
}

.about-cross-metric-card {
  padding: 25px 35px;
}

.about-cross-metric-card:nth-child(odd) {
  padding-left: 0;
}

.about-cross-metric-card:nth-child(even) {
  padding-right: 0;
}

.about-cross-metric-card:nth-child(1),
.about-cross-metric-card:nth-child(2) {
  padding-top: 0;
}

.about-cross-metric-card:nth-child(3),
.about-cross-metric-card:nth-child(4) {
  padding-bottom: 0;
}

.cross-metric-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.cross-metric-val {
  font-family: var(--font-headings);
  font-size: 42px;
  font-weight: 800;
  color: #1a365d; /* Elegant deep steel blue color as in screenshot */
  line-height: 1;
}

.cross-metric-suf {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 800;
  color: #1a365d;
  line-height: 1;
}

.cross-metric-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   7. Scrolling Marquee Banner
   -------------------------------------------------------------------------- */
.marquee-section {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.marquee-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding-right: 60px;
}

.marquee-separator {
  font-size: 14px;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* --------------------------------------------------------------------------
   8. Products & Applications Grid
   -------------------------------------------------------------------------- */
.products-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.product-item-card {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.product-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(245, 196, 0, 0.25);
  border-color: var(--primary);
}

.product-card-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item-card:hover .product-card-bg-image {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.85) 85%,
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 2;
  transition: var(--transition);
}

.product-item-card:hover .product-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.25) 30%,
    rgba(0, 0, 0, 0.9) 80%,
    #000000 100%
  );
}

.product-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px 30px;
  z-index: 3;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.product-card-title {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.product-item-card:hover .product-card-title {
  color: var(--primary);
}

.product-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
  transition: var(--transition);
}

.product-item-card:hover .product-card-desc {
  color: rgba(255, 255, 255, 0.95);
}

/* Applications grid with Vertical rotated header */
.applications-container-block {
  border-top: 1px solid var(--light-border);
  padding-top: 80px;
}

.applications-grid-layout {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 40px;
  align-items: center;
}

.applications-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.app-icon-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  padding: 30px 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.app-icon-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.app-icon-wrapper {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.app-custom-icon {
  max-height: 48px;
  max-width: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
}

.app-icon-card:hover .app-custom-icon {
  transform: scale(1.1);
}

.app-icon-wrapper i {
  font-size: 32px;
  color: var(--primary);
  transition: var(--transition);
}

.app-icon-card:hover .app-icon-wrapper i {
  transform: scale(1.1) rotate(5deg);
}

.app-label {
  display: block;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
}

.applications-rotated-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.applications-rotated-title span {
  font-family: var(--font-headings);
  font-size: 64px;
  font-weight: 900;
  color: rgba(245, 196, 0, 0.1);
  -webkit-text-stroke: 1px rgba(245, 196, 0, 0.3);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  line-height: 1;
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   9. About MRG / Stats Section (Dark Wireframe)
   -------------------------------------------------------------------------- */
.mrg-stats-section {
  position: relative;
  overflow: hidden;
}

.mrg-stats-outline-bg {
  position: absolute;
  left: -50px;
  bottom: -40px;
  font-family: var(--font-headings);
  font-size: 180px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
}

.mrg-stats-grid-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mrg-stats-story-col {
  z-index: 2;
}

.mrg-stats-desc {
  margin: 25px 0 35px 0;
  font-size: 15px;
  color: var(--text-gray-light);
}

.mrg-stats-graphic-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wireframe-container {
  position: relative;
  max-width: 320px;
}

.blueprint-neon-img {
  width: 100%;
  filter: drop-shadow(0 0 20px rgba(245, 196, 0, 0.3));
}

.neon-glow-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 196, 0, 0.15) 0%,
    rgba(245, 196, 0, 0) 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mrg-stats-metrics-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid var(--dark-border);
  padding-left: 50px;
}

.vertical-metric-item {
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 20px;
}

.vertical-metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.metric-top-row {
  display: flex;
  align-items: baseline;
}

.vertical-metric-num {
  font-family: var(--font-headings);
  font-size: 42px;
  font-weight: 800;
  color: var(--text-light);
}

.vertical-metric-suf {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
}

.vertical-metric-lbl {
  font-size: 13px;
  margin: 5px 0 0 0;
  color: var(--text-gray-light);
  font-weight: 600;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   10. Advantages Section Styles (Responsive Image-based layout)
   -------------------------------------------------------------------------- */
.advantages-split-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.advantages-image-col {
  position: relative;
}

.advantages-main-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
  transition: var(--transition);
}

.advantages-main-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.advantages-main-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.advantages-main-image-wrapper:hover .advantages-main-img {
  transform: scale(1.03);
}

.advantages-list-col {
  display: flex;
  flex-direction: column;
}

.advantages-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.advantages-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.advantages-list-item:hover {
  border-color: var(--primary);
  transform: translateX(5px);
  box-shadow: var(--shadow-lg);
}

.advantages-list-item-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantages-list-item-icon {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  transition: var(--transition);
}

.advantages-list-item:hover .advantages-list-item-icon {
  transform: scale(1.1);
}

.advantages-list-item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.advantages-list-item-title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.advantages-list-item-desc {
  font-size: 13.5px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* Fallback grid layout if no side image is present */
.advantages-grid-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}

.advantages-intro-col {
  position: sticky;
  top: 120px;
}

.advantages-cards-col {
  display: flex;
  flex-direction: column;
}

.advantages-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.advantages-grid-card {
  background: #ffffff;
  border: 1px solid var(--light-border);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.advantages-grid-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.advantages-grid-card-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantages-grid-card-icon {
  max-width: 44px;
  max-height: 44px;
  object-fit: contain;
  transition: var(--transition);
}

.advantages-grid-card:hover .advantages-grid-card-icon {
  transform: scale(1.1);
}

.advantages-grid-card-icon-wrapper i {
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}

.advantages-grid-card:hover .advantages-grid-card-icon-wrapper i {
  transform: scale(1.1) rotate(5deg);
}

.advantages-grid-card-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.advantages-grid-card-title {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.advantages-grid-card-desc {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. Certifications & Quality
   -------------------------------------------------------------------------- */
.certifications-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.certificate-item-card {
  background: var(--light-card);
  border-radius: 6px;
  border: 1px solid var(--light-border);
  padding: 40px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.certificate-item-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.certificate-logo-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-logo-wrapper img {
  max-height: 100%;
  max-width: 100%;
}

.certificate-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.certificate-desc {
  font-size: 14px;
  margin: 0;
  color: var(--text-gray);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   12. CTA Yellow Banner & Rebar overlay
   -------------------------------------------------------------------------- */
.cta-banner-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.cta-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-banner-info {
  max-width: 60%;
  z-index: 2;
}

.cta-banner-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.cta-phone-link {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-phone-link:hover {
  color: #ffffff;
}

.cta-banner-image-overlay {
  position: absolute;
  right: 0;
  bottom: -40px;
  max-width: 450px;
  z-index: 1;
  pointer-events: none;
}

.cta-rebar-hand-img {
  transform: rotate(-5deg);
  transition: var(--transition);
}

.cta-banner-section:hover .cta-rebar-hand-img {
  transform: rotate(0deg) scale(1.05);
}

/* --------------------------------------------------------------------------
   13. Testimonials Slider Layout
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   13. Testimonials Section Styles (Mockup Split Grid)
   -------------------------------------------------------------------------- */
.testimonials-grid-layout {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 50px;
  margin-top: 50px;
  align-items: center;
}

.testimonials-stats-column,
.testimonials-carousel-column {
  min-width: 0; /* Prevents slide tracks from stretching grid columns beyond wrapper bounds */
}

.testimonials-stats-column {
  border-right: 1.5px solid var(--light-border);
  padding-right: 50px;
  display: flex;
  align-items: center;
}

.testimonials-stats-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonials-global-stars {
  color: var(--primary);
  font-size: 22px;
  display: flex;
  gap: 5px;
}

.testimonials-stats-percentage {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.testimonials-stats-subtext {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.testimonials-carousel-column {
  position: relative;
}

.testimonials-slider-container {
  width: 100%;
  position: relative;
}

.testimonials-slider-track {
  position: relative;
  min-height: 200px;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-slide-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
}

.testimonial-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #e0e0e0;
  aspect-ratio: 1 / 1;
  width: 180px;
  height: 180px;
  box-shadow: var(--shadow-lg);
}

.testimonial-avatar-square {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-quote-badge {
  width: 42px;
  height: 42px;
  background-color: var(--primary);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(245, 196, 0, 0.3);
}

.testimonial-text-quote {
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
}

.testimonial-text-quote p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-dark);
  font-weight: 500;
  margin: 0;
}

.testimonial-reviewer-credentials {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.reviewer-name {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-company {
  font-size: 12.5px;
  color: var(--text-gray);
  font-weight: 600;
}

.testimonials-slider-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
  padding-right: 20px;
}

.slider-dots-indicator {
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 32px;
  height: 3px;
  background-color: #e5e5e5;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.slider-dot.active {
  background-color: #707070;
  width: 32px;
}

/* --------------------------------------------------------------------------
   14. FAQ Reach Maps & Accordions
   -------------------------------------------------------------------------- */
.faq-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.global-map-wrapper {
  position: relative;
  margin-top: 40px;
}

.global-map-img {
  width: 100%;
  opacity: 0.8;
}

.map-coordinate-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
}

.map-coordinate-pulse::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulseMarker 1.8s infinite ease-out;
}

/* Pulse coordinates */
.dot-1 {
  top: 38%;
  left: 45%;
}
.dot-2 {
  top: 52%;
  left: 70%;
}
.dot-3 {
  top: 30%;
  left: 25%;
}
.dot-4 {
  top: 65%;
  left: 35%;
}

@keyframes pulseMarker {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* Collapsible Accordions styling */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1px solid var(--light-border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 30px;
  text-align: left;
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.faq-accordion-trigger:hover {
  color: var(--primary);
}

.accordion-icon-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
}

.faq-accordion-item.active {
  border-color: var(--primary);
}

.faq-accordion-item.active .accordion-icon-toggle {
  background: var(--primary);
  color: var(--text-dark);
  transform: rotate(45deg);
}

.faq-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.accordion-panel-inner {
  padding: 0 30px 25px 30px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  border-top: 1px solid var(--light-bg);
}

/* --------------------------------------------------------------------------
   15. Contact Section & Dark Form Card
   -------------------------------------------------------------------------- */
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.contact-section-desc {
  font-size: 16px;
  margin-bottom: 40px;
}

.contact-details-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-details-icon-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon-gold-badge {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.1);
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text-detail span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-gray-light);
}

.contact-text-detail a,
.contact-text-detail p {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 2px 0 0 0;
}

.contact-premium-black-card {
  background: var(--dark-bg);
  border-radius: 8px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--primary);
}

.contact-premium-black-card .card-heading {
  color: var(--text-light);
  font-size: 24px;
  margin-bottom: 25px;
}

.theme-premium-dark-form .form-group {
  margin-bottom: 20px;
}

.theme-premium-dark-form .form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.theme-premium-dark-form input[type="text"],
.theme-premium-dark-form input[type="email"],
.theme-premium-dark-form input[type="number"],
.theme-premium-dark-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.theme-premium-dark-form input:focus,
.theme-premium-dark-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.btn-arrow-submit {
  position: relative;
  justify-content: space-between;
}

.btn-arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* --------------------------------------------------------------------------
   16. Side Drawer Form Sliding Widget
   -------------------------------------------------------------------------- */
.side-form-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  height: 100vh;
  background: var(--dark-bg);
  color: var(--text-light);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 3px solid var(--primary);
}

.side-form-drawer.open {
  right: 0;
}

.side-form-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
}

.side-form-close:hover {
  color: var(--primary);
}

.side-form-title {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 10px;
}

.side-form-desc {
  font-size: 13px;
  color: var(--text-gray-light);
  margin-bottom: 30px;
}

.native-theme-form .form-group {
  margin-bottom: 20px;
}

.native-theme-form label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-gray-light);
  margin-bottom: 8px;
}

.native-theme-form input,
.native-theme-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  padding: 12px 18px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  transition: var(--transition);
}

.native-theme-form input:focus,
.native-theme-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.side-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.side-form-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   17. Latest News grid layout
   -------------------------------------------------------------------------- */
.news-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.news-grid-card {
  background: var(--light-card);
  border-radius: 6px;
  border: 1px solid var(--light-border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.news-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.news-card-thumbnail {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.news-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-grid-card:hover .news-card-thumbnail img {
  transform: scale(1.05);
}

.news-card-badge-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--text-dark);
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card-body {
  padding: 35px;
}

.news-card-title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.news-card-title a:hover {
  color: var(--primary);
}

.news-card-excerpt {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.news-card-readmore {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news-archive-cta-wrapper {
  margin-top: 60px;
}

/* --------------------------------------------------------------------------
   18. Global Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  color: var(--text-gray-light);
  font-size: 14px;
}

.footer-widgets {
  padding: 80px 0 50px 0;
  border-bottom: 1px solid var(--dark-border);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-brand-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.footer-brand-title span {
  color: var(--primary);
}

.footer-tagline {
  line-height: 1.5;
  margin-bottom: 25px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--dark-border);
  color: var(--text-gray-light);
  font-size: 14px;
}

.footer-social-links a:hover {
  background-color: var(--primary);
  color: var(--text-dark);
}

.footer-title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

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

.footer-links-list a {
  color: var(--text-gray-light);
}

.footer-links-list a:hover {
  color: var(--primary);
  padding-left: 5px;
}

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

.footer-contact-list li {
  display: flex;
  gap: 15px;
}

.footer-contact-list li i {
  font-size: 16px;
  margin-top: 4px;
}

.footer-contact-list li span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-gray-light);
}

.footer-contact-list li a,
.footer-contact-list li p {
  color: #ffffff;
  margin: 2px 0 0 0;
  font-weight: 600;
}

.footer-bottom {
  padding: 25px 0;
  font-size: 13px;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--text-gray-light);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   19. Inner Page Standard Layouts
   -------------------------------------------------------------------------- */
.inner-page-banner {
  background-color: var(--dark-bg);
  color: #ffffff;
  padding: 80px 0;
  border-bottom: 3px solid var(--primary);
}

.inner-page-banner h1 {
  color: #ffffff;
  font-size: 38px;
  margin: 0;
}

.banner-subtitle {
  font-size: 15px;
  color: var(--text-gray-light);
  margin-top: 8px;
}

.post-meta-badge {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--primary);
}

.post-meta-badge span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-post-layout {
  max-width: 800px;
  margin: 0 auto;
}

.single-article-featured-image {
  margin-bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

.entry-content p {
  margin-bottom: 25px;
}

.post-nav-links {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--light-border);
}

.no-sections-fallback {
  padding: 120px 0;
  background: #f1f1f1;
}

.fallback-card {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}

.fallback-icon {
  font-size: 56px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   News/Blog Section Slider (Match Premium Design & Screenshot)
   -------------------------------------------------------------------------- */
.news-section {
  padding: 100px 0;
  background-color: #ffffff;
}

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

/* Grid Layout */
.news-grid-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

/* Intro Column */
.news-intro-column {
  padding-right: 20px;
}

.news-intro-inner {
  position: sticky;
  top: 120px;
}

.news-main-heading {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 850;
  line-height: 1.2;
  color: var(--text-dark);
  margin-top: 10px;
  margin-bottom: 25px;
}

/* Slider Navigation Buttons */
.news-slider-navigation {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.news-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  outline: none;
}

.prev-news-btn {
  background-color: var(--primary);
  color: #000000;
}

.prev-news-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(245, 196, 0, 0.4);
}

.next-news-btn {
  background-color: #000000;
  color: #ffffff;
}

.next-news-btn:hover {
  background-color: var(--primary);
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel/Slider Column */
.news-carousel-column {
  min-width: 0; /* Important: prevents overflow from expanding grid column */
}

.news-slider-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide standard Firefox scrollbar */
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px; /* spacing for card shadows */
}

.news-slider-container::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbar */
}

.news-slider-track {
  display: flex;
  gap: 30px;
}

/* News Card Item */
.news-carousel-card {
  flex: 0 0 380px; /* Fixed width for card to allow horizontal slide */
  background-color: #ffffff;
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
}

.news-carousel-card:hover {
  transform: translateY(-5px);
}

/* Thumbnail Overlay & Strip */
.news-card-thumbnail-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 2.7;
  overflow: hidden;
}

.news-card-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.news-carousel-card:hover .news-card-thumbnail-img {
  transform: scale(1.05);
}

/* Yellow Overlay Strip and White Action Button */
.news-card-yellow-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background-color: var(--primary);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-left: 20px;
  z-index: 2;
}

.news-card-strip-title {
  font-family: var(--font-headings);
  color: #000000;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  padding-right: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.news-card-action-box {
  background-color: #ffffff;
  color: #000000;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
}

.news-carousel-card:hover .news-card-action-box {
  background-color: #000000;
  color: #ffffff;
}

.news-card-action-box:hover {
  background-color: #000000 !important;
  color: var(--primary) !important;
}

/* Card Details */
.news-card-details {
  padding: 20px 0 10px 0;
}

.news-card-meta {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.meta-separator {
  color: var(--primary);
  margin: 0 8px;
  font-size: 9px;
}

.news-card-main-title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.news-card-main-title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-main-title a:hover {
  color: var(--primary);
}

/* Responsive news grid adjustments for 1024px */
@media (max-width: 1024px) {
  .news-grid-layout {
    grid-template-columns: 280px 1fr;
    gap: 30px;
  }
  .news-main-heading {
    font-size: 32px;
  }
  .news-carousel-card {
    flex: 0 0 340px;
  }
}

/* Responsive news grid adjustments for 768px */
@media (max-width: 768px) {
  .news-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-intro-column {
    padding-right: 0;
    text-align: center;
  }

  .news-intro-inner {
    position: static;
  }

  .news-slider-navigation {
    justify-content: center;
    margin-top: 20px;
  }

  .news-carousel-card {
    flex: 0 0 290px;
  }

  .news-card-yellow-strip {
    padding-left: 15px;
  }

  .news-card-main-title {
    font-size: 16px;
  }
}

/* --------------------------------------------------------------------------
   What is GFRP Rebar Section (Dark Theme)
   -------------------------------------------------------------------------- */
.what-is-gfrp-section {
  background-color: #111111;
  padding: 100px 0;
  color: #ffffff;
  position: relative;
  text-align: center;
}

.what-is-gfrp-header {
  max-width: 800px;
  margin: 0 auto 50px auto;
  padding: 0 20px;
}

.what-is-gfrp-heading {
  font-family: var(--font-headings);
  font-size: 42px;
  font-weight: 850;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 20px;
}

.what-is-gfrp-desc {
  color: #aaaaaa;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.what-is-gfrp-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.what-is-gfrp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.gfrp-feature-card {
  background-color: #1a1a1a;
  border: 1px solid #2c2c2c;
  padding: 30px 20px;
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}

.gfrp-feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(245, 196, 0, 0.15);
}

.gfrp-feature-icon {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.gfrp-feature-card:hover .gfrp-feature-icon {
  transform: scale(1.1);
}

.gfrp-feature-title {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gfrp-feature-desc {
  color: #888888;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   GFRP Vs. Steel Rebar Table Section (White Theme with Watermark)
   -------------------------------------------------------------------------- */
.comparison-table-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

.comparison-intro-heading {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 850;
  line-height: 1.2;
  color: var(--text-dark);
  margin-top: 10px;
}

.comparison-watermark {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-headings);
  font-size: 100px;
  font-weight: 900;
  color: #f6f6f6;
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
}

.table-wrapper {
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  text-align: left;
}

.comparison-table th {
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14px;
  padding: 18px 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #111111;
}

.comparison-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: #333333;
  border: 1px solid #eeeeee;
  transition: var(--transition);
}

.comparison-table tr:nth-child(even) td {
  background-color: #fcfcfc;
}

.comparison-table tr:hover td {
  background-color: rgba(245, 196, 0, 0.04);
}

.comparison-table td:first-child {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-table td:last-child {
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Real Projects Section
   -------------------------------------------------------------------------- */
.real-projects-section {
  padding: 100px 0;
  background-color: #fcfcfc;
  border-top: 1px solid #eeeeee;
}

.real-projects-grid-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: start;
}

.projects-intro-heading {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 850;
  line-height: 1.2;
  color: var(--text-dark);
  margin-top: 10px;
}

.projects-cards-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.project-showcase-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 2.6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.project-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.project-showcase-card:hover .project-showcase-img {
  transform: scale(1.05);
}

.project-showcase-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background: rgba(17, 17, 17, 0.95);
  padding: 22px 25px;
  border-radius: 4px;
  border-left: 4px solid var(--primary);
  z-index: 2;
  transition: var(--transition);
}

.project-showcase-card:hover .project-showcase-overlay {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-showcase-title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  transition: var(--transition);
}

.project-showcase-card:hover .project-showcase-title {
  color: var(--primary);
}

.project-showcase-desc {
  color: #aaaaaa;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive adjustments for Application page sections
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .what-is-gfrp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .comparison-grid,
  .real-projects-grid-layout {
    grid-template-columns: 260px 1fr;
    gap: 30px;
  }
  .comparison-watermark {
    display: none;
  }
}

@media (max-width: 768px) {
  .what-is-gfrp-heading,
  .comparison-intro-heading,
  .projects-intro-heading {
    font-size: 32px;
  }
  .what-is-gfrp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .comparison-grid,
  .real-projects-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .projects-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .what-is-gfrp-grid {
    grid-template-columns: 1fr;
  }
  .what-is-gfrp-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* --------------------------------------------------------------------------
   About Points Layout Style (Roads & Highways checklist)
   -------------------------------------------------------------------------- */
.about-points-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-left-image-col {
  padding-right: 20px;
}

.about-right-content-col {
  padding-left: 20px;
}

.about-points-checklist {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-point-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-point-item .point-icon {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-point-item .point-text {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .about-points-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-left-image-col,
  .about-right-content-col {
    padding: 0;
  }
}

/* --------------------------------------------------------------------------
   About Application Section (Dedicated Roads & Highways layout)
   -------------------------------------------------------------------------- */
.about-app-section {
  background-color: var(--light-card);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-app-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
  align-items: center;
}

.about-app-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-app-image-wrapper {
  width: 100%;
  position: relative;
  background-color: transparent;
  transition: var(--transition);
}

.about-app-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-app-image-wrapper:hover .about-app-img {
  transform: scale(1.02);
}

.about-app-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-app-header {
  margin-bottom: 15px;
}

.about-app-tag-gold {
  display: inline-block;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #f5c400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.about-app-heading {
  font-family: inherit;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.01em;
}

.about-app-description {
  font-family: inherit;
  font-size: 14.5px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

.about-app-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-app-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.2s ease;
}

.about-app-point-item:hover {
  transform: translateX(3px);
}

.about-app-point-icon {
  color: #f5c400;
  font-size: 17px;
  line-height: 1;
  margin-top: 3px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.about-app-point-item:hover .about-app-point-icon {
  transform: scale(1.1);
}

.about-app-point-text {
  font-family: inherit;
  font-size: 13.8px;
  line-height: 1.5;
  color: #333333;
}

.about-app-point-text strong {
  font-weight: 700;
  color: #1a1a1a;
}

@media (max-width: 1024px) {
  .about-app-grid {
    gap: 35px;
  }
  .about-app-heading {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .about-app-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-app-image-col {
    order: 1;
  }
  .about-app-content-col {
    order: 2;
  }
  .about-app-heading {
    font-size: 26px;
  }
  .about-app-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .about-app-heading {
    font-size: 22px;
    line-height: 1.3;
  }
  .about-app-section {
    padding: 45px 0;
  }
  .about-app-checklist {
    gap: 12px;
  }
  .about-app-point-text {
    font-size: 13px;
  }
}

/* --------------------------------------------------------------------------
   20. Responsive Design Breakpoints (Mobile First)
   -------------------------------------------------------------------------- */

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

  .hero-heading {
    font-size: 36px;
  }

  .products-grid-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .applications-grid-layout {
    grid-template-columns: 1fr;
  }

  .applications-rotated-title {
    display: none;
  }

  .mrg-stats-grid-layout {
    grid-template-columns: 1.2fr 1fr;
  }

  .mrg-stats-graphic-col {
    display: none;
  }

  .advantages-grid-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-padding {
    padding: 60px 0;
  }

  .top-bar {
    display: none;
  }

  .site-header {
    padding: 12px 0;
  }

  .main-navigation,
  .header-right .btn-quote {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-glass-card {
    padding: 30px;
  }

  .hero-heading {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .about-grid-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-cross-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-cross-metric-card {
    padding: 20px 25px;
  }

  .about-cross-metric-card:nth-child(odd) {
    padding-left: 0;
  }

  .about-cross-metric-card:nth-child(even) {
    padding-right: 0;
  }

  .products-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .applications-icon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mrg-stats-grid-layout {
    grid-template-columns: 1fr;
  }

  .mrg-stats-metrics-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--dark-border);
    padding-top: 30px;
  }

  .advantages-split-with-image {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .advantages-intro-col {
    position: static;
  }

  .advantages-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certifications-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-info {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .cta-banner-actions {
    flex-direction: column;
    gap: 20px;
  }

  .cta-banner-image-overlay {
    display: none;
  }

  .testimonial-slide-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .testimonial-avatar-col {
    display: flex;
    justify-content: center;
  }

  .testimonial-image-wrapper {
    max-width: 140px;
  }

  .faq-grid-layout {
    grid-template-columns: 1fr;
  }

  .global-map-wrapper {
    display: none;
  }

  .contact-grid-layout {
    grid-template-columns: 1fr;
  }

  .contact-premium-black-card {
    padding: 30px;
  }

  .theme-premium-dark-form .form-row-dual {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .side-form-drawer {
    width: 100%;
    right: -100%;
  }
}

/* --------------------------------------------------------------------------
   21. Sliding Mobile Menu Drawer Styling
   -------------------------------------------------------------------------- */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 290px;
  height: 100vh;
  background-color: var(--light-card);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}

.mobile-menu-drawer.open {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--light-border);
  padding-bottom: 15px;
}

.mobile-menu-title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-dark);
}

.mobile-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-navigation ul li a {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  display: block;
}

.mobile-navigation ul li a:hover {
  color: var(--primary);
}

.mobile-navigation ul .menu-item-has-children {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.mobile-navigation ul .menu-item-has-children > a {
  flex-grow: 1;
  max-width: calc(100% - 50px);
}

.mobile-submenu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: transform 0.3s ease;
  font-size: 14px;
}

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

.mobile-navigation ul .sub-menu {
  display: none;
  width: 100%;
  padding-left: 20px;
  margin-top: 15px;
}

.mobile-navigation ul .sub-menu li {
  margin-bottom: 15px;
  width: 100%;
}

.mobile-navigation ul .sub-menu li:last-child {
  margin-bottom: 0;
}

.mobile-menu-cta {
  margin-top: 30px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   GFRP Tabbed Advantages Section (Road vs Highway Tabs)
   -------------------------------------------------------------------------- */
.gfrp-tabs-section {
  background-color: #111111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gfrp-tabs-header {
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.gfrp-tabs-tag-gold {
  display: inline-block;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  color: #f5c400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.gfrp-tabs-main-heading {
  font-family: inherit;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.gfrp-tabs-intro-copy {
  font-family: inherit;
  font-size: 14.5px;
  line-height: 1.65;
  color: #aaaaaa;
}

.gfrp-tabs-intro-copy p {
  margin: 0;
}

/* Tab Container Card */
.gfrp-tabs-container-card {
  background-color: #181818;
  border: 1px solid #2c2c2c;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  width: 100%;
}

/* Tabs Navigation Pill Bar */
.gfrp-tabs-nav-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.gfrp-tab-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-color: #ffffff;
  color: #111111;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gfrp-tab-btn.active {
  background-color: #f5c400;
  color: #111111;
  box-shadow: 0 4px 20px rgba(245, 196, 0, 0.3);
}

.gfrp-tab-btn:hover {
  transform: translateY(-2px);
}

/* Tab Panel Content */
.gfrp-tab-content-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gfrp-tab-content-panel.active {
  display: block;
}

/* Top Demands Header in Card */
.gfrp-tab-demand-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px auto;
}

.gfrp-tab-demand-block .demand-title {
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.gfrp-tab-demand-block .demand-text {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 18px;
}

.gfrp-tab-demand-block .demand-gold-label {
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #f5c400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 5 Column Feature Cards Grid */
.gfrp-tab-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.gfrp-tab-feature-card {
  background-color: #222222;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}

.gfrp-tab-feature-card:hover {
  background-color: #2a2a2a;
  border-color: #f5c400;
  transform: translateY(-5px);
}

.gfrp-tab-feature-icon {
  color: #f5c400;
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gfrp-tab-feature-card:hover .gfrp-tab-feature-icon {
  transform: scale(1.15);
}

.gfrp-tab-feature-desc {
  font-family: inherit;
  font-size: 13px;
  line-height: 1.5;
  color: #dddddd;
  margin: 0;
}

.gfrp-tab-feature-desc strong {
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
}

/* Mobile & Tablet Responsive Breakpoints */
@media (max-width: 1200px) {
  .gfrp-tab-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .gfrp-tabs-main-heading {
    font-size: 32px;
  }
  .gfrp-tabs-container-card {
    padding: 30px;
  }
  .gfrp-tab-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .gfrp-tabs-section {
    padding: 60px 0;
  }
  .gfrp-tabs-main-heading {
    font-size: 28px;
  }
  .gfrp-tabs-nav-bar {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .gfrp-tab-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .gfrp-tabs-container-card {
    padding: 20px;
  }
  .gfrp-tab-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gfrp-tab-demand-block .demand-title {
    font-size: 18px;
  }
  .gfrp-tab-demand-block .demand-text {
    font-size: 13.5px;
  }
}

/* ==========================================================================
   19. Blog Listing Grid & Numbered Pagination Styles
   ========================================================================== */
.blog-listing-grid-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-bottom: 60px;
}

/* Override news-carousel-card to behave nicely in static grid */
.blog-listing-grid .news-carousel-card {
  flex: none;
  width: 100%;
}

/* Numbered Pagination Layout */
.mrg-numbered-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.mrg-numbered-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  background-color: transparent;
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.mrg-numbered-pagination .page-numbers:hover {
  background-color: #f1f1f1;
  color: var(--primary);
  border-color: #e5e5e5;
}

.mrg-numbered-pagination .page-numbers.current {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Prev/Next arrows styling */
.mrg-numbered-pagination .page-numbers.prev,
.mrg-numbered-pagination .page-numbers.next {
  background-color: transparent;
  color: #888888;
  font-size: 16px;
  border: 1px solid #e5e5e5;
}

.mrg-numbered-pagination .page-numbers.prev:hover,
.mrg-numbered-pagination .page-numbers.next:hover {
  background-color: var(--primary);
  color: var(--text-dark);
  border-color: var(--primary);
}

.mrg-numbered-pagination .dots {
  font-family: var(--font-headings);
  font-size: 14px;
  color: #888888;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* Responsive adjustment for blog list */
@media (max-width: 991px) {
  .blog-listing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 600px) {
  .blog-listing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .mrg-numbered-pagination .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* ==========================================================================
   20. Inner Page Hero Banner Styles
   ========================================================================== */
.page-hero-section {
  position: relative;
  height: 350px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.page-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 54px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: #ffffff !important;
  margin: 0 0 15px 0 !important;
  line-height: 1.2 !important;
  text-transform: capitalize !important;
}

.page-hero-breadcrumbs {
  font-family: "Open Sans", sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  color: #cccccc !important;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}

.page-hero-breadcrumbs a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.page-hero-breadcrumbs a:hover {
  color: #f5c400 !important;
}

.page-hero-breadcrumbs span.separator {
  color: #cccccc !important;
}

.page-hero-breadcrumbs span.active {
  color: #f5c400 !important;
  font-weight: 700 !important;
}

/* Responsive adjust */
@media (max-width: 768px) {
  .page-hero-section {
    height: 250px;
    min-height: 200px;
  }
  .page-hero-title {
    font-size: 38px !important;
    margin-bottom: 10px !important;
  }
  .page-hero-breadcrumbs {
    font-size: 13.5px !important;
  }
}

/* ==========================================================================
   21. Distributor Form Section Styles
   ========================================================================== */
.distributor-section {
  position: relative;
  padding: 80px 0;
  background-color: #f9f9f9;
  overflow: hidden;
}

.distributor-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.distributor-form-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.distributor-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.distributor-card-heading {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.distributor-card-subtext {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 35px;
}

/* Fallback Responsive Form Grid */
.distributor-fallback-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.distributor-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.distributor-form-group-full {
  grid-column: span 2;
}

.distributor-form-group label {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.distributor-form-group input,
.distributor-form-group select,
.distributor-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background-color: #f9f9f9;
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.distributor-form-group input:focus,
.distributor-form-group select:focus,
.distributor-form-group textarea:focus {
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.1);
}

.distributor-submit-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

/* CF7 styling override wrapper */
.distributor-card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.distributor-card .wpcf7-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 30px;
}

.distributor-card .wpcf7-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.distributor-card .wpcf7-form .form-group-full {
  grid-column: span 2;
}

.distributor-card .wpcf7-form label {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.distributor-card .wpcf7-form input[type="text"],
.distributor-card .wpcf7-form input[type="email"],
.distributor-card .wpcf7-form input[type="tel"],
.distributor-card .wpcf7-form select,
.distributor-card .wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background-color: #f9f9f9;
  border: 1.5px solid #e5e5e5;
  border-radius: 4px;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.distributor-card .wpcf7-form input:focus,
.distributor-card .wpcf7-form select:focus,
.distributor-card .wpcf7-form textarea:focus {
  background-color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 196, 0, 0.1);
}

.distributor-submit-row-cf7 {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.distributor-card .wpcf7-submit {
  background-color: var(--primary) !important;
  color: var(--text-dark) !important;
  font-family: var(--font-headings) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.distributor-card .wpcf7-submit:hover {
  background-color: var(--primary-hover) !important;
  transform: translateY(-2px) !important;
}

/* Tablet & Mobile responsive breaks */
@media (max-width: 991px) {
  .distributor-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .distributor-section {
    padding: 60px 0;
  }
  .distributor-form-grid,
  .distributor-card .wpcf7-form .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .distributor-form-group-full,
  .distributor-card .wpcf7-form .form-group-full {
    grid-column: span 1;
  }
}

/* ==========================================================================
   Bent GFRP Custom Sections (Hero & Problem)
   ========================================================================== */

/* 1. Bent Hero Section */
.bent-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  color: var(--text-light);
  overflow: hidden;
}

.bent-hero-content {
  max-width: 650px;
  position: relative;
  z-index: 3;
}

.bent-hero-title {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.bent-hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
}

.bent-hero-cta {
  display: flex;
  align-items: center;
}

/* Custom overlay for CTA Pill button on dark bg */
.bent-hero-cta .header-cta-pill {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bent-hero-cta .header-cta-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-dark);
}

.bent-hero-cta .header-cta-pill:hover .pill-arrow {
  background: var(--text-dark);
  color: var(--primary);
}

/* Responsive Bent Hero */
@media (max-width: 991px) {
  .bent-hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .bent-hero-section {
    min-height: auto;
    padding: 80px 0;
  }
  .bent-hero-title {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .bent-hero-desc {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

/* 2. Bent Problem Section */
.bent-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

.bent-problem-left {
  position: sticky;
  top: 100px;
}

.bent-problem-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-border);
}

.bent-problem-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.bent-problem-img-wrapper:hover .bent-problem-img {
  transform: scale(1.02);
}

.section-tag-gold {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 800;
  color: #d4a900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.section-heading-dark {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.bent-problem-description {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.bent-problem-subtitle {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.bent-problem-liabilities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.bent-problem-liabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-gray);
}

.bent-problem-liabilities-list .list-bullet-icon {
  color: #d4a900;
  font-size: 8px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bent-problem-stats-wrapper {
  border-top: 1px solid var(--light-border);
  margin-top: 30px;
}

.bent-problem-stat-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-border);
  align-items: center;
}

.bent-problem-stat-val {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.bent-problem-stat-lbl {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--text-gray);
}

/* Responsive Bent Problem */
@media (max-width: 991px) {
  .bent-problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bent-problem-left {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }
  .section-heading-dark {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .bent-problem-stat-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 0;
  }
  .bent-problem-stat-val {
    font-size: 24px;
  }
}

/* 3. Bent What is GFRP Section */
.bent-what-section {
  background: #ffffff;
}

.bent-what-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.bent-what-left {
  position: relative;
}

.bent-what-content {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-gray);
}

.bent-what-right {
  position: relative;
  padding-bottom: 30px; /* Offset spacing for the translated column */
}

.bent-what-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  align-items: start;
}

.bent-what-card {
  background: #f8fafc;
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
  transition: var(--transition);
}

.bent-what-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  border-color: var(--primary);
}

.bent-what-card-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
  flex-shrink: 0;
}

.bent-what-card-img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
}

.bent-what-card-title {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.35;
}

/* Stagger grid items on desktop view */
@media (min-width: 769px) {
  .bent-what-right-grid > :nth-child(even) {
    transform: translateY(30px);
  }
}

/* Responsive Bent What Section */
@media (max-width: 991px) {
  .bent-what-layout-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .bent-what-right {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .bent-what-right-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .bent-what-right-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .bent-what-card {
    padding: 14px 18px;
  }
}

/* 4. Bent GFRP Advantages Section */
.bent-adv-section {
  transition: background-color 0.3s ease;
}

.bent-adv-header {
  margin-bottom: 50px;
}

.bent-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.bent-adv-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.bent-adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  border-color: var(--primary);
}

.bent-adv-card-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5c400; /* Solid gold circle background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(245, 196, 0, 0.3);
  flex-shrink: 0;
}

.bent-adv-card-img {
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}

.bent-adv-card-title {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.bent-adv-card-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-gray);
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.bent-adv-card-spec {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dark);
  border-top: 1px solid #e2e8f0;
  padding-top: 15px;
  margin-top: auto;
}

.bent-adv-card-spec strong {
  color: #d4a900;
  font-weight: 700;
}

/* Dynamic columns for Bent GFRP Key Advantages */
@media (min-width: 769px) {
  .bent-adv-grid.columns-2 {
    grid-template-columns: 1fr 1fr;
  }
  .bent-adv-grid.columns-2 > :nth-child(odd):last-child {
    grid-column: span 2;
  }
  /* Default fallback just in case */
  .bent-adv-grid:not(.columns-3) > :nth-child(7) {
    grid-column: span 2;
  }
}

@media (min-width: 992px) {
  .bent-adv-grid.columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .bent-adv-grid.columns-3 > :nth-child(odd):last-child {
    grid-column: span 1;
  }
  /* In a 3-column layout, if the last item is 3n+1 (e.g. 7th item), let it span 3 columns */
  .bent-adv-grid.columns-3 > :nth-child(3n + 1):last-child {
    grid-column: span 3;
  }
}

/* Responsive Bent Advantages */
@media (max-width: 991px) {
  .bent-adv-grid {
    gap: 25px;
  }
  .bent-adv-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .bent-adv-grid {
    grid-template-columns: 1fr !important;
  }
  .bent-adv-grid > * {
    grid-column: span 1 !important;
  }
}

/* 5. Bent GFRP Comparison Table Section */
.bent-comp-section {
  transition: background-color 0.3s ease;
}

.bent-comp-header {
  margin-bottom: 40px;
}

.bent-comp-table-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.bent-comp-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bent-comp-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border: none;
}

.bent-comp-table th {
  background-color: #111111;
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14.5px;
  padding: 20px 24px;
  text-align: left;
  border: none;
}

.bent-comp-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-gray);
  border-bottom: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
  line-height: 1.55;
  text-align: left;
}

.bent-comp-table td:first-child {
  border-left: none;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
}

.bent-comp-table tr:last-child td {
  border-bottom: none;
}

/* Alternating Row Colors */
.bent-comp-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

/* Table Hover Effect */
.bent-comp-table tr:hover td {
  background-color: rgba(245, 196, 0, 0.02);
}

/* Responsive Table Breakpoint */
@media (max-width: 768px) {
  .bent-comp-table {
    min-width: 750px; /* Force scrollbar on smaller viewports */
  }
}

/* 6. Bent GFRP Use Cases Section */
.bent-cases-section {
  transition: background-color 0.3s ease;
}

.bent-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.bent-cases-col-left,
.bent-cases-col-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.bent-cases-intro {
  margin-bottom: 10px;
}

.section-heading-white {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.bent-cases-intro-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #aaaaaa;
  margin: 0;
}

.bent-cases-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 35px;
  border: 1px solid #2d2d2d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.bent-cases-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.bent-cases-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.bent-cases-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bent-cases-card-img {
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
}

.bent-cases-card-title {
  font-family: var(--font-headings);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
}

.bent-cases-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: #bbbbbb;
  margin: 0 0 25px 0;
}

.bent-cases-card-footer {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  border-top: 1px solid #2d2d2d;
  padding-top: 15px;
  line-height: 1.45;
}

/* Responsive Bent Use Cases */
@media (max-width: 991px) {
  .bent-cases-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .bent-cases-col-left,
  .bent-cases-col-right {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .bent-cases-card {
    padding: 25px;
  }
  .section-heading-white {
    font-size: 30px;
  }
}

/* ==========================================================================
   7. Bent GFRP Shapes & Customisation Section
   ========================================================================== */
.bent-shapes-custom-section {
  transition: background-color 0.3s ease;
}

.bent-shapes-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 50px;
  align-items: start;
}

.bent-shapes-info {
  position: sticky;
  top: 100px;
}

.bent-shapes-table-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.bent-shapes-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bent-shapes-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.bent-shapes-table th {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14.5px;
  padding: 20px 24px;
  text-align: left;
  border: none;
}

.bent-shapes-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--text-gray);
  border-bottom: 1px solid #e2e8f0;
  line-height: 1.55;
  text-align: left;
}

.bent-shapes-table td.cell-shape {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
}

.bent-shapes-table tr:last-child td {
  border-bottom: none;
}

/* Alternating Row Colors */
.bent-shapes-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

/* Table Hover Effect */
.bent-shapes-table tr:hover td {
  background-color: rgba(245, 196, 0, 0.02);
}

/* Column Widths */
.col-shape {
  width: 25%;
}
.col-app {
  width: 45%;
}
.col-diameters {
  width: 30%;
}

/* Bottom Notes Card */
.bent-shapes-notes-card {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  margin-top: 50px;
  border: 1px solid #e2e8f0;
}

.bent-shapes-note-para {
  margin: 0 0 15px 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-gray);
}

.bent-shapes-note-para strong {
  color: var(--text-dark);
}

.bent-shapes-note-para:last-child {
  margin-bottom: 0;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .bent-shapes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bent-shapes-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .bent-shapes-table {
    min-width: 650px; /* Force horizontal scrollbar on small viewports */
  }
  .bent-shapes-notes-card {
    padding: 24px;
    margin-top: 35px;
  }
}

/* ==========================================================================
   8. Bent GFRP About Manufacturer Section
   ========================================================================== */
.bent-about-manufacturer-section {
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bent-mfg-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: center;
}

.bent-mfg-content {
  display: flex;
  flex-direction: column;
}

.bent-mfg-desc-wysiwyg {
  margin-top: 15px;
  margin-bottom: 30px;
}

.bent-mfg-desc-wysiwyg p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin: 0 0 20px 0;
}

.bent-mfg-desc-wysiwyg p:last-child {
  margin-bottom: 0;
}

.bent-mfg-action {
  display: block;
}

.bent-mfg-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bent-mfg-btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--primary); /* Gold */
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bent-mfg-btn:hover {
  color: var(--primary);
}

.bent-mfg-btn:hover .bent-mfg-btn-icon {
  background-color: var(--text-dark);
  color: #ffffff;
  transform: translateX(5px);
}

.bent-mfg-image-wrap {
  position: relative;
  width: 100%;
}

.bent-mfg-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  display: block;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive Styles for Manufacturer Section */
@media (max-width: 991px) {
  .bent-mfg-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .bent-mfg-image-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .bent-mfg-desc-wysiwyg p {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 15px;
  }

  .bent-mfg-desc-wysiwyg {
    margin-bottom: 25px;
  }
}

/* ==========================================================================
   9. GFRP Problem & Solution Section
   ========================================================================== */
.gfrp-prob-sol-section {
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gfrp-prob-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.gfrp-prob-sol-col {
  display: flex;
  flex-direction: column;
}

/* Staggered layout on desktop */
@media (min-width: 992px) {
  .gfrp-prob-sol-grid .solution-col {
    margin-top: 60px;
  }
}

.gfrp-prob-sol-badge-wrap {
  position: relative;
  min-height: 80px;
  margin-bottom: 25px;
}

.gfrp-curved-badge {
  position: absolute;
  left: -15px;
  top: -35px;
  width: 110px;
  height: 110px;
  z-index: 1;
  pointer-events: none;
}

.gfrp-badge-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  animation: spinBadge 20s linear infinite;
  transform-origin: center;
}

.gfrp-badge-svg text {
  text-transform: uppercase;
}

@keyframes spinBadge {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.gfrp-prob-sol-heading-wrap {
  position: relative;
  z-index: 2;
  padding-left: 65px;
}

.gfrp-prob-sol-heading-wrap h2 {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  color: var(--text-dark);
}

.gfrp-prob-sol-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-gray);
  margin: 0;
}

/* Responsive Styles for Problem & Solution Section */
@media (max-width: 991px) {
  .gfrp-prob-sol-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .gfrp-prob-sol-heading-wrap h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .gfrp-prob-sol-badge-wrap {
    margin-bottom: 20px;
    min-height: 70px;
  }

  .gfrp-curved-badge {
    width: 90px;
    height: 90px;
    left: -8px;
    top: -25px;
  }

  .gfrp-prob-sol-heading-wrap {
    padding-left: 55px;
  }

  .gfrp-prob-sol-desc {
    font-size: 14.5px;
    line-height: 1.65;
  }
}

/* ==========================================================================
   10. GFRP About & Stats Counter Section
   ========================================================================== */
.gfrp-about-counter-section {
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gfrp-about-counter-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 50px;
  align-items: center;
}

.gfrp-about-counter-img-col {
  width: 100%;
}

.gfrp-about-counter-img-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
}

.gfrp-about-counter-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gfrp-about-counter-img-wrap:hover .gfrp-about-counter-img {
  transform: scale(1.02);
}

.gfrp-about-counter-content-col {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 45px 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
}

.gfrp-about-counter-tagline {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--primary); /* Gold/yellow color */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.gfrp-about-counter-heading {
  font-family: var(--font-headings);
  font-size: 34px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 25px 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.gfrp-about-counter-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
}

.gfrp-about-counter-desc p {
  margin: 0 0 16px 0;
}

.gfrp-about-counter-desc p:last-child {
  margin-bottom: 0;
}

/* Counter Row */
.gfrp-about-counter-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
  gap: 20px;
}

.gfrp-about-counter-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gfrp-about-counter-divider {
  width: 1px;
  height: 48px;
  background-color: #e2e8f0;
  align-self: center;
  margin: 0 10px;
  flex-shrink: 0;
}

.gfrp-about-counter-number-wrap {
  font-family: var(--font-headings);
  color: #1e3a8a; /* Deep Blue color from Figma mockup */
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.gfrp-counter-val {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.gfrp-about-counter-prefix,
.gfrp-about-counter-suffix {
  font-size: 28px;
  font-weight: 800;
}

.gfrp-about-counter-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  color: #334155; /* Slate color */
  line-height: 1.35;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .gfrp-about-counter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gfrp-about-counter-img-col {
    max-width: 550px;
    margin: 0 auto;
  }

  .gfrp-about-counter-content-col {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .gfrp-about-counter-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .gfrp-counter-val {
    font-size: 30px;
  }

  .gfrp-about-counter-prefix,
  .gfrp-about-counter-suffix {
    font-size: 24px;
  }

  .gfrp-about-counter-label {
    font-size: 12.5px;
  }

  .gfrp-about-counter-divider {
    margin: 0 5px;
  }
}

@media (max-width: 575px) {
  .gfrp-about-counter-content-col {
    padding: 30px 24px;
  }

  .gfrp-about-counter-stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .gfrp-about-counter-divider {
    width: 100%;
    height: 1px;
    margin: 5px 0;
  }

  .gfrp-about-counter-box {
    width: 100%;
  }
}

/* ==========================================================================
   11. GFRP Table of Substitution Section
   ========================================================================= */
.gfrp-subst-section {
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gfrp-subst-header {
  margin-bottom: 40px;
}

.gfrp-subst-grid {
  display: grid;
  gap: 40px;
  width: 100%;
}

.gfrp-subst-grid.layout-1 {
  grid-template-columns: 1fr;
}

.gfrp-subst-grid.layout-2 {
  grid-template-columns: 1fr 1fr;
}

.gfrp-subst-table-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gfrp-subst-table-title {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gfrp-subst-table-wrapper {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.gfrp-subst-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gfrp-subst-table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.gfrp-subst-table th {
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 13.5px;
  padding: 15px 22px;
  text-align: left;
  border: none;
  letter-spacing: 0.02em;
}

.gfrp-subst-table td {
  padding: 12px 22px;
  font-size: 13.5px;
  color: var(--text-dark);
  border-bottom: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
  line-height: 1.5;
  font-family: var(--font-body);
}

.gfrp-subst-table td:first-child {
  border-left: none;
  font-weight: 700;
}

.gfrp-subst-table tr:last-child td {
  border-bottom: none;
}

/* Alternating Row Colors */
.gfrp-subst-table tr:nth-child(even) td {
  background-color: #f8fafc;
}

/* Table Hover Effect */
.gfrp-subst-table tr:hover td {
  background-color: rgba(245, 196, 0, 0.02);
}

/* Bottom Notes Wrap */
.gfrp-subst-notes-wrap {
  margin-top: 40px;
  font-family: var(--font-body);
  border-top: 1px solid #e2e8f0;
  padding-top: 25px;
}

.gfrp-subst-notes-title {
  font-family: var(--font-headings);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  letter-spacing: 0.02em;
}

.gfrp-subst-notes-list {
  padding-left: 20px;
  margin: 0;
}

.gfrp-subst-notes-list li {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 8px;
}

.gfrp-subst-notes-list li:last-child {
  margin-bottom: 0;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .gfrp-subst-grid.layout-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gfrp-subst-table th {
    padding: 13px 18px;
    font-size: 13px;
  }

  .gfrp-subst-table td {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .gfrp-subst-header {
    margin-bottom: 30px;
  }

  .gfrp-subst-notes-wrap {
    margin-top: 30px;
  }

  .gfrp-subst-table-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

/* ==========================================================================
   12. GFRP Performance Applications Section
   ========================================================================== */
.gfrp-perf-app-section {
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gfrp-perf-app-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}

.gfrp-perf-app-left-col {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gfrp-perf-app-header {
  margin-bottom: 25px;
}

.gfrp-perf-app-right-col {
  width: 100%;
}

.gfrp-perf-app-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  width: 100%;
}

.gfrp-perf-app-card {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  transition: transform 0.2s ease;
}

.gfrp-perf-app-card:hover {
  transform: translateX(4px);
}

.gfrp-perf-app-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  transition: all 0.3s ease;
}

.gfrp-perf-app-card:hover .gfrp-perf-app-icon-box {
  background-color: var(--primary);
  border-color: var(--primary);
}

.gfrp-perf-app-card:hover .gfrp-perf-app-icon-box i {
  color: #ffffff !important;
}

.gfrp-perf-app-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.gfrp-perf-app-card-label {
  font-family: var(--font-headings);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .gfrp-perf-app-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gfrp-perf-app-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 768px) {
  .gfrp-perf-app-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }

  .gfrp-perf-app-card-label {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .gfrp-perf-app-icons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   13. About MRG Composites (Dark Section)
   ========================================================================== */
.about-mrg-section {
  transition: background-color 0.3s ease;
  position: relative;
  overflow: visible; /* Allows emblem to hang over the top edge */
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-mrg-container {
  position: relative;
}

/* Gold Emblem in top right */
.mrg-section-emblem {
  position: absolute;
  top: -36px; /* Positioned to hang exactly over the top edge of the section */
  right: 15px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.mrg-emblem-bar {
  width: 24px;
  background-color: var(--primary);
  border-radius: 2px;
}

.mrg-emblem-bar.bar-left,
.mrg-emblem-bar.bar-right {
  height: 48px;
  margin-top: 24px;
}

.mrg-emblem-bar.bar-middle {
  height: 48px;
  margin-top: 0;
}

/* Symmetrical Grid Layout */
.about-mrg-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.about-mrg-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-mrg-heading {
  font-family: var(--font-headings);
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 25px;
  letter-spacing: -0.01em;
}

.about-mrg-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.about-mrg-desc p {
  margin-top: 0;
  margin-bottom: 18px;
}

.about-mrg-desc p:last-child {
  margin-bottom: 0;
}

/* Custom White Pill CTA Button */
.about-mrg-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: #ffffff;
  padding: 5px 5px 5px 22px;
  border-radius: 30px;
  text-decoration: none !important;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 14.5px;
  color: #000000;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: fit-content;
}

.about-mrg-btn span {
  line-height: 1;
}

.about-mrg-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-mrg-btn:hover {
  background-color: var(--primary);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 192, 0, 0.2);
}

.about-mrg-btn:hover .about-mrg-btn-icon {
  background-color: #000000;
  color: #ffffff;
  transform: rotate(-45deg);
}

/* Right Column: 3D Render Image Wrapper */
.about-mrg-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-mrg-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}

.about-mrg-image-wrap:hover .about-mrg-img {
  transform: scale(1.02);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .about-mrg-grid {
    gap: 50px;
  }
  .about-mrg-heading {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .about-mrg-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-mrg-heading {
    font-size: 32px;
  }
  .about-mrg-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-mrg-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about-mrg-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .about-mrg-desc {
    font-size: 14.5px;
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .mrg-section-emblem {
    display: none; /* Hide emblem on small mobile devices to prevent layout clutter */
  }
}

/* ================================================================
   GFRP Rebar Sizes Grid Section
   ================================================================ */
.rebar-sizes-section {
  padding: 70px 0 80px;
}

/* Tag line */
.rs-tag-line {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

/* Section heading */
.rs-main-title {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: #111111;
  margin: 0 0 40px 0;
  line-height: 1.2;
}

.rs-main-title.rs-dark,
.rs-tag-line.rs-dark {
  color: #ffffff;
}

/* ── Grid ── */
.rs-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

/* ── Card ── */
.rs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
}

.rs-card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #2a2a2a;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.rs-card:hover .rs-card-img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

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

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

/* Placeholder (no image set) */
.rs-placeholder {
  width: 100%;
  height: 100%;
}

.rs-placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Size label below card */
.rs-label {
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .rs-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}

@media (max-width: 991px) {
  .rs-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .rs-main-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .rebar-sizes-section {
    padding: 50px 0;
  }
  .rs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .rs-main-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

@media (max-width: 540px) {
  .rs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .rs-label {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .rs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* ==========================================================================
   Header Responsive Fixes
   ========================================================================== */
@media (max-width: 1024px) {
  /* Hide elements that don't fit on tablet/mobile */
  .header-top-row {
    display: none !important;
  }
  .main-navigation {
    display: none !important;
  }
  .header-cta-pill.trigger-side-drawer {
    display: none !important;
  }

  /* Show Mobile Hamburger */
  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Adjust Grid to Flex for Mobile */
  .header-grid-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .header-logo-column {
    border-right: none !important;
    padding: 10px 0 !important;
  }

  .header-content-column {
    width: auto;
  }

  .header-bottom-row {
    border-top: none !important;
    justify-content: flex-end;
  }

  .header-actions-wrapper {
    padding: 0;
    border-left: none;
  }
}

/* Ensure standard pages like Privacy Policy and Terms have proper mobile spacing */
@media (max-width: 768px) {
  .standard-page-layout {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .standard-entry-content {
    padding-left: 5px !important;
    padding-right: 5px !important;
    box-sizing: border-box;
  }

  /* Testimonials Mobile Fixes */
  .testimonials-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .testimonials-stats-column {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1.5px solid var(--light-border) !important;
    padding-bottom: 30px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .testimonials-stats-inner {
    align-items: center !important;
  }

  .testimonial-slide-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .testimonial-avatar-wrapper {
    margin: 0 auto !important;
    width: 140px !important;
    height: 140px !important;
  }

  .testimonial-quote-badge {
    margin: 0 auto 15px auto !important;
  }

  .testimonial-reviewer-credentials {
    justify-content: center !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  .testimonials-slider-controls {
    justify-content: center !important;
    padding-right: 0 !important;
    margin-top: 25px !important;
  }
}

.mrg-stats-desc p {
  color: #fff;
}

/* --------------------------------------------------------------------------
   14. Hero Modal Popup
   -------------------------------------------------------------------------- */
.hero-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

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

.hero-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.hero-modal-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  padding: 40px;
  overflow-y: auto;
  z-index: 2;
  animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s;
}

.hero-modal-close:hover {
  color: var(--primary);
}

.hero-modal-inner {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-modal-content {
    padding: 30px 20px;
    width: 95%;
  }
}

/* Video Modal Additions */
.video-modal-content {
  width: 90%;
  max-width: 900px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.video-modal-content .hero-modal-close {
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: #000;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   15. Single Post Page Fixes
   -------------------------------------------------------------------------- */
.post-nav-links {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-border);
}
.post-nav-links .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.post-nav-links .nav-previous,
.post-nav-links .nav-next {
  width: 48%;
}
.post-nav-links .nav-next {
  text-align: right;
}
.post-nav-links a {
  text-decoration: none;
  display: block;
}
.post-nav-links .nav-subtitle {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  font-weight: 600;
}
.post-nav-links .nav-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.post-nav-links a:hover .nav-title {
  color: var(--primary);
}

@media (max-width: 768px) {
  /* Mobile Padding for Single Post Page */
  .site-content-container,
  .single-post-layout {
    padding-left: 10px !important;
    padding-right: 10px !important;
    box-sizing: border-box;
  }
  .inner-page-banner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Post Nav Layout for Mobile */
  .post-nav-links .nav-previous,
  .post-nav-links .nav-next {
    width: 100%;
    text-align: left;
  }
  .post-nav-links .nav-next {
    text-align: right;
  }
}
