/**
 * SAM Gas Projects - Frontend CSS
 * Production-ready scoped styling for Astra Theme & Elementor
 */

:root {
  --sam-navy-dark: #071326;
  --sam-navy: #0B1C38;
  --sam-navy-light: #162E56;
  --sam-blue: #005BAA;
  --sam-blue-soft: #EBF3FC;
   /* --sam-gold: #FFB703;
  --sam-gold-hover: #FB8500;
  --sam-gold-soft: #FFF8E7; */
  /* Logo Signature Green Combinations (replacing former yellow-gold) */
  --sam-gold: #76BC21;              /* Primary Logo Vibrant Green */
  --sam-gold-hover: #5E9C16;        /* Deep Rich Green on Hover */
  --sam-gold-soft: #F1F9E8;         /* Fresh Soft Green Background Tint */
  --sam-text-main: #1E293B;
  --sam-text-muted: #64748B;
  --sam-text-light: #94A3B8;
  --sam-bg-gray: #F8FAFC;
  --sam-bg-card: #FFFFFF;
  --sam-border: #E2E8F0;
  --sam-border-dark: #1E293B;
  --sam-radius-sm: 6px;
  --sam-radius-md: 10px;
  --sam-radius-lg: 16px;
  --sam-radius-xl: 24px;
  --sam-shadow-sm: 0 2px 8px rgba(11, 28, 56, 0.04);
  --sam-shadow-md: 0 8px 24px rgba(11, 28, 56, 0.08);
  --sam-shadow-lg: 0 16px 36px rgba(11, 28, 56, 0.12);
  --sam-font-heading: 'Montserrat', sans-serif;
  --sam-font-body: 'Inter', sans-serif;
  --sam-transition: all 0.38s cubic-bezier(0.25, 1, 0.5, 1);
  --sam-transition-fast: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  --sam-transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Global Smooth Scroll & Prevent Horizontal Overflow / Layout Shift */
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* Global Reset for Scoped Components */
.sam-gp-header-bar,
.sam-gp-hero-section,
.sam-gp-section,
.sam-gp-cta-section,
.sam-gp-footer,
.sam-gp-counters-bar {
  font-family: var(--sam-font-body);
  color: var(--sam-text-main);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

.sam-gp-header-bar *,
.sam-gp-hero-section *,
.sam-gp-section *,
.sam-gp-cta-section *,
.sam-gp-footer *,
.sam-gp-counters-bar * {
  box-sizing: border-box;
}

/* Container */
.sam-gp-container {
  width: 100%;
 max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Common Badges */
.sam-gp-badge {
  display: inline-block;
  font-family: var(--sam-font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sam-blue);
  margin-bottom: 12px;
  position: relative;
}

.sam-gp-badge::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--sam-gold);
  margin-top: 4px;
}

/* Common Section Header Split */
.sam-gp-section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 30px;
}

.sam-gp-header-left {
  max-width: 580px;
}

.sam-gp-section-title {
  font-family: var(--sam-font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--sam-navy);
  margin: 0;
  letter-spacing: -0.5px;
}

.sam-gp-header-right {
  max-width: 480px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.sam-gp-header-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--sam-text-muted);
  margin: 0;
}

.sam-gp-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sam-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sam-navy);
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-link-arrow:hover {
  color: var(--sam-blue);
  transform: translateX(4px);
}

/* Common Buttons */
.sam-gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sam-font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--sam-radius-sm);
  text-decoration: none;
  transition: var(--sam-transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.sam-gp-btn-gold {
  background-color: var(--sam-gold);
  color: #FFFFFF;
}

.sam-gp-btn-gold:hover {
  background-color: var(--sam-gold-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(118, 188, 33, 0.38);
}

.sam-gp-btn-navy {
  background-color: var(--sam-navy);
  color: #FFFFFF;
}

.sam-gp-btn-navy:hover {
  background-color: var(--sam-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 28, 56, 0.25);
}

.sam-gp-btn-outline-light {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  backdrop-filter: blur(4px);
}

.sam-gp-btn-outline-light:hover {
  background-color: #FFFFFF;
  color: var(--sam-navy);
  border-color: #FFFFFF;
}

/* ==========================================================================
   1. HEADER COMPONENT
   ========================================================================== */
.sam-gp-header-bar {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.sam-gp-header-bar.sam-gp-sticky {
  position: sticky;
  top: 0;
}

.sam-gp-header-bar.is-scrolled {
  box-shadow: 0 8px 24px rgba(7, 19, 38, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.94) !important;
}

.sam-gp-header-container {
max-width: 1360px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sam-gp-header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sam-gp-header-logo img,
.sam-gp-header-logo svg {
  height: auto;
  max-height: 48px;
  display: block;
}

.sam-gp-desktop-nav .sam-gp-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
}

.sam-gp-nav-item a {
  font-family: var(--sam-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: var(--sam-transition);
}

.sam-gp-nav-item a:hover,
.sam-gp-nav-item.is-active a {
  color: var(--sam-blue);
}

.sam-gp-nav-item.is-active a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--sam-blue);
  border-radius: 2px;
}

.sam-gp-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.sam-gp-search-trigger {
  background: none;
  border: none;
  color: #475569;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sam-transition);
}

.sam-gp-search-trigger:hover {
  color: var(--sam-blue);
}

.sam-gp-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--sam-navy);
  color: #FFFFFF;
  font-family: var(--sam-font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-header-btn:hover {
  background-color: var(--sam-blue);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.sam-gp-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.sam-gp-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--sam-navy);
  transition: var(--sam-transition);
}

/* Mobile Backdrop Overlay */
.sam-gp-mobile-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(7, 19, 38, 0.65) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 99998 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.sam-gp-mobile-overlay.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Mobile Drawer (100% hidden off-screen when closed to prevent layout shift & horizontal scrolling) */
.sam-gp-mobile-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(320px, 86vw) !important;
  height: 100vh !important;
  height: 100dvh !important;
  background-color: #FFFFFF !important;
  box-shadow: -10px 0 35px rgba(11, 28, 56, 0.18) !important;
  z-index: 99999 !important;
  transform: translateX(105%) !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              visibility 0.35s ease !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.sam-gp-mobile-drawer.is-open {
  transform: translateX(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body.sam-gp-drawer-open {
  overflow: hidden !important;
  touch-action: none !important;
}

.sam-gp-mobile-drawer-inner {
  padding: 24px 20px;
}

.sam-gp-mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sam-border, #E2E8F0);
}

.sam-gp-mobile-logo {
  max-width: 140px;
  height: auto;
  display: block;
}

.sam-gp-mobile-close {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #F1F5F9 !important;
  border: 1px solid var(--sam-border, #E2E8F0) !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--sam-navy, #0B1C38) !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: none !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.sam-gp-mobile-close:hover {
  background: var(--sam-gold, #76BC21) !important;
  border-color: var(--sam-gold, #76BC21) !important;
  color: #FFFFFF !important;
  transform: rotate(90deg) scale(1.05) !important;
}

.sam-gp-mobile-nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
}

.sam-gp-mobile-nav-list li {
  margin-bottom: 0 !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.sam-gp-mobile-nav-list a {
  display: block;
  padding: 13px 4px;
  font-family: var(--sam-font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--sam-navy);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.25s ease;
}

.sam-gp-mobile-nav-list a:hover {
  color: var(--sam-gold, #76BC21);
  padding-left: 6px;
}

.sam-gp-mobile-cta {
  margin-top: 10px;
}

.sam-gp-btn-block {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   2. HERO COMPONENT
   ========================================================================== */
.sam-gp-hero-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 740px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
  padding: 95px 0 0 0;
}

/* Video Background Layer */
.sam-gp-hero-video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.sam-gp-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sam-gp-hero-yt-bg-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 aspect ratio */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sam-gp-hero-yt-bg-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* Gradient Overlay - Dark Navy on Left, Glowing Refinery on Right */
.sam-gp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, rgba(7, 19, 38, 0.95) 0%, rgba(7, 19, 38, 0.82) 42%, rgba(7, 19, 38, 0.45) 75%, rgba(7, 19, 38, 0.22) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sam-gp-hero-overlay.sam-gp-overlay-classic {
  background: rgba(7, 19, 38, 0.75);
}

.sam-gp-hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
 max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
}

.sam-gp-hero-main {
  max-width: 680px;
  padding-top: 35px;
}

.sam-gp-hero-preheading {
  font-family: var(--sam-font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.2px;
  color: #CBD5E1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.sam-gp-hero-title {
  font-family: var(--sam-font-heading);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 22px 0;
  letter-spacing: -0.5px;
}

.sam-gp-hero-title br {
  display: inline;
}

.sam-gp-highlight {
  color: var(--sam-gold);
  display: block;
}

.sam-gp-hero-desc {
  font-family: var(--sam-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #CBD5E1;
  margin: 0 0 34px 0;
  max-width: 580px;
}

.sam-gp-hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Secondary Button variant */
.sam-gp-btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sam-font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--sam-radius-sm);
  text-decoration: none;
  transition: var(--sam-transition);
  cursor: pointer;
  background-color: #0B1C38;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.sam-gp-btn-hero-secondary:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--sam-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.2);
}

/* Bottom Bar - Features & Video Play */
.sam-gp-hero-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0 28px 0;
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sam-gp-hero-features-grid {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.sam-gp-hero-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sam-gp-hero-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sam-gold);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.sam-gp-hero-feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--sam-gold);
}

.sam-gp-hero-feat-text {
  font-family: var(--sam-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: 0.15px;
}

.sam-gp-hero-video-box {
  flex-shrink: 0;
}

.sam-gp-video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  cursor: pointer;
}

.sam-gp-play-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--sam-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sam-transition);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.sam-gp-play-icon-circle svg {
  width: 16px;
  height: 16px;
  fill: var(--sam-navy-dark);
  margin-left: 2px;
}

.sam-gp-video-play-btn:hover .sam-gp-play-icon-circle {
  transform: scale(1.1);
  background-color: var(--sam-gold);
  box-shadow: 0 0 0 10px rgba(118, 188, 33, 0.35);
}

.sam-gp-video-play-btn:hover .sam-gp-play-icon-circle svg {
  fill: #FFFFFF;
}

.sam-gp-video-label {
  font-family: var(--sam-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

.sam-gp-video-play-btn:hover .sam-gp-video-label {
  color: var(--sam-gold);
}

/* Responsive Styles for Hero Section */
@media (max-width: 1100px) {
  .sam-gp-hero-features-grid {
    gap: 22px;
  }
}

@media (max-width: 991px) {
  .sam-gp-hero-title {
    font-size: 42px;
  }
  .sam-gp-hero-footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .sam-gp-hero-video-box {
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  .sam-gp-hero-section {
    min-height: auto;
    padding: 70px 0 0 0;
  }
  .sam-gp-hero-content-wrap {
    min-height: auto;
  }
  .sam-gp-hero-title {
    font-size: 32px;
  }
  .sam-gp-hero-desc {
    font-size: 15px;
  }
  .sam-gp-hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
  }
  .sam-gp-hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .sam-gp-btn-gold,
  .sam-gp-btn-hero-secondary,
  .sam-gp-btn-outline-light {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   3. SOLUTIONS GRID & CAROUSEL COMPONENT
   ========================================================================== */
.sam-gp-section {
  padding: 85px 0;
  /* background-color: #FFFFFF; */
}

/* Grid Mode */
.sam-gp-solutions-grid {
  display: grid;
  gap: 20px;
}

.sam-gp-solutions-grid.sam-gp-grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.sam-gp-solutions-grid.sam-gp-grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sam-gp-solutions-grid.sam-gp-grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sam-gp-solutions-grid.sam-gp-grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Carousel Mode */
.sam-gp-solutions-carousel-wrap {
  position: relative;
  padding: 0 48px;
}

.sam-gp-solutions-carousel-wrap .sam-gp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1.5px solid var(--sam-border);
  color: var(--sam-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--sam-transition);
  z-index: 10;
  box-shadow: 0 4px 14px rgba(11, 28, 56, 0.1);
}

.sam-gp-solutions-carousel-wrap .sam-gp-slider-arrow:hover {
  background-color: var(--sam-navy);
  border-color: var(--sam-navy);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.sam-gp-solutions-carousel-wrap .sam-gp-slider-prev {
  left: 0;
}

.sam-gp-solutions-carousel-wrap .sam-gp-slider-next {
  right: 0;
}

.sam-gp-solutions-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 4px 16px 4px;
}

.sam-gp-solutions-track::-webkit-scrollbar {
  display: none;
}

.sam-gp-solutions-track.sam-gp-view-4 .sam-gp-solution-card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 250px;
}

.sam-gp-solutions-track.sam-gp-view-3 .sam-gp-solution-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 280px;
}

.sam-gp-solutions-track.sam-gp-view-5 .sam-gp-solution-card {
  flex: 0 0 calc((100% - 80px) / 5);
  min-width: 220px;
}

/* Card Structure */
.sam-gp-solution-card {
  background-color: var(--sam-bg-card);
  border-radius: var(--sam-radius-md);
  border: 1px solid var(--sam-border);
  box-shadow: var(--sam-shadow-sm);
  transition: var(--sam-transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sam-gp-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sam-shadow-lg);
  border-color: #CBD5E1;
}

.sam-gp-solution-card-inner {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sam-gp-solution-img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #F1F5F9;
  display: block;
}

.sam-gp-solution-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sam-gp-solution-card:hover .sam-gp-solution-img-box img {
  transform: scale(1.08);
}

/* Footer: Title on Top, Request a Quote Button Below */
.sam-gp-solution-footer {
  padding: 16px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  flex-grow: 1;
}

.sam-gp-solution-title {
  font-family: var(--sam-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--sam-navy);
  margin: 0;
  line-height: 1.35;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sam-gp-solution-title-link {
  text-decoration: none;
  color: inherit;
  transition: var(--sam-transition);
}

.sam-gp-solution-card:hover .sam-gp-solution-title-link {
  color: var(--sam-blue);
}

/* "Request a Quote" Button below text */
.sam-gp-solution-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sam-font-heading);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: var(--sam-radius-sm);
  background-color: var(--sam-gold);
  color: var(--sam-navy-dark);
  text-decoration: none;
  transition: var(--sam-transition);
  border: 1px solid var(--sam-gold);
  margin-top: auto;
  cursor: pointer;
  letter-spacing: 0.2px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.sam-gp-solution-btn svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.sam-gp-solution-btn:hover {
  background-color: var(--sam-gold-hover);
  border-color: var(--sam-gold-hover);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(118, 188, 33, 0.35);
  transform: translateY(-1px);
}

.sam-gp-solution-btn:hover svg {
  transform: translateX(3px);
}

/* Responsive adjustments for Solutions */
@media (max-width: 1200px) {
  .sam-gp-solutions-grid.sam-gp-grid-cols-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .sam-gp-solutions-grid.sam-gp-grid-cols-6,
  .sam-gp-solutions-grid.sam-gp-grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam-gp-solutions-track.sam-gp-view-4 .sam-gp-solution-card,
  .sam-gp-solutions-track.sam-gp-view-5 .sam-gp-solution-card {
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 240px;
  }
}

@media (max-width: 600px) {
  .sam-gp-solutions-carousel-wrap {
    padding: 0 15px;
  }
  .sam-gp-solutions-carousel-wrap .sam-gp-slider-arrow {
    display: none;
  }
  .sam-gp-solutions-grid.sam-gp-grid-cols-6,
  .sam-gp-solutions-grid.sam-gp-grid-cols-4,
  .sam-gp-solutions-grid.sam-gp-grid-cols-3,
  .sam-gp-solutions-grid.sam-gp-grid-cols-2 {
    grid-template-columns: 1fr;
  }
  .sam-gp-solutions-track .sam-gp-solution-card {
    flex: 0 0 85%;
    min-width: auto;
  }
}

/* ==========================================================================
   4. ABOUT COMPONENT
   ========================================================================== */
.sam-gp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.sam-gp-about-image-card {
  position: relative;
  border-radius: var(--sam-radius-xl);
  overflow: hidden;
  box-shadow: var(--sam-shadow-lg);
  aspect-ratio: 4 / 3;
}

.sam-gp-about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam-gp-about-play-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 3;
}

.sam-gp-pulsing-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  animation: samGPPulse 2s infinite;
}

.sam-gp-play-icon-inner {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: var(--sam-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: var(--sam-transition);
}

.sam-gp-about-play-center:hover .sam-gp-play-icon-inner {
  background-color: var(--sam-gold);
  transform: scale(1.1);
}

@keyframes samGPPulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.sam-gp-about-title {
  font-family: var(--sam-font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--sam-navy);
  margin: 0 0 18px 0;
  letter-spacing: -0.5px;
}

.sam-gp-about-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--sam-text-muted);
  margin: 0 0 32px 0;
}

.sam-gp-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sam-border);
}

.sam-gp-stat-val {
  font-family: var(--sam-font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--sam-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.sam-gp-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sam-text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   5. PRODUCT ALTERNATING SHOWCASE COMPONENT
   ========================================================================== */
.sam-gp-product-showcase-section {
  background-color: #F8FAFC;
  padding: 90px 0;
}

.sam-gp-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 75px;
}

.sam-gp-showcase-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.sam-gp-layout-image-left {
  flex-direction: row;
}

.sam-gp-layout-image-right {
  flex-direction: row-reverse;
}

.sam-gp-showcase-media-col {
  flex: 1;
}

.sam-gp-showcase-content-col {
  flex: 1;
}

.sam-gp-showcase-img-box {
  border-radius: var(--sam-radius-xl);
  overflow: hidden;
  box-shadow: var(--sam-shadow-lg);
  background-color: transparent;
  width: 100%;
  height: auto;
}

.sam-gp-showcase-img-box img {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.sam-gp-showcase-row:hover .sam-gp-showcase-img-box img {
  transform: scale(1.04);
}

.sam-gp-showcase-title {
  font-family: var(--sam-font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--sam-navy);
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.sam-gp-showcase-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--sam-text-muted);
  margin: 0 0 24px 0;
}

.sam-gp-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sam-gp-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--sam-text-main);
}

.sam-gp-check-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ==========================================================================
   6. CLIENTS CAROUSEL COMPONENT
   ========================================================================== */
.sam-gp-clients-section {
  padding: 70px 0 80px 0;
  background-color: #FFFFFF;
}

.sam-gp-clients-header {
  text-align: center;
  margin-bottom: 45px;
}

.sam-gp-clients-header .sam-gp-badge::after {
  margin-left: auto;
  margin-right: auto;
}

.sam-gp-clients-carousel-wrap {
  position: relative;
  width: 100%;
  padding: 10px 54px;
  box-sizing: border-box;
}

.sam-gp-clients-carousel-wrap .sam-gp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.sam-gp-clients-carousel-wrap .sam-gp-slider-prev {
  left: 0;
}

.sam-gp-clients-carousel-wrap .sam-gp-slider-next {
  right: 0;
}

.sam-gp-clients-track {
  display: grid;
  grid-template-rows: repeat(var(--clients-rows, 1), 74px);
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--clients-per-view, 6) - 1) * var(--clients-gap, 16px)) / var(--clients-per-view, 6));
  gap: var(--clients-gap, 16px);
  width: 100%;
  overflow-x: auto;
  scroll-behavior: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
  align-items: center;
  box-sizing: border-box;
}

.sam-gp-clients-track::-webkit-scrollbar {
  display: none;
}

.sam-gp-client-item {
  width: 100%;
  min-width: 0 !important;
  box-sizing: border-box;
}

.sam-gp-client-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--sam-radius-sm, 6px);
  background-color: #FFFFFF;
  border: 1px solid var(--sam-border, #E2E8F0);
  height: 74px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  transition: var(--sam-transition, all 0.25s ease);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sam-gp-client-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--sam-shadow-md, 0 8px 20px rgba(0, 0, 0, 0.08));
  border-color: #CBD5E1;
}

.sam-gp-client-box img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  width: auto;
  display: block;
}

.sam-gp-clients-grayscale .sam-gp-client-box img {
  filter: grayscale(100%);
  opacity: 0.75;
  transition: var(--sam-transition);
}

.sam-gp-clients-grayscale .sam-gp-client-box:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 1100px) {
  .sam-gp-clients-carousel-wrap {
    padding: 10px 48px;
  }
  .sam-gp-clients-track {
    --clients-gap: 14px;
    grid-auto-columns: calc((100% - 3 * 14px) / 4);
  }
}

@media (max-width: 768px) {
  .sam-gp-clients-carousel-wrap {
    padding: 10px 42px;
  }
  .sam-gp-clients-carousel-wrap .sam-gp-slider-arrow {
    width: 36px;
    height: 36px;
  }
  .sam-gp-clients-track {
    --clients-gap: 12px;
    grid-auto-columns: calc((100% - 2 * 12px) / 3);
  }
}

@media (max-width: 480px) {
  .sam-gp-clients-carousel-wrap {
    padding: 10px 36px;
  }
  .sam-gp-clients-carousel-wrap .sam-gp-slider-arrow {
    width: 30px;
    height: 30px;
  }
  .sam-gp-clients-track {
    --clients-gap: 10px;
    grid-auto-columns: calc((100% - 10px) / 2);
  }
}

.sam-gp-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sam-border);
  background-color: #FFFFFF;
  color: var(--sam-navy);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(11, 28, 56, 0.1);
  transition: var(--sam-transition);
  padding: 0;
  line-height: 1;
}

.sam-gp-slider-arrow:hover {
  background-color: var(--sam-navy, #0B1C38);
  color: #FFFFFF !important;
  border-color: var(--sam-navy, #0B1C38);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(11, 28, 56, 0.2);
}

.sam-gp-slider-arrow i {
  font-size: 16px !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: currentColor !important;
}

/* Universal SVG icon handling: FontAwesome glyphs (.e-font-icon-svg) need FILL */
.sam-gp-slider-arrow svg,
.sam-gp-slider-arrow .e-font-icon-svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  fill: currentColor !important;
  color: currentColor !important;
  stroke: none;
  transition: all 0.25s ease;
}

/* Explicit outline SVGs that have a stroke attribute (like Lucide / Feather) */
.sam-gp-slider-arrow svg[stroke]:not([stroke="none"]):not(.e-font-icon-svg) {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.5 !important;
}

.sam-gp-slider-arrow:hover i,
.sam-gp-slider-arrow:hover svg,
.sam-gp-slider-arrow:hover .e-font-icon-svg {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
}

.sam-gp-slider-arrow:hover svg[stroke]:not([stroke="none"]):not(.e-font-icon-svg) {
  stroke: #FFFFFF !important;
  fill: none !important;
}

.sam-gp-slider-prev { left: 0; }
.sam-gp-slider-next { right: 0; }

.sam-gp-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.sam-gp-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #CBD5E1;
  cursor: pointer;
  transition: var(--sam-transition);
}

.sam-gp-slider-dot.is-active {
  background-color: var(--sam-blue);
  width: 20px;
  border-radius: 10px;
}

/* ==========================================================================
   7. TESTIMONIALS COMPONENT
   ========================================================================== */
.sam-gp-testimonials-section {
  padding: 85px 0;
  background-color: #F8FAFC;
}

.sam-gp-testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.sam-gp-testi-quote-mark {
  color: var(--sam-gold);
  margin-bottom: 20px;
}

.sam-gp-testi-slides-wrapper {
  position: relative;
  min-height: 160px;
}

.sam-gp-testi-slide {
  display: none;
  animation: samGPFadeIn 0.4s ease;
}

.sam-gp-testi-slide.is-active {
  display: block;
}

@keyframes samGPFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.sam-gp-testi-quote {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--sam-navy);
  margin: 0 0 24px 0;
  font-style: normal;
}

.sam-gp-testi-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sam-gp-author-name {
  font-family: var(--sam-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--sam-navy);
}

.sam-gp-author-role {
  font-size: 13.5px;
  color: var(--sam-text-muted);
}

.sam-gp-testi-nav {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.sam-gp-circle-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sam-border);
  background-color: #FFFFFF;
  color: var(--sam-navy);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  transition: var(--sam-transition);
  padding: 0;
  line-height: 1;
}

.sam-gp-circle-nav-btn svg {
  width: 18px !important;
  height: 18px !important;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sam-gp-circle-nav-btn:hover {
  background-color: var(--sam-navy);
  color: #FFFFFF;
  border-color: var(--sam-navy);
}

.sam-gp-circle-nav-btn:hover svg {
  stroke: #FFFFFF;
}

.sam-gp-testi-visual-card {
  position: relative;
}

.sam-gp-testi-gold-accent {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 140px;
  height: 140px;
  background-color: var(--sam-gold);
  border-radius: var(--sam-radius-lg);
  z-index: 1;
}

.sam-gp-testi-img-box {
  position: relative;
  z-index: 2;
  border-radius: var(--sam-radius-xl);
  overflow: hidden;
  box-shadow: var(--sam-shadow-lg);
  aspect-ratio: 4 / 3;
}

.sam-gp-testi-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam-gp-testi-floating-badge {
  position: absolute;
  bottom: 24px;
  right: -24px;
  z-index: 3;
  background-color: #FFFFFF;
  padding: 16px 24px;
  border-radius: var(--sam-radius-md);
  box-shadow: var(--sam-shadow-lg);
  border-left: 4px solid var(--sam-gold);
  max-width: 280px;
}

.sam-gp-testi-floating-badge p {
  font-family: var(--sam-font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sam-navy);
  margin: 0;
  line-height: 1.4;
}

/* ==========================================================================
   8. BLOGS COMPONENT
   ========================================================================== */
.sam-gp-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sam-gp-blog-card {
  background-color: var(--sam-bg-card);
  border-radius: var(--sam-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sam-border);
  box-shadow: var(--sam-shadow-sm);
  transition: var(--sam-transition);
  display: flex;
  flex-direction: column;
}

.sam-gp-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sam-shadow-lg);
}

.sam-gp-blog-thumb-wrap {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #E2E8F0;
}

.sam-gp-blog-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sam-gp-blog-card:hover .sam-gp-blog-thumb-wrap img {
  transform: scale(1.08);
}

.sam-gp-blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sam-gp-blog-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--sam-text-muted);
  margin-bottom: 10px;
}

.sam-gp-blog-title {
  font-family: var(--sam-font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.sam-gp-blog-title a {
  color: var(--sam-navy);
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-blog-title a:hover {
  color: var(--sam-blue);
}

.sam-gp-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sam-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--sam-navy);
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-read-more:hover {
  color: var(--sam-blue);
  transform: translateX(4px);
}

/* ==========================================================================
   9. CTA BANNER COMPONENT
   ========================================================================== */
.sam-gp-cta-section {
  position: relative;
  background-color: var(--sam-navy);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: #FFFFFF;
  overflow: hidden;
}

.sam-gp-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(7, 19, 38, 0.96) 0%, rgba(7, 19, 38, 0.85) 100%);
  z-index: 1;
}

.sam-gp-cta-content-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sam-gp-cta-heading {
  font-family: var(--sam-font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.sam-gp-cta-subheading {
  font-size: 15px;
  color: #CBD5E1;
  margin: 0;
}

/* ==========================================================================
   10. FOOTER COMPONENT
   ========================================================================== */
.sam-gp-footer {
  background-color: transparent;
  color: #CBD5E1;
  padding: 70px 0 0 0;
}

.sam-gp-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sam-gp-footer-logo img {
  max-width: 190px;
  margin-bottom: 16px;
}

.sam-gp-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94A3B8;
  margin: 0 0 24px 0;
  max-width: 320px;
}

.sam-gp-footer-socials {
  display: flex;
  gap: 10px;
}

.sam-gp-social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-social-icon:hover {
  background-color: var(--sam-gold);
  color: var(--sam-navy);
  transform: translateY(-2px);
}

.sam-gp-footer-heading {
  font-family: var(--sam-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px 0;
}

.sam-gp-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sam-gp-menu-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.sam-gp-footer-menu a {
  font-size: 13.5px;
  color: #94A3B8;
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-footer-menu a:hover {
  color: var(--sam-gold);
  padding-left: 3px;
}

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

.sam-gp-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #94A3B8;
  line-height: 1.5;
}

.sam-gp-footer-contact a {
  color: #94A3B8;
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-footer-contact a:hover {
  color: var(--sam-gold);
}

.sam-gp-contact-icon {
  color: var(--sam-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.sam-gp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: #64748B;
}

.sam-gp-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sam-gp-legal-links a {
  color: #64748B;
  text-decoration: none;
  transition: var(--sam-transition);
}

.sam-gp-legal-links a:hover {
  color: #CBD5E1;
}

.sam-gp-pipe {
  color: #334155;
}

/* ==========================================================================
   11. PROJECTS & INDUSTRIES & COUNTERS
   ========================================================================== */
.sam-gp-projects-grid {
  display: grid;
  gap: 28px;
}

.sam-gp-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sam-gp-cols-2 { grid-template-columns: repeat(2, 1fr); }

.sam-gp-project-card {
  border-radius: var(--sam-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sam-border);
  background-color: #FFFFFF;
  box-shadow: var(--sam-shadow-sm);
  transition: var(--sam-transition);
}

.sam-gp-project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sam-shadow-lg);
}

.sam-gp-project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.sam-gp-project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sam-gp-project-card:hover .sam-gp-project-media img {
  transform: scale(1.08);
}

.sam-gp-project-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 28, 56, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--sam-transition);
}

.sam-gp-project-card:hover .sam-gp-project-overlay {
  opacity: 1;
}

.sam-gp-project-link-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--sam-gold);
  color: var(--sam-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sam-gp-project-year-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: var(--sam-navy);
  color: #FFFFFF;
  font-family: var(--sam-font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.sam-gp-project-body {
  padding: 20px;
}

.sam-gp-project-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sam-text-muted);
  margin-bottom: 8px;
}

.sam-gp-project-title {
  font-family: var(--sam-font-heading);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.sam-gp-project-title a {
  color: var(--sam-navy);
  text-decoration: none;
}

.sam-gp-project-scope {
  font-size: 13.5px;
  color: var(--sam-text-muted);
  margin: 0;
}

.sam-gp-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sam-gp-industry-card {
  border-radius: var(--sam-radius-lg);
  border: 1px solid var(--sam-border);
  background-color: #FFFFFF;
  padding: 28px 24px;
  box-shadow: var(--sam-shadow-sm);
  transition: var(--sam-transition);
}

.sam-gp-industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--sam-gold);
  box-shadow: var(--sam-shadow-md);
}

.sam-gp-industry-inner {
  text-decoration: none;
  color: inherit;
  display: block;
}

.sam-gp-industry-icon {
  margin-bottom: 16px;
}

.sam-gp-industry-title {
  font-family: var(--sam-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--sam-navy);
  margin: 0 0 10px 0;
}

.sam-gp-industry-desc {
  font-size: 13.5px;
  color: var(--sam-text-muted);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.sam-gp-industry-arrow {
  color: var(--sam-navy);
  display: inline-block;
  transition: var(--sam-transition);
}

.sam-gp-industry-card:hover .sam-gp-industry-arrow {
  color: var(--sam-gold);
  transform: translateX(5px);
}

.sam-gp-counters-bar {
  padding: 40px 0;
  background-color: var(--sam-navy);
  color: #FFFFFF;
}

.sam-gp-counters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sam-gp-counter-box {
  text-align: center;
}

.sam-gp-counter-val {
  font-family: var(--sam-font-heading);
  font-size: 40px;
  font-weight: 900;
  color: var(--sam-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.sam-gp-counter-title {
  font-size: 14px;
  font-weight: 600;
  color: #E2E8F0;
}

/* ==========================================================================
   VIDEO MODAL LIGHTBOX
   ========================================================================== */
.sam-gp-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(7, 19, 38, 0.88);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--sam-transition);
}

.sam-gp-modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.sam-gp-modal-box {
  position: relative;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 16 / 9;
  background-color: #000000;
  border-radius: var(--sam-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.sam-gp-modal-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.sam-gp-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
}

/* ==========================================================================
   12. CERTIFICATES & ACCREDITATIONS COMPONENT
   ========================================================================== */
.sam-gp-certificates-section {
  padding: 85px 0;
  background-color: #F8FAFC;
  position: relative;
}

.sam-gp-section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.sam-gp-section-header-center .sam-gp-badge {
  display: inline-block;
  margin-bottom: 12px;
}

.sam-gp-section-header-center .sam-gp-section-title {
  font-family: var(--sam-font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--sam-navy);
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.sam-gp-section-header-center .sam-gp-section-desc {
  font-size: 15.5px;
  color: var(--sam-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Certificate Grid */
.sam-gp-cert-grid {
  display: grid;
  gap: 26px;
}

.sam-gp-cert-grid.sam-gp-cert-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sam-gp-cert-grid.sam-gp-cert-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sam-gp-cert-grid.sam-gp-cert-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Certificate Carousel */
.sam-gp-cert-carousel-wrap {
  position: relative;
  padding: 0 48px;
}

.sam-gp-cert-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 20px 4px;
}

.sam-gp-cert-track::-webkit-scrollbar {
  display: none;
}

.sam-gp-cert-track.sam-gp-view-4 .sam-gp-cert-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 260px;
}

.sam-gp-cert-track.sam-gp-view-3 .sam-gp-cert-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 300px;
}

/* Certificate Card Structure */
.sam-gp-cert-card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: var(--sam-radius-md);
  border: 1px solid var(--sam-border);
  box-shadow: 0 4px 16px rgba(11, 28, 56, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top Accent Bar */
.sam-gp-cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--sam-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 5;
}

.sam-gp-cert-card:hover {
  transform: translateY(-8px);
  border-color: #CBD5E1;
  box-shadow: 0 18px 40px rgba(11, 28, 56, 0.12);
}

.sam-gp-cert-card:hover::before {
  transform: scaleX(1);
}

.sam-gp-cert-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image Document Frame */
.sam-gp-cert-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 100%);
  padding: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--sam-border);
}

.sam-gp-cert-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
  background-color: #FFFFFF;
}

.sam-gp-cert-card:hover .sam-gp-cert-frame img {
  transform: scale(1.03);
}

/* Badge Tag */
.sam-gp-cert-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  background-color: var(--sam-navy);
  color: var(--sam-gold);
  font-family: var(--sam-font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(11, 28, 56, 0.2);
}

/* Hover Action Overlay */
.sam-gp-cert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 28, 56, 0.65);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 6;
}

.sam-gp-cert-card:hover .sam-gp-cert-overlay {
  opacity: 1;
  visibility: visible;
}

.sam-gp-cert-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--sam-gold);
  color: var(--sam-navy);
  font-family: var(--sam-font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(10px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sam-gp-cert-card:hover .sam-gp-cert-action-btn {
  transform: translateY(0);
}

.sam-gp-cert-action-btn:hover {
  background-color: #FFFFFF;
  color: var(--sam-navy);
}

.sam-gp-cert-action-btn svg {
  width: 16px;
  height: 16px;
}

/* Details Section */
.sam-gp-cert-details {
  padding: 22px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sam-gp-cert-title {
  font-family: var(--sam-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--sam-navy);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.sam-gp-cert-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sam-gp-cert-title-link:hover {
  color: var(--sam-blue);
}

.sam-gp-cert-subtitle {
  font-family: var(--sam-font-body);
  font-size: 13.5px;
  color: var(--sam-text-muted);
  line-height: 1.5;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

/* Action Button at bottom */
.sam-gp-cert-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sam-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--sam-navy);
  border: 1.5px solid var(--sam-navy);
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
  cursor: pointer;
}

.sam-gp-cert-btn:hover {
  background-color: var(--sam-navy);
  color: #FFFFFF;
  border-color: var(--sam-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 28, 56, 0.15);
}

.sam-gp-cert-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.sam-gp-cert-btn:hover svg {
  transform: translateX(3px);
}

/* Certificate Frame Link (triggers Fancybox Lightbox) */
.sam-gp-cert-frame-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  text-decoration: none;
}

.sam-gp-cert-frame-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sam-gp-cert-frame:hover .sam-gp-cert-frame-link img {
  transform: scale(1.04);
}

/* Fancybox 5 High-Z-Index & Industrial Theme Polish */
.fancybox__container {
  --fancybox-zIndex: 999999 !important;
  --fancybox-bg: rgba(7, 19, 38, 0.94) !important;
  --fancybox-color: #FFFFFF !important;
}

.fancybox__caption {
  font-family: var(--sam-font-body) !important;
  font-size: 15px !important;
  text-align: center !important;
  color: #FFFFFF !important;
}

.fancybox__caption strong {
  font-family: var(--sam-font-heading) !important;
  font-size: 16px !important;
  color: var(--sam-gold) !important;
}

/* ==========================================================================
   9. PROJECTS SHOWCASE & 3D FLIP CARDS COMPONENT
   ========================================================================== */
.sam-gp-projects-section {
  background-color: #F8FAFC;
  position: relative;
  overflow: hidden;
}

/* Grid Layout */
.sam-gp-projects-grid {
  display: grid;
  gap: 28px;
}

.sam-gp-projects-grid.sam-gp-proj-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.sam-gp-projects-grid.sam-gp-proj-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.sam-gp-projects-grid.sam-gp-proj-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Carousel / Slider Layout */
.sam-gp-projects-carousel-wrap {
  position: relative;
  width: 100%;
}

.sam-gp-projects-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 20px 4px;
}

.sam-gp-projects-track::-webkit-scrollbar {
  display: none;
}

.sam-gp-projects-track .sam-gp-flip-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 290px;
}

.sam-gp-projects-track.sam-gp-view-4 .sam-gp-flip-card {
  flex: 0 0 calc((100% - 84px) / 4);
}

.sam-gp-projects-track.sam-gp-view-2 .sam-gp-flip-card {
  flex: 0 0 calc((100% - 28px) / 2);
}

/* 3D Flip Card Base */
.sam-gp-flip-card {
  height: 330px;
  perspective: 1200px;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  position: relative;
  border-radius: 8px;
}

.sam-gp-flip-card:focus-visible {
  outline: 2px solid var(--sam-gold, #76BC21);
  outline-offset: 4px;
}

/* Inner 3D Wrapper */
.sam-gp-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: inherit;
  box-shadow: 0 6px 20px rgba(11, 28, 56, 0.08);
}

/* Hover & Active Flip Transitions */
.sam-gp-flip-card.flip-horizontal:hover .sam-gp-flip-card-inner,
.sam-gp-flip-card.flip-horizontal.is-flipped .sam-gp-flip-card-inner {
  transform: rotateY(180deg);
}

.sam-gp-flip-card.flip-vertical:hover .sam-gp-flip-card-inner,
.sam-gp-flip-card.flip-vertical.is-flipped .sam-gp-flip-card-inner {
  transform: rotateX(180deg);
}

/* Front & Back Faces Common */
.sam-gp-flip-card-front,
.sam-gp-flip-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: inherit;
  overflow: hidden;
}

/* FRONT FACE: 100% Full Edge-to-Edge Machinery Image */
.sam-gp-flip-card-front {
  background-color: #071326;
  border: 1px solid rgba(11, 28, 56, 0.12);
  transform: rotateY(0deg);
}

.sam-gp-flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.sam-gp-flip-card:hover .sam-gp-flip-card-front img {
  transform: scale(1.03);
}

/* BACK FACE: Frosted Dark Glass Overlay over Machinery Image */
.sam-gp-flip-card-back {
  background-color: rgba(11, 28, 56, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(11, 28, 56, 0.25);
  z-index: 2;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.sam-gp-flip-card.flip-horizontal .sam-gp-flip-card-back {
  transform: rotateY(180deg);
}

.sam-gp-flip-card.flip-vertical .sam-gp-flip-card-back {
  transform: rotateX(180deg);
}

/* Soft Watermark Machinery Photo on Back */
.sam-gp-flip-back-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(2px);
  pointer-events: none;
}

.sam-gp-flip-back-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 38, 0.65);
  pointer-events: none;
}

.sam-gp-flip-back-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 90%;
}

/* Central Circular Plus / Lightbox Trigger */
.sam-gp-flip-icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.65);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.sam-gp-flip-icon-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.sam-gp-flip-icon-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background-color: var(--sam-gold, #76BC21);
  color: #FFFFFF;
  border-color: var(--sam-gold, #76BC21);
  box-shadow: 0 6px 20px rgba(118, 188, 33, 0.45);
}

.sam-gp-flip-back-title {
  font-family: var(--sam-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.35;
  letter-spacing: -0.2px;
  text-align: center;
}

.sam-gp-flip-back-desc {
  font-family: var(--sam-font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .sam-gp-solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sam-gp-projects-grid.sam-gp-proj-cols-3,
  .sam-gp-projects-grid.sam-gp-proj-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam-gp-projects-track .sam-gp-flip-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }
  .sam-gp-cert-grid.sam-gp-cert-cols-4,
  .sam-gp-cert-grid.sam-gp-cert-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam-gp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam-gp-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sam-gp-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sam-gp-projects-grid {
    grid-template-columns: 1fr !important;
  }
  .sam-gp-projects-track .sam-gp-flip-card {
    flex: 0 0 100% !important;
    min-width: 260px;
  }
  .sam-gp-flip-card {
    height: 350px;
  }
  .sam-gp-desktop-nav,
  .sam-gp-header-btn {
    display: none;
  }
  .sam-gp-mobile-toggle {
    display: flex;
  }
  .sam-gp-hero-title {
    font-size: 34px;
  }
  .sam-gp-hero-features-grid {
    gap: 16px;
  }
  .sam-gp-hero-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .sam-gp-section-header-split {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .sam-gp-header-right {
    text-align: left;
    align-items: flex-start;
  }
  .sam-gp-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sam-gp-showcase-row {
    flex-direction: column !important;
    gap: 30px;
  }
  .sam-gp-about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .sam-gp-blogs-grid {
    grid-template-columns: 1fr;
  }
  .sam-gp-industries-grid {
    grid-template-columns: 1fr;
  }
  .sam-gp-cta-content-row {
    flex-direction: column;
    text-align: center;
  }
  .sam-gp-footer-grid {
    grid-template-columns: 1fr;
  }
  .sam-gp-footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .sam-gp-counters-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  /* Prevent oversized ambient orbs from causing horizontal scroll / layout shift on mobile */
  .sam-gp-hero-section::before,
  .sam-gp-hero-section::after,
  .sam-gp-cta-section::before {
    display: none !important;
  }
  .sam-gp-cert-carousel-wrap {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .sam-gp-solutions-grid {
    grid-template-columns: 1fr;
  }
  .sam-gp-hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}
/* yha se annimations hai  */
/* ==========================================================================
   16. RICH ANIMATION SYSTEM & MICRO-INTERACTIONS
   ========================================================================== */

/* Keyframe Animations */
@keyframes samShineSweep {
  0% { left: -120%; }
  100% { left: 180%; }
}

@keyframes samFloatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

@keyframes samDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(118, 188, 33, 0.6);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 7px rgba(118, 188, 33, 0);
  }
}

@keyframes samPlayPulseRing {
  0% {
    transform: scale(0.92);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes samShimmerText {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}

@keyframes samOrbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-35px, 45px) scale(1.18); }
  100% { transform: translate(25px, -25px) scale(0.95); }
}

@keyframes samOrbFloatRev {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(45px, -35px) scale(1.22); }
  100% { transform: translate(-25px, 25px) scale(0.9); }
}

@keyframes samGlowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(11, 74, 153, 0.2);
  }
  50% {
    box-shadow: 0 0 35px rgba(118, 188, 33, 0.35);
  }
}

/* Scroll Reveal Base Class - Silky Gentle & Smooth */
.sam-gp-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: var(--sam-stagger-delay, 0s);
  will-change: opacity, transform;
}

.sam-gp-reveal.sam-gp-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Interactive Card Spotlight Glow */
.sam-gp-interactive-card {
  position: relative;
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s ease;
  will-change: transform, box-shadow;
}

.sam-gp-interactive-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(380px circle at var(--mouse-x, -9999px) var(--mouse-y, -9999px), rgba(11, 74, 153, 0.08), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}

.sam-gp-interactive-card:hover::after {
  opacity: 1;
}

/* Buttons Rich Light-Beam Shine Sweep with Silky Smooth Easing */
.sam-gp-btn,
.sam-gp-header-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.3s ease,
              border-color 0.3s ease,
              color 0.3s ease;
}

.sam-gp-btn::before,
.sam-gp-header-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
  z-index: 2;
}

.sam-gp-btn:hover::before,
.sam-gp-header-btn:hover::before {
  left: 170%;
  transition: left 0.75s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-btn:hover,
.sam-gp-header-btn:hover {
  transform: translateY(-2.5px);
}

.sam-gp-btn:active,
.sam-gp-header-btn:active {
  transform: translateY(-0.5px) scale(0.98);
}

.sam-gp-btn svg,
.sam-gp-header-btn svg {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-btn:hover svg,
.sam-gp-header-btn:hover svg {
  transform: translateX(4px);
}

/* Section Header Badge Rich Animation */
.sam-gp-badge {
  position: relative;
}

.sam-gp-badge::after {
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
}

.sam-gp-section-header:hover .sam-gp-badge::after,
.sam-gp-section-header-split:hover .sam-gp-badge::after,
.sam-gp-section-header-center:hover .sam-gp-badge::after {
  width: 42px;
  background-color: var(--sam-blue);
}

/* Hero Section High-Tech Ambient Orbs */
.sam-gp-hero-section {
  position: relative;
  overflow: hidden;
}

.sam-gp-hero-section::before {
  content: '';
  position: absolute;
  top: -15%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11, 74, 153, 0.28) 0%, rgba(118, 188, 33, 0.12) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: 1;
  animation: samOrbFloat 14s infinite alternate ease-in-out;
}

.sam-gp-hero-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
  animation: samOrbFloatRev 16s infinite alternate ease-in-out;
}

/* Hero Title Highlight Shimmer - Harmonious Green Combinations */
.sam-gp-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #76BC21 0%, #A6F03C 45%, #76BC21 70%, #5E9C16 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: samShimmerText 6s linear infinite;
  text-shadow: 0 0 30px rgba(118, 188, 33, 0.25);
}

/* Hero Play Button Concentric Ripple Waves */
.sam-gp-play-icon-circle {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.sam-gp-play-icon-circle::before,
.sam-gp-play-icon-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  animation: samPlayPulseRing 2.4s infinite cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.sam-gp-play-icon-circle::after {
  animation-delay: 1.2s;
}

.sam-gp-video-play-btn:hover .sam-gp-play-icon-circle {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(118, 188, 33, 0.6);
}

/* Hero Feature Items */
.sam-gp-hero-feat-item {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.sam-gp-hero-feat-item:hover {
  transform: translateY(-4px);
}
.sam-gp-hero-feat-item:hover .sam-gp-hero-feat-icon {
  transform: scale(1.15) rotate(4deg);
  filter: drop-shadow(0 4px 12px rgba(118, 188, 33, 0.4));
}
.sam-gp-hero-feat-icon {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease;
}

/* Solutions / Products Rich Silky Micro-Interactions */
.sam-gp-solution-card {
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s ease;
}

.sam-gp-solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(11, 74, 153, 0.16), 0 0 0 1px rgba(11, 74, 153, 0.12);
  border-color: rgba(11, 74, 153, 0.25);
}

.sam-gp-solution-img-box img {
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-solution-card:hover .sam-gp-solution-img-box img {
  transform: scale(1.07);
}

/* Alternating Showcase Rows */
.sam-gp-showcase-img-box {
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-showcase-row:hover .sam-gp-showcase-img-box {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(11, 28, 56, 0.18);
}

/* Certificate Cards Rich Silky Transitions */
.sam-gp-cert-card {
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.38s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s ease;
}

.sam-gp-cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px -12px rgba(11, 74, 153, 0.16), 0 0 0 1px rgba(118, 188, 33, 0.4);
  border-color: rgba(118, 188, 33, 0.5);
}

.sam-gp-cert-card::before {
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-cert-card:hover::before {
  transform: scaleX(1);
}

.sam-gp-cert-img-box img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-cert-card:hover .sam-gp-cert-img-box img {
  transform: scale(1.05);
}

.sam-gp-cert-view-btn {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              background-color 0.3s ease,
              color 0.3s ease,
              box-shadow 0.35s ease;
}

.sam-gp-cert-card:hover .sam-gp-cert-view-btn {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(118, 188, 33, 0.4);
}

/* 3D Flip Card Projects Silky Smooth Transition */
.sam-gp-flip-card-inner {
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(11, 28, 56, 0.08);
}

.sam-gp-flip-card:hover .sam-gp-flip-card-inner {
  box-shadow: 0 24px 48px -10px rgba(11, 28, 56, 0.22);
}

.sam-gp-flip-card-front img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-flip-card:hover .sam-gp-flip-card-front img {
  transform: scale(1.06);
}

/* Client Logos Rich Elevation & Glow */
.sam-gp-client-box {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1),
              border-color 0.3s ease,
              background-color 0.3s ease;
}

.sam-gp-client-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -6px rgba(11, 74, 153, 0.12), 0 0 0 1px rgba(11, 74, 153, 0.15);
  border-color: rgba(11, 74, 153, 0.3);
  background-color: #FFFFFF;
}

.sam-gp-client-box img {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease, opacity 0.35s ease;
}

.sam-gp-client-box:hover img {
  transform: scale(1.06);
}

/* Counter Numbers Glow */
.sam-gp-stat-val,
.sam-gp-counter {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.sam-gp-counter-col:hover .sam-gp-counter,
.sam-gp-stat-item:hover .sam-gp-stat-val {
  transform: scale(1.06);
  color: var(--sam-gold);
}

/* CTA Section Radiant Energy Pulse */
.sam-gp-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(118, 188, 33, 0.15) 0%, rgba(11, 74, 153, 0.15) 50%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
  animation: samOrbFloat 12s infinite alternate ease-in-out;
}

/* Footer Links Micro Slide with Chevron */
.sam-gp-footer-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), padding-left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-footer-menu a::before {
  content: '›';
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-6px);
  color: var(--sam-gold);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.sam-gp-footer-menu a:hover {
  color: var(--sam-gold);
  padding-left: 14px;
}

.sam-gp-footer-menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.sam-gp-social-link {
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, box-shadow 0.35s ease;
}

.sam-gp-social-link:hover {
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 8px 18px rgba(118, 188, 33, 0.35);
  background-color: var(--sam-gold);
  color: #FFFFFF;
}

/* Header Nav Animated Underline */
.sam-gp-nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--sam-blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .sam-gp-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .sam-gp-btn::before,
  .sam-gp-header-btn::before,
  .sam-gp-hero-section::before,
  .sam-gp-hero-section::after,
  .sam-gp-play-icon-circle::before,
  .sam-gp-play-icon-circle::after {
    animation: none !important;
    display: none !important;
  }
}
/* yha tak annimations hai  */
