/* ===== CSS RESET & VARIABLES ===== */
:root {
  /* Color Palette */
  --primary: #e5761b;
  --primary-dark:#e5761b;
  --primary-light: #e5761b;
  --secondary: #ea5408;
  --dark: #1f2937;
  --light: #f9fafb;
  --white: #ffffff;
  --gray-light: #e5e7eb;
  --gray: #6b7280;
  --gray-dark: #4b5563;

  /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F58220 0%, #3d3d46 100%);
    --gradient-secondary: linear-gradient(135deg, #FFB15A 0%, #F58220 100%);
    --gradient-dark: linear-gradient(135deg, #3d3d46 0%, #3d3d46 100%);
    --gradient-light: linear-gradient(135deg, #FFF8F2 0%, #FFF2E6 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

.about-container,
.products-container,
.trust-container,
.process-timeline,
.cta-container {
  padding-left: 2rem;
  padding-right: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: linear-gradient(45deg, var(--primary-light), var(--secondary));
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s infinite linear;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-duration: 20s;
}

.particle:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-duration: 25s;
  animation-delay: 2s;
}

.particle:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-duration: 18s;
  animation-delay: 4s;
}

.particle:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-duration: 22s;
  animation-delay: 1s;
}

.particle:nth-child(5) {
  width: 70px;
  height: 70px;
  bottom: 40%;
  left: 60%;
  animation-duration: 19s;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(100px, 100px) rotate(90deg);
  }
  50% {
    transform: translate(0, 200px) rotate(180deg);
  }
  75% {
    transform: translate(-100px, 100px) rotate(270deg);
  }
}

/* ===== NAVBAR REDESIGN ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  z-index: 1000;
  transition: var(--transition-base);
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  transition: var(--transition-base);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-text span {
  color: var(--primary);
}

.logo-text small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  margin-top: 2px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Navigation */
#nav-check {
  display: none;
}

.nav-btn {
  display: none;
  cursor: pointer;
  z-index: 1002;
}

.nav-icon {
  width: 30px;
  height: 30px;
  position: relative;
}

.nav-icon span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--dark);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.nav-icon span:nth-child(1) {
  top: 6px;
}
.nav-icon span:nth-child(2) {
  top: 13.5px;
}
.nav-icon span:nth-child(3) {
  top: 21px;
}

.nav-btn.active .nav-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 13.5px;
}
.nav-btn.active .nav-icon span:nth-child(2) {
  opacity: 0;
}
.nav-btn.active .nav-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13.5px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  height:1030px;
  padding: 120px 2rem 4rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 107px;
  /* ==================== */
  
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height:997px;
  background: url(newimg/banner.png);
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Dark overlay for text readability */
  /* background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25)); */

  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
.hero-stats {
  margin: auto;
  z-index: 1;
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding: 2rem;
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  color: black;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: black;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.875rem;
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 10px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  z-index: -1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: rotate 30s linear infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  animation: rotate 20s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.section-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1rem;
  height: 2px;
  background: var(--primary);
}

.section-title {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.about-features {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  border: 1px solid transparent;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* About Preview */
.about-preview {
  perspective: 1000px;
}
.about-preview img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.preview-container {
  position: relative;
  width: 100%;
  height: 400px;
  animation: none;
  display: grid;
  grid-template-columns: 1fr;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: 8rem 2rem;
  background: var(--light);
  position: relative;
  overflow: hidden;
}
.process-section .section-header {
  margin-left: 50px;
}

.process-timeline {
  max-width: 1200px;
  margin: 4rem auto 0;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

.process-step {
  position: relative;
  width: calc(50% - 60px);
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeInSteps 1s forwards;
}

.process-step:nth-child(odd) {
  margin-left: auto;
  text-align: right;
}

.process-step:nth-child(even) {
  margin-right: auto;
}

.step-number {
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  z-index: 2;
}

.process-step:nth-child(odd) .step-number {
  left: -30px;
}

.process-step:nth-child(even) .step-number {
  right: -30px;
}

.step-content {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.step-content:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color:#ff6600;
  margin-bottom: 1.5rem;
}

.process-step:nth-child(odd) .step-icon {
  margin-left: auto;
}

.process-step:nth-child(even) .step-icon {
  margin-right: auto;
}

.step-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.step-content:hover .step-hover {
  opacity: 0.1;
}

@keyframes fadeInSteps {
  to {
    opacity: 1;
  }
}
@media (max-width: 992px) {
  .process-step {
    width: 100%;
  }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  position: relative;
  padding: 4rem 2rem 40px;
  background: #f8fafc;
}

.products-section .section-header {
  padding-left: 20px;
  margin-bottom: 3rem;
}

.products-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* ===== PRODUCT CARD ===== */
.product-item {
  background: #fff;
  border-radius:14px;
  overflow: hidden;
  position: relative;
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); */
}

.product-item:hover {
  transform: translateY(-12px);
  /* box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15); */
}

/* ===== IMAGE SECTION ===== */
.product-image {
  width: 100%;
  height: 380px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* overlay */
.image-overlay {
  width: 100%;
  height: 100%;
  position: relative;
}

/* image full fill */
.image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* full fill image */
  display: block;
  transition: transform 0.6s ease;
}

/* hover zoom */
.product-item:hover .image-overlay img {
  transform: scale(1.08);
}

/* dark gradient */
.image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.2)); */
}

/* ===== BADGE ===== */
.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

/* ===== CONTENT ===== */
.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111827;
  font-weight: 700;
}

.product-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.product-features {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  padding: 0.55rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f56800;
  font-weight: 600;
  transition: 0.3s;
}

.product-features span:hover {
  background: #f56800;
  color: #fff;
}

.product-features i {
  font-size: 0.75rem;
}

/* ===== HOVER BUTTON ===== */
.product-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, #fff, transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.product-item:hover .product-hover {
  opacity: 1;
  transform: translateY(0);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff7e15, #ff7e15);
  color: white;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-link:hover {
  gap: 14px;
  transform: translateY(-2px);
}

/* ===== FEATURE SHOWCASE ===== */
.product-features-showcase {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.feature-highlight {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  border: 1px solid transparent;
}

.feature-highlight:hover {
  transform: translateY(-8px);
  border-color: #60a5fa;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===== ICON ===== */
.highlight-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f56800, #3d3d46);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  flex-shrink: 0;
}

/* ===== TEXT ===== */
.highlight-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #111827;
  font-weight: 700;
}

.highlight-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .products-section {
    padding: 3rem 1.5rem;
  }

  .product-image {
    height: 280px;
  }

  .product-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-image {
    height: 260px;
  }

  .products-section .section-header {
    padding-left: 0;
    text-align: center;
  }

  .product-features-showcase {
    flex-direction: column;
  }

  .feature-highlight {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 2rem 1rem;
  }

  .product-image {
    height: 230px;
  }

  .product-content h3 {
    font-size: 1.3rem;
  }

  .product-content p {
    font-size: 0.9rem;
  }

  .product-features span {
    font-size: 0.78rem;
    padding: 0.45rem 0.8rem;
  }

  .highlight-content h4 {
    font-size: 1.1rem;
  }
}
/* ===== TRUST SECTION ===== */
.trust-section {
  padding: 8rem 2rem;
  background: #34353b;
  color: white;
  position: relative;
  overflow: hidden;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.trust-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-element {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatElement 20s infinite linear;
}

.bg-element:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.bg-element:nth-child(2) {
  top: 60%;
  right: 15%;
  width: 150px;
  height: 150px;
  animation-delay: 5s;
}

.bg-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 80px;
  height: 80px;
  animation-delay: 10s;
}

@keyframes floatElement {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, 50px) rotate(90deg);
  }
  50% {
    transform: translate(0, 100px) rotate(180deg);
  }
  75% {
    transform: translate(-50px, 50px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.trust-header {
  text-align: center;
  margin-bottom: 4rem;
}

.trust-subtitle {
  display: inline-block;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.trust-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.metric-circle {
  position: relative;
  width: 180px;
  height: 180px;
}

.circle-progress {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary-light) var(--progress, 0%),
    rgba(255, 255, 255, 0.1) 0
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-progress::before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: var(--gradient-dark);
  border-radius: 50%;
}

.circle-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--primary-light), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.principle-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  transition: var(--transition-base);
  text-align: center;
}

.principle-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.principle-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: var(--primary-light);
  transition: var(--transition-base);
}

.principle-item:hover .principle-icon {
  background: var(--primary-light);
  color: white;
  transform: scale(1.1);
}

.principle-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.principle-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 2rem 0;
  position: relative;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cta-shape {
  position: absolute;
  background: var(--gradient-primary);
  opacity: 0.1;
  border-radius: 50%;
}

.cta-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.cta-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.cta-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.cta-description {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.cta-btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.cta-btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-lg);
  gap: 16px;
}

.cta-btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary-light);
}

.cta-btn-secondary:hover {
  background: var(--gradient-light);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-light);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-dark);
  font-weight: 500;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: white;
}

.footer-logo i {
  font-size: 2.5rem;
  color: var(--primary-light);
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  display: block;
}

.footer-logo small {
  font-size: 0.875rem;
  color: var(--gray-light);
}

.footer-description {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-base);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-links i {
  font-size: 0.75rem;
  color: var(--primary-light);
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.95rem;
  transition: var(--transition-base);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border: none;
  border-radius: var(--radius-md);
  color: white;
  cursor: pointer;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-form button:hover {
  background: var(--primary);
  transform: scale(1.05);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--gray-light);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-base);
}

.footer-legal a:hover {
  color: var(--primary-light);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .trust-title {
    font-size: 2.5rem;
  }

  .cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }

  .nav-btn {
    display: block;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    margin-top: 100px;
    height: 30vh;
  }
  .scroll-indicator {
    display: none;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .process-step {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .process-step:nth-child(odd) .step-number {
    left: -60px;
  }

  .process-step:nth-child(even) .step-number {
    right: auto;
    left: -60px;
  }

  .timeline-line {
    left: 30px;
  }

  .product-features-showcase {
    flex-direction: column;
  }

  .trust-metrics {
    gap: 2rem;
  }

  .cta-container {
    padding: 3rem;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .nav-links li {
    width: 100%;
    margin-bottom: 12px;
  }

  .nav-link {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-cta {
    width: 100%;
    display: block;
    text-align: center;
    padding: 14px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .trust-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .cta-container {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    animation: none;
  }

  .preview-item {
    transform: none !important;
    position: relative;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .trust-metrics {
    flex-direction: column;
    align-items: center;
  }

  .metric-circle {
    width: 150px;
    height: 150px;
  }
}
section {
  overflow-x: hidden;
}
.trust-metrics {
  position: relative;
  z-index: 2;
  padding-bottom: 120px; /* reserve space for circles */
}
.metric-circle {
  flex-shrink: 0;
}
.principles-grid {
  position: relative;
  z-index: 1;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .trust-metrics {
    padding-bottom: 40px;
  }

  .principles-grid {
    margin-top: 40px;
  }
  .about-section {
    padding: 0;
    padding-top: 30px;
  }
}
a {
  text-decoration: none;
  color: white;
}

.footer-map {
  max-width: 320px;
}

.map-wrap {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(110%);
  transition: 0.4s ease;
}

.map-wrap:hover iframe {
  filter: grayscale(0%) contrast(120%);
}
@media (max-width: 768px) {
  .footer-map {
    max-width: 100%;
  }

  .map-wrap {
    height: 200px;
  }
}
.trust-metrics {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}

/* === FORCE TRUST METRICS LAYOUT FIX === */

.trust-metrics {
  display: flex;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(10px, 4vw, 40px) !important;
  width: 100%;
  overflow: hidden;
}

/* Make circles responsive */
.metric-circle {
  width: clamp(80px, 25vw, 180px) !important;
  height: clamp(80px, 25vw, 180px) !important;
  flex-shrink: 0;
}

/* Scale text inside */
.metric-value {
  font-size: clamp(1.4rem, 6vw, 3rem) !important;
}

.metric-label {
  font-size: clamp(0.6rem, 2vw, 0.85rem) !important;
  white-space: nowrap;
}

/* Prevent vertical stacking on small screens */
@media (max-width: 768px) {
  .trust-metrics {
    flex-direction: row !important;
    display: none !important;
  }
}
/* =========================
   DROPDOWN CORE
========================= */

.dropdown {
  position: relative;
}

/* ===== DESKTOP DROPDOWN ===== */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 320px;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 9999;
}

/* Grid */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

  /* Scrollbar Added */
  max-height: 390px;
  overflow-y: auto;
  padding-right: 5px;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
.dropdown-grid::-webkit-scrollbar {
  width: 6px;
}

.dropdown-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.dropdown-grid::-webkit-scrollbar-thumb {
  background: #0d6efd;
  border-radius: 10px;
  transition: 0.3s;
}

.dropdown-grid::-webkit-scrollbar-thumb:hover {
  background: #084298;
}

/* Firefox */
.dropdown-grid {
  scrollbar-width: thin;
  scrollbar-color: #0d6efd #f1f1f1;
}
/* Dropdown items */
.dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f9fafb;
  border-radius: 12px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
}

.dropdown-grid a:hover {
  background: #ecfdf5;
  color: #059669;
  transform: translateX(6px);
}

/* JS open */
.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Hover open on desktop */
@media (min-width: 993px) {
  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown:hover .caret-icon {
    transform: rotate(180deg);
  }
}

/* ===== MOBILE DROPDOWN ===== */
@media (max-width: 992px) {
  .dropdown-content {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    background: #f9fafb;
    box-shadow: none;
    border-radius: 14px;
    padding: 12px;
    margin-top: 12px;
    display: none;

    /* scrollable */
    max-height: 50vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dropdown-content.show {
    display: block;
    animation: dropdownSlide 0.3s ease;
  }

  @keyframes dropdownSlide {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 992px) {
  .nav-links {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 120px;
  }
}
@media (max-width: 992px) {
  .dropdown-content {
    left: 0 !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* =================================================== */

/* =====================================================
   RESET & VARIABLES
    ===================================================== */
:root {
  --primary: #0f766e;
  --primary-light: #0d9488;
  --primary-dark: #115e59;
  --gray-bg: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --white: #ffffff;
  --shadow-sm: 0 20px 40px -10px rgba(15, 118, 110, 0.15);
  --shadow-hover: 0 30px 50px -15px rgba(15, 118, 110, 0.25);
  --border-radius-card: 2rem;
  --border-radius-element: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.product-page {
  background: var(--gray-bg);
  color: var(--text-dark);
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  /* border-radius: 2rem; */
  box-shadow: var(--shadow-hover);
}

/* =====================================================
   HERO SECTION – with background image & parallax effect
    ===================================================== */
.product-hero {
  position: relative;
  padding: 10rem 0 8rem;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.9), rgba(13, 148, 136, 0.9)),
    url("img/aboutimage.jpg") center/cover fixed;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.product-hero .container {
  position: relative;
  text-align: center;
  z-index: 2;
}

.product-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInDown 1s ease;
}

.product-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.product-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.4s both;
}

/* floating elements */
.floating-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
  z-index: 1;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   OVERVIEW SECTION – split with image
    ===================================================== */
.overview-section {
  padding: 6rem 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.overview-image img {
  width: 100%;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-hover);
}

/* =====================================================
   MANUFACTURER SECTION – split with highlight card
    ===================================================== */
.manufacturer-section {
  padding: 6rem 0;
  background: var(--white);
}

.manufacturer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.manufacturer-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-card {
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 2.5rem;
  border-radius: 2.5rem;
  box-shadow: var(--shadow-hover);
  position: sticky;
  top: 2rem;
}

.highlight-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =====================================================
   BENEFITS & FEATURES – card grids
    ===================================================== */
.benefits-section,
.features-section {
  padding: 6rem 0;
}

.features-section {
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.benefit-card,
.feature-card {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-radius: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 118, 110, 0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-card:hover,
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 118, 110, 0.2);
}

.benefit-card i,
.feature-card i {
  font-size: 1.5rem;
  color: var(--primary-light);
  background: rgba(13, 148, 136, 0.1);
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  flex-shrink: 0;
}

.benefit-card span,
.feature-card span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

/* =====================================================
   SUPPLIER / TRADER SECTIONS – with images
    ===================================================== */
.supplier-section,
.trader-section {
  padding: 6rem 0;
}

.supplier-section {
  background: var(--white);
}

.supplier-grid,
.trader-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.supplier-text p,
.trader-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.supplier-text p:last-child,
.trader-text p:last-child {
  margin-bottom: 0;
}

.supplier-image img,
.trader-image img {
  border-radius: 2rem;
  box-shadow: var(--shadow-hover);
  width: 500px;
  height: 600px;
  object-fit: contain;
}
.trader-image img {
  height: 550px;
}

/* =====================================================
   CTA SECTION
    ===================================================== */
.product-cta {
  padding: 6rem 0;
  background: linear-gradient(145deg, var(--primary), var(--primary-light));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.product-cta h2 {
  color: var(--white);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 60px;
  background: var(--white);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 40px -10px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.95);
}

/* =====================================================
   RESPONSIVE
    ===================================================== */
@media (max-width: 992px) {
  .overview-grid,
  .manufacturer-grid,
  .supplier-grid,
  .trader-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .highlight-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .product-hero {
    padding: 6rem 0 4rem;
  }

  h2 {
    font-size: 2rem;
  }
}

/* AOS custom overrides (optional) */
[data-aos] {
  transition-timing-function: ease-out;
}
/* Floating Container */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* Common Button Style */
.contact-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Hover Effect */
.contact-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Individual Colors */
.call {
  background: linear-gradient(135deg, #ffffff, #3e92cc);
}

.whatsapp {
  background: linear-gradient(135deg, #000000, #128c7e);
}

.email {
  background: linear-gradient(135deg, #ff6b35, #ff9f1c);
}

/* Mobile Adjust */
@media (max-width: 768px) {
  .contact-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

.logo img{
  /* height: 70px; */
}