/* ===============================================
   SILOXANE INDUSTRIES - MODERN CSS STYLESHEET
   Dark Mode Support | Fully Responsive
================================================== */

/* ===============================================
   CSS VARIABLES (Light & Dark Mode)
================================================== */
:root {
  /* Light Mode Colors */
  --primary-color: #eb3f25;
  --primary-dark: #eb3f25;
  --primary-light: #f6d13b;
  --secondary-color: #81b910;
  --accent-color: #f5610b;
  
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #f3f4f6;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --text-inverse: #ffffff;
  
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

[data-theme="dark"] {
  /* Dark Mode Colors */
  --primary-color: #eb3f25;
  --primary-dark: #2563eb;
  --primary-light: #f6d13b;
  --secondary-color:#81b910;

  --accent-color: #f5610b;
  
  --bg-primary: #111827;
  --bg-secondary: #1f2937;
  --bg-tertiary: #374151;
  --bg-overlay: rgba(0, 0, 0, 0.7);
  
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --text-inverse: #111827;
  
  --border-color: #374151;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

/* ===============================================
   GLOBAL RESET & BASE STYLES
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===============================================
   CONTAINER & SECTION UTILITIES
================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

/* ===============================================
   HEADER & NAVIGATION
================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .header.scrolled {
  background-color: rgba(17, 24, 39, 0.95);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  /*background: linear-gradient(135deg, var(--primary-color), var(--primary-light));*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition-fast);
}

.nav a:hover,
.nav a.active {
  color: var(--primary-color);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Header Button */
.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Dark Mode Toggle */
.theme-toggle {
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.theme-toggle:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: rotate(180deg);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-primary);
}

.theme-toggle:hover svg {
  stroke: white;
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-xl);
  }

  .nav.active {
    left: 0;
  }

  .header-btn {
    display: none;
  }
}

/* ===============================================
   HERO SECTION
================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.6;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/* background: url("../image/hero.jpg") center / cover no-repeat;*/
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary-color);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
}

/* ===============================================
   PAGE BANNER
================================================== */
.page-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  overflow: hidden;
  margin-top: 80px;
}

.page-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/pexels-kelly-2585539.jpg") center / cover no-repeat;
  z-index: 1;
}

.page-banner__text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 1rem;
  opacity: 0.9;
}

.breadcrumb a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
}

/* ===============================================
   POLYMER HIGHLIGHTS (CARDS)
================================================== */
.polymer-highlights {
  background-color: var(--bg-secondary);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--bg-primary);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

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

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.card strong {
  color: var(--primary-color);
}

/* ===============================================
   PARALLAX ABOUT SECTION (FIXED IMAGE)
================================================== */
.parallax-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.parallax-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 300%;
  min-height: 100vh;
   /*background: url("/htdocs/image/home.jpeg") center/cover no-repeat;*/
   
}
.parallax-image {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 200px;
}


/* FIXED BACKGROUND IMAGE (LEFT SIDE) */
.parallax-image {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  background: url('https://lh3.googleusercontent.com/u/0/d/124V-VjRy6mSJ_YhE7RW42buiLFKKcsXk')center/cover no-repeat;
  background-size: cover;
  background-position: var(--text-secondary);
  background-attachment: fixed;
}

.parallax-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/htdocs/image/home.https://lh3.googleusercontent.com/u/0/d/124V-VjRy6mSJ_YhE7RW42buiLFKKcsXk')center/cover no-repeat;
}

/* SCROLLING CONTENT (RIGHT SIDE) */
.parallax-content {
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  padding: 5rem 3rem;
}

.content-wrapper {
  max-width: 600px;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-tertiary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.main-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.main-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 12px;
  font-weight: 700;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 1024px) {
  .parallax-container {
    grid-template-columns: 1fr;
  }

  .parallax-image {
    position: relative;
    height: 50vh;
    background-attachment: scroll;
  }

  .parallax-content {
    padding: 3rem 2rem;
  }
}

/* ===============================================
   WHO WE ARE SECTION
================================================== */
.who-we-are {
  background-color: var(--bg-primary);
}

.who-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-image {
  position: relative;
}

.who-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge .years {

 display: block;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.9;
}

.who-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-tertiary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.who-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.who-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.who-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.who-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.who-features svg {
  min-width: 20px;
  stroke: var(--secondary-color);
  margin-top: 3px;
}

@media (max-width: 991px) {
  .who-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===============================================
   MISSION, VISION & VALUES
================================================== */
.mv-section {
  background-color: var(--bg-secondary);
}

.mv-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.mv-card {
  background-color: var(--bg-primary);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.mv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.mv-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.mv-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===============================================
   QUALITY COMMITMENT SECTION
================================================== */
.quality-section {
  background-color: var(--bg-primary);
}

.quality-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.quality-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-tertiary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.quality-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.quality-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quality-item {
  padding: 1.5rem;
  background-color: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.quality-item:hover {
  background-color: var(--bg-tertiary);
  transform: translateX(5px);
}

.quality-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.quality-icon svg {
  fill: white;
}

.quality-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.quality-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .quality-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quality-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   TEAM SECTION
================================================== */
.team-section {
  background-color: var(--bg-secondary);
}

.team-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-tertiary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.team-card {
  background-color: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}
.team-image1 {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
}

.team-image img {
  width: 100%;
  height:120%;
  object-fit:cover;
  transition: transform var(--transition-slow);
}


.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-content {
  padding: 2rem;
}

.team-role {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.team-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  gap: 1rem;
}

.team-social a {
  width: 40px;
  height: 40px;
  background-color: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.team-social a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.team-social svg {
  stroke: var(--text-primary);
  transition: stroke var(--transition-fast);
}

.team-social a:hover svg {
  stroke: white;
}

/* ===============================================
   STATISTICS SECTION
================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-normal);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  opacity: 0.9;
}

/* ===============================================
   SERVICES/PRODUCTS SECTION
================================================== */
.services-section {
  background-color: var(--bg-secondary);
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 1rem auto 3rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-primary);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  transition: gap var(--transition-fast);
}

.service-card .btn:hover {
  gap: 1rem;
}

/* ===============================================
   SERVICE DETAIL SECTIONS
================================================== */
.service-detail {
  padding: 5rem 0;
  background-color: var(--bg-primary);
}

.service-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-reverse .service-detail-container {
  direction: rtl;
}

.service-reverse .service-content {
  direction: ltr;
}

.service-image {
  width: 100%;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.service-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-tertiary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.service-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.service-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.service-list li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefits span {
  padding: 0.625rem 1.25rem;
  background-color: var(--bg-tertiary);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 991px) {
  .service-detail-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-reverse .service-detail-container {
    direction: ltr;
  }
}

/* ===============================================
   PRODUCT PAGES
================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  height: 180px;
  background-color: var(--bg-tertiary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.product-details h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.product-details p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

.price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
}

.product-card button {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.product-card button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===============================================
   CALL TO ACTION SECTION
================================================== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  line-height: 1.8;
}

.cta-section .cta-btn {
  background: white;
  color: var(--primary-color);
}

.cta-section .cta-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

/* ===============================================
   QUICK INFO STRIP
================================================== */
.quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  background-color: var(--bg-secondary);
  border-top: 3px solid var(--primary-color);
}

.info-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border-color);
  transition: background-color var(--transition-fast);
}

.info-item:last-child {
  border-right: none;
}

.info-item:hover {
  background-color: var(--bg-tertiary);
}

.info-item strong {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.info-item p,
.info-item a {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

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

@media (max-width: 768px) {
  .info-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .info-item:last-child {
    border-bottom: none;
  }
}

/* ===============================================
   ENQUIRY/CONTACT FORM
================================================== */
.enquiry {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

.enquiry__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items: stretch;
}

.enquiry__visual img {
  width: 100%;
  height: 100%;
   object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.enquiry__box {
  background-color: var(--bg-primary);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.enquiry__box .tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-tertiary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.enquiry__box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.enquiry__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.enquiry__form input,
.enquiry__form select,
.enquiry__form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.enquiry__form input:focus,
.enquiry__form select:focus,
.enquiry__form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--bg-primary);
}

.enquiry__form textarea {
  min-height: 150px;
  resize: vertical;
}

.enquiry__form button {
  padding: 1.125rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.enquiry__form button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

@media (max-width: 991px) {
  .enquiry__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

/* ===============================================
   LOCATION MAP
================================================== */
.location-map {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%);
  transition: filter var(--transition-normal);
}

.location-map:hover iframe {
  filter: grayscale(0%);
}

/* ===============================================
   FOOTER
================================================== */
.footer {
  background-color: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-col--company p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer-col h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-col--contact address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-contact-details p {
  margin: 0.5rem 0;
  color: var(--text-secondary);
}

.footer-contact-details a {
  color: var(--primary-color);
  font-weight: 600;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ===============================================
   ANIMATIONS
================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.animate-on-scroll {
  animation: slideInUp 0.6s ease forwards;
}

/* ===============================================
   RESPONSIVE UTILITIES
================================================== */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .section {
    padding: 3rem 0;
  }

  .card-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================================
   PRINT STYLES
================================================== */
@media print {
  .header,
  .hero,
  .page-banner,
  .cta-section,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}
/* ===============================================
   WHY US PAGE
================================================== */

.why-us-content {
  background-color: var(--bg-primary);
}

/* Section blocks */
.why-block {
  margin-bottom: 5rem;
}

/* Titles */
.why-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.why-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

/* ===============================================
   RATINGS & REVIEWS
================================================== */

.rating-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.rating-card {
  background-color: var(--bg-secondary);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.rating-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.rating-card p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.rating-card span {
  font-size: 1.25rem;
  color: #f59e0b;
}

/* ===============================================
   BEST PRODUCTS
================================================== */

.best-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.best-product-card {
  background-color: var(--bg-primary);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.best-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.best-product-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.best-product-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===============================================
   SYSTEM OVERVIEW
================================================== */

.system-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.system-card {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

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

.system-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.system-card p {
  line-height: 1.7;
  opacity: 0.95;
}

/* ===============================================
   RESPONSIVE
================================================== */

@media (max-width: 768px) {
  .why-title {
    font-size: 1.8rem;
  }

  .why-subtitle {
    font-size: 1rem;
  }
}
