:root {
  /* Color Palette */
  --primary-color: #002b4d; /* Darker Navy Blue - Professional */
  --primary-light: #004073;
  --secondary-color: #007bff; /* Standard Tech Blue */
  --accent-color: #d4a017; /* Muted Gold */

  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #7a7a7a;

  --bg-white: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-light-blue: #eef5fa;

  --border-color: #e9ecef;

  --max-width: 1200px;
  --font-main: "Roboto", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mobile-only {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text-medium);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Business Scope Page */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.business-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary-color);
  height: 100%;
}

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

.business-card .card-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.business-card .brand-title {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.business-card .brand-subtitle {
  font-size: 0.9rem;
  display: block;
}

.business-card .product-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--text-medium);
  padding-left: 15px;
  position: relative;
}

.business-card .product-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.business-card .product-list li strong {
  color: var(--text-dark);
  font-weight: 600;
  margin-right: 5px;
}

/* Product Details Section */
.product-details-section {
  background-color: #fff;
  padding: 60px 0;
}

.detail-block {
  margin-bottom: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-title {
  color: #003399; /* Blue from image */
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-subtitle {
  color: #cc0000; /* Red from image */
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.product-desc {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
  line-height: 1.8;
}

.product-features h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
  font-weight: 600;
}

.product-features ul {
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #444;
  line-height: 1.6;
}

.product-features li::before {
  content: "•";
  color: #cc0000;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

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

.top-bar {
  background-color: #001f3f; /* Very dark blue */
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 10px 0;
}

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

.top-bar-left span {
  margin-right: 20px;
}

.top-bar-left i {
  margin-right: 8px;
  color: var(--accent-color);
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-right a:hover,
.top-bar-right a.active {
  color: var(--white);
  font-weight: bold;
}

.top-bar-right .divider {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
}

/* Header & Nav */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 70px;
  width: auto;
  display: block;
}

.logo-text.white h1,
.logo-text.white p,
.logo-text.white h2 {
  color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar .nav-links {
  display: flex;
}

.navbar .nav-links li {
  margin-left: 35px;
}

.navbar .nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.navbar .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  margin-left: 30px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--text-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

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

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 8px 20px;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-light {
  background-color: #fff;
  color: var(--primary-color);
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  background: #001f3f; /* Fallback color */
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

#canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 43, 77, 0.95) 0%,
    rgba(0, 30, 60, 0.8) 100%
  );
  z-index: 2;
}

.hero-container {
  /* display: flex; REMOVED: No longer using flex for layout between text and QR */
  /* align-items: center; REMOVED */
  /* justify-content: space-between; REMOVED */
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* Center the text block since we have left/right elements */
}

.hero-text {
  max-width: 650px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
  text-align: center; /* Optional: Center text for symmetry */
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center; /* Center buttons */
}

.hero-company-name {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
  border-left: 3px solid #0056b3; /* Accent line */
  padding-left: 20px;
}

.name-vertical {
  writing-mode: vertical-lr; /* Changed to LR so columns flow Left->Right */
  text-orientation: mixed;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column; /* In vertical mode, this stacks columns side-by-side */
  gap: 15px;
  align-items: flex-start; /* Align columns to the top */
  justify-content: center;
  max-height: 400px;
}

.name-vertical .cn {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 10px;
}

/* English Version Fixes */
html[lang="en"] .name-vertical {
  max-height: 80vh;
}

html[lang="en"] .name-vertical .cn {
  font-size: 20px;
  letter-spacing: 1px;
}

.hero-qr {
  position: absolute;
  right: 40px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}
.qr-box {
  height: 220px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.qr-box:hover {
  transform: translateY(-5px);
}

.qr-box img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 4px;
  background: #fff;
  padding: 5px;
}

.qr-box p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 1; /* Reset hero p opacity */
}

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

.hero-subtitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hero-container {
    justify-content: center;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 40px;
    margin-right: 0;
  }

  .hero-company-name {
    display: block;
    position: absolute;
    top: 30px; /* Move to top-left empty space */
    left: 20px;
    width: auto;
    transform: none;
    text-align: left;
    border-left: 3px solid #0056b3; /* Restore accent line */
    padding-left: 15px;
  }

  .name-vertical {
    writing-mode: horizontal-tb;
    flex-direction: column; /* Stack lines vertically for compact look */
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    width: auto;
  }

  .name-vertical .cn {
    font-size: 18px; /* Slightly smaller for mobile corner */
    letter-spacing: 2px;
  }

  .hero-qr {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-btns .btn {
  margin-right: 15px;
}

/* Animation Utilities */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  /* Existing styles remain, just ensure transition is compatible */
  transition: all 0.3s ease, transform 0.1s; /* Separate transform for tilt */
  transform-style: preserve-3d;
  perspective: 1000px;
}

.section {
  padding: 80px 0;
}

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

.section-subtitle {
  display: block;
  font-size: 13px;
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.section-header .line {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.header-desc {
  margin-top: 15px;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.highlight {
  color: var(--primary-color);
}

/* About Section */
.about-section {
  background-color: var(--bg-white);
}

.about-section .row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.col-image,
.col-text {
  flex: 1;
}

.about-img-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.placeholder-img {
  background-color: #e0e6ed;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aab8c2;
  font-size: 60px;
}

.placeholder-img {
  width: 100%;
  height: 100%;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}

.experience-badge .years {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-body .lead {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

.about-body p {
  margin-bottom: 25px;
  color: var(--text-light);
}

.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  font-weight: 500;
}

.check-list i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 18px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 10px;
}

.link-arrow i {
  margin-left: 8px;
  transition: margin-left 0.3s;
}

.link-arrow:hover i {
  margin-left: 12px;
}

/* Stats Section */
.stats-section {
  background-color: var(--primary-color);
  padding: 80px 0;
  color: #fff;
  background-image: linear-gradient(rgba(0, 43, 77, 0.9), rgba(0, 43, 77, 0.9)),
    url("../images/2.jpg");
  background-size: cover;
  background-attachment: fixed; /* Parallax Effect */
  background-position: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item i {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.counter-wrapper {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: 1;
}

.counter-wrapper span {
  display: inline-block;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.bg-gray {
  background-color: var(--bg-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 4px; /* More square, professional */
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.service-card:hover::before {
  width: 100%;
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--bg-light-blue);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-size: 24px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  font-size: 15px;
}

/* Process Section */
.process-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  width: 160px;
  position: relative;
}

.step-number {
  font-size: 40px;
  font-weight: 700;
  color: #e9ecef;
  margin-bottom: -20px;
  z-index: 0;
  position: relative;
}

.process-step h4 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: var(--text-dark);
}

.process-arrow {
  color: var(--border-color);
  margin: 0 20px;
  font-size: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 43, 77, 0.85), rgba(0, 43, 77, 0.85)),
    url("../images/3.jpg");
  background-size: cover;
  background-attachment: fixed; /* Parallax Effect */
  background-position: center;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 15px;
}

.cta-content p {
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 18px;
}

/* Organization Page Styles */
.page-header {
  background: linear-gradient(rgba(0, 43, 77, 0.9), rgba(0, 43, 77, 0.9)),
    url("../images/1.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0 60px;
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.8;
}

.org-section {
  background-color: #f9f9f9;
}

.org-region-block {
  margin-bottom: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.region-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}

.region-title i {
  margin-right: 10px;
}

/* China Layout */
.org-layout-china {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.org-map-placeholder {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: #f4f6f8;
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.org-categories {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.category-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
  padding-left: 15px;
  border-left: 4px solid;
}

.category-title.text-blue {
  color: #0056b3;
  border-color: #0056b3;
}
.category-title.text-purple {
  color: #6f42c1;
  border-color: #6f42c1;
}

.org-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.org-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

.org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.org-card .card-header {
  padding: 12px 15px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.org-card .card-body {
  padding: 15px;
  font-size: 0.9rem;
  color: #666;
  background: #fff;
}

.org-card.blue .card-header {
  background-color: #0056b3;
}
.org-card.purple .card-header {
  background-color: #6f42c1;
}
.org-card.green .card-header {
  background-color: #28a745;
}
.org-card.brown .card-header {
  background-color: #a0522d;
}

/* ASEAN Layout (Tree) */
.org-layout-asean {
  display: flex;
  gap: 40px;
}

.org-tree-container {
  flex: 2;
  padding: 20px;
}

.tree-root {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.root-card {
  margin-bottom: 30px;
  width: 250px;
  text-align: center;
  z-index: 2;
}

.tree-connector-vertical {
  position: absolute;
  top: 45px; /* Half height of root card approx */
  left: 40px; /* Offset for vertical line */
  width: 2px;
  height: calc(100% - 70px);
  background-color: var(--primary-color);
  z-index: 1;
}

.tree-branches {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 40px; /* Match vertical line offset */
  width: 100%;
}

.tree-branch {
  position: relative;
  padding-left: 40px;
}

.connector-elbow {
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.spacer-80 {
  height: 80px;
}

@media (max-width: 768px) {
  .org-layout-china,
  .org-layout-asean {
    flex-direction: column;
  }

  .org-map-placeholder {
    width: 100%;
    min-height: 200px;
  }

  .tree-connector-vertical {
    display: none; /* Simplify for mobile if needed, or adjust */
  }

  .tree-branches {
    margin-left: 0;
  }

  .tree-branch {
    padding-left: 0;
  }

  .connector-elbow {
    display: none;
  }

  .root-card {
    margin-bottom: 20px;
  }
}

/* Executive Team Styles */
.executive-team {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Footer */
.footer {
  background-color: #001f3f;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-about p {
  margin-top: 20px;
  max-width: 300px;
  line-height: 1.8;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

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

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 15px;
  font-size: 16px;
  transition: all 0.3s;
}

.social-links a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .header .container {
    height: auto;
    padding: 15px 20px;
    position: relative;
  }

  .navbar {
    /* Reset navbar container */
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
  }

  /* Side Menu */
  .navbar .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .navbar .nav-links.active {
    right: 0;
  }

  .navbar .nav-links li {
    margin-left: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .navbar .nav-links a {
    font-size: 18px;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-only {
    display: block;
  }

  .navbar .nav-links .mobile-only a {
    color: var(--primary-color);
    font-size: 16px;
    border-bottom: none;
    padding: 8px 0;
  }

  .navbar .nav-links .mobile-only.divider-item {
    height: 1px;
    background-color: #eee;
    margin: 15px 0 10px;
    padding: 0;
    width: 100%;
    list-style: none;
  }

  /* CTA in header - hide or adjust? */
  .nav-cta {
    display: none; /* Hide on mobile for cleaner layout */
  }

  .hamburger {
    display: block;
    z-index: 1001;
    margin-left: 20px;
    font-size: 24px;
  }

  /* Hero Adjustments */
  .hero {
    height: auto;
    min-height: 500px;
    padding: 120px 0 60px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
    transform: translateY(0);
    opacity: 1; /* Ensure visible if animation fails or simplified */
  }

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

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-btns .btn {
    margin-right: 0;
    width: 100%;
  }

  /* Section Spacing */
  .section {
    padding: 60px 0;
  }

  .about-section .row {
    flex-direction: column;
    gap: 40px;
  }

  .about-img-wrapper {
    margin-bottom: 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

@media (max-width: 576px) {
  .hero h2 {
    font-size: 28px;
  }

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

  .section-header h2 {
    font-size: 26px;
  }

  .top-bar {
    display: none;
  }

  /* Force single column for all grids on small screens */
  .business-grid,
  .market-grid,
  .strategic-grid,
  .other-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .alliance-card {
    padding: 20px;
  }

  .market-card {
    padding: 20px;
  }

  .container {
    padding: 0 15px;
  }

  /* Fix Image Display on Mobile */
  .placeholder-img {
    height: 250px;
    width: 100%;
    display: block; /* Ensure it behaves as a block element */
  }

  .experience-badge {
    right: 0;
    bottom: 0;
    padding: 15px;
    min-width: auto;
    border-radius: 8px 0 0 0;
  }

  .experience-badge .years {
    font-size: 20px;
  }

  /* Process Wrapper Mobile */
  .process-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}
/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info-card,
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item .icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 51, 153, 0.2);
}

.info-text h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
}

.info-text p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.form-control:focus {
  border-color: var(--secondary-color);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

textarea.form-control {
  resize: vertical;
}

/* Map Section */
.map-section {
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: #e9ecef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
}

.map-placeholder p {
  font-size: 1.2rem;
  font-weight: 500;
}

.map-placeholder .map-address {
  font-size: 1rem;
  margin-top: 10px;
  color: #6c757d;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* Alliance Page Styles */
.alliance-grid {
  display: grid;
  gap: 30px;
  padding: 20px 0;
}

.strategic-grid {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.alliance-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.alliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.alliance-info h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.alliance-info p {
  color: #777;
  font-size: 0.9rem;
}

.alliance-logo-box {
  padding: 15px 25px;
  border-radius: 8px;
  min-width: 180px;
  height: 120px; /* Fixed height for the box */
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alliance-logo-box img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Other Suppliers */
.other-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.supplier-item {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.supplier-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
}

.supplier-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .strategic-grid {
    grid-template-columns: 1fr;
  }
  .alliance-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .alliance-logo-box {
    width: 100%;
  }
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.market-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.market-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Background Decorative Icon */
.card-bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 150px;
  opacity: 0.03;
  color: var(--primary-color);
  transform: rotate(-15deg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.market-card:hover .card-bg-icon {
  transform: rotate(0deg) scale(1.1);
  opacity: 0.06;
}

/* Icon Box */
.market-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Gradients */
.gradient-blue {
  background: linear-gradient(135deg, #005f9e, #00b4db);
}
.gradient-red {
  background: linear-gradient(135deg, #c3002f, #ff416c);
}
.gradient-cyan {
  background: linear-gradient(135deg, #003399, #4facfe);
}
.gradient-purple {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.gradient-green {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}
.gradient-orange {
  background: linear-gradient(135deg, #f09819, #edde5d);
}
.gradient-dark {
  background: linear-gradient(135deg, #232526, #414345);
}
.gradient-gray {
  background: linear-gradient(135deg, #304352, #d7d2cc);
}
.gradient-teal {
  background: linear-gradient(135deg, #1d976c, #93f9b9);
}
.gradient-indigo {
  background: linear-gradient(135deg, #2b5876, #4e4376);
}

/* Content */
.market-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.market-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1; /* Push clients to bottom */
}

/* Clients */
.market-clients-container {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: auto;
}

.client-label {
  display: block;
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #333;
}

.client-brand {
  font-weight: bold;
  font-family: Arial, sans-serif;
}

.client-brand.bg-black {
  background: #000;
  color: #fff;
  padding: 2px 6px;
  font-size: 0.8em;
  border-radius: 2px;
}

/* Page Header Description */
.header-desc {
  max-width: 600px;
  margin: 15px auto 0;
  color: #666;
  font-size: 1.1rem;
}
