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

:root {
  --primary: #1264B1;
  --primary-dark: #0d4f8a;
  --text-dark: #1c1c1c;
  --text-gray: #666;
  --text-light: #999;
  --bg-light: #f5f5f5;
  --bg-white: #fff;
  --border: #e5e5e5;
  --max-width: 1700px;
  --font-heading: 'Segoe UI', 'SF Pro Display', system-ui, sans-serif;
  --font-body: 'Segoe UI', 'SF Pro Text', system-ui, sans-serif;
  --font-tech: 'Consolas', 'SF Mono', 'Monaco', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
}

.logo img {
  height: 60px;
  width: auto;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
  padding: 28px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
}

.site-header.scrolled .nav-item {
  color: var(--text-dark);
}

.nav-item:hover,
.nav-item.active {
  color: rgba(255,255,255,0.8);
}

.site-header.scrolled .nav-item:hover,
.site-header.scrolled .nav-item.active {
  color: var(--primary);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

.site-header.scrolled .nav-item::after {
  background: var(--primary);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: calc(100% - 36px);
}

.nav-item.has-dropdown > .dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  transition: transform 0.3s;
}

.nav-item.has-dropdown:hover > .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 30px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.site-header.scrolled .mobile-toggle span {
  background: var(--text-dark);
}

/* ===== HERO / BANNER ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,30,60,0.7) 0%, rgba(0,50,100,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  color: #fff;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 30px;
  line-height: 1.4;
  max-width: 800px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--bg-light);
  padding: 60px 0;
}

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

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

.stat-item .stat-suffix {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: var(--font-body);
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title .divider {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.section-title .divider span {
  width: 30px;
  height: 3px;
  background: var(--primary);
}

/* ===== VALUES CARDS ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.value-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.value-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.value-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== PRODUCT CARDS ===== */
.products-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #ddd;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.product-card-body p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

.product-card-body .read-more {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.product-card-body .read-more:hover {
  gap: 10px;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  padding: 80px 0;
}

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

.industry-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.industry-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
}

.industry-card .overlay h4 {
  font-size: 15px;
  font-weight: 700;
}

.industry-card .overlay p {
  font-size: 12px;
  opacity: 0.8;
  margin-top: 5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-card .quote {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-card .author span {
  display: block;
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
  margin-top: 4px;
}

/* ===== NEWS SECTION ===== */
.news-section {
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
  background: #fff;
}

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

.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #ddd;
}

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

.news-card-body .date {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.news-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== PAGE HERO (SUB PAGES) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a2a4a 0%, #1264B1 100%);
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 80px 0;
}

.content-section.alt-bg {
  background: var(--bg-light);
}

.content-block {
  margin-bottom: 60px;
}

.content-block h2 {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.content-block h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.content-block p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-block ul {
  list-style: none;
  padding: 0;
}

.content-block ul li {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 2;
  padding-left: 20px;
  position: relative;
}

.content-block ul li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== CONNECTOR TYPES GRID ===== */
.connector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.connector-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.connector-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.connector-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 15px;
}

.connector-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2a4a 0%, #1264B1 100%);
  color: #fff;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(18,100,177,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

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

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

.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact-info-card h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

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

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

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

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.form-message-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message-error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== SUSTAINABILITY ===== */
.sustainability-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.sustainability-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s;
}

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

.sustainability-card .icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 24px;
}

.sustainability-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.sustainability-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== EMS CARDS ===== */
.ems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.ems-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

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

.ems-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, #1264B1, #0a2a4a);
}

.ems-card-body {
  padding: 24px;
}

.ems-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ems-card-body p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  color: #999;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: #999;
  padding: 4px 0;
  transition: color 0.3s;
}

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

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #666;
}

/* ===== NEWS LIST PAGE ===== */
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-list-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

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

.news-list-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-list-card .card-body {
  padding: 24px;
}

.news-list-card .card-body .date {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.news-list-card .card-body h3 {
  font-size: 16px;
  margin: 10px 0;
  line-height: 1.4;
}

.news-list-card .card-body p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== CAREER ===== */
.career-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.career-intro p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

.job-list {
  display: grid;
  gap: 20px;
}

.job-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s;
}

.job-card:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.job-card h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.job-card .dept {
  font-size: 13px;
  color: var(--text-light);
}

/* ===== ABOUT PAGE ===== */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.about-value-item {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 8px;
}

.about-value-item h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-value-item p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== MANUFACTURING JOURNEY ===== */
.mfg-journey {
  padding: 60px 0;
  background: var(--bg-light);
}

.mfg-journey-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.product-nav-strip {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 30px 0;
}

.product-nav-strip a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.3s;
  min-width: 140px;
}

.product-nav-strip a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.product-nav-strip a img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.product-nav-strip a span {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text-dark);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HOME PAGE DARK THEME ===== */

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0e27;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  height: 60px;
  width: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid transparent;
  border-top-color: #00d4ff;
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 1001;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00d4ff, #1264B1, #00d4ff);
  background-size: 200% 100%;
  animation: progressGlow 2s linear infinite;
  transition: width 0.1s;
}

@keyframes progressGlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Cursor Glow */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

.home-page:hover .cursor-glow {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(0,212,255,0.3);
  box-shadow: 0 0 20px rgba(0,212,255,0.4);
  transform: translateY(-3px);
}

/* Home Page Global Styles */
.home-page {
  background: #0a0e27;
  color: #e0e0e0;
}

.home-page .site-header.scrolled {
  background: rgba(10,14,39,0.9);
  box-shadow: 0 2px 30px rgba(0,212,255,0.1);
}

.home-page .site-header.scrolled .nav-item {
  color: #e0e0e0;
}

.home-page .site-header.scrolled .nav-item:hover,
.home-page .site-header.scrolled .nav-item.active {
  color: #00d4ff;
}

.home-page .site-header.scrolled .nav-item::after {
  background: #00d4ff;
}

.home-page .site-header.scrolled .mobile-toggle span {
  background: #e0e0e0;
}

.home-page .dropdown-menu {
  background: rgba(10,14,39,0.95);
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.home-page .dropdown-menu a {
  color: #ccc;
}

.home-page .dropdown-menu a:hover {
  background: rgba(0,212,255,0.08);
  color: #00d4ff;
}

/* Section Title Dark */
.home-page .section-title h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.home-page .section-title .divider span {
  background: linear-gradient(90deg, #00d4ff, #1264B1);
}

/* Hero Enhancements */
.home-page .hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.home-page .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1s ease-out 0.5s forwards;
}

.home-page .hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-page .hero-subtitle {
  font-size: 24px;
  margin-top: 10px;
  min-height: 36px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 1.2s forwards;
}

.typewriter {
  border-right: 2px solid #00d4ff;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

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

.home-page .hero-cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  border: 1px solid rgba(0,212,255,0.5);
  border-radius: 4px;
  color: #00d4ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  opacity: 0;
  animation: heroFadeIn 0.8s ease-out 1.8s forwards;
  background: rgba(0,212,255,0.05);
}

.home-page .hero-cta-btn:hover {
  background: rgba(0,212,255,0.15);
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #00d4ff, transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* Stats Section Dark */
.home-page .stats-section {
  background: #060919;
  padding: 80px 0;
  position: relative;
}

.home-page .stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}

.home-page .stats-grid {
  gap: 30px;
}

.home-page .stat-item {
  text-align: center;
  position: relative;
}

.home-page .stat-ring {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
}

.home-page .stat-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.home-page .stat-ring .ring-bg {
  fill: none;
  stroke: rgba(0,212,255,0.1);
  stroke-width: 3;
}

.home-page .stat-ring .ring-progress {
  fill: none;
  stroke: url(#ringGradient);
  stroke: #00d4ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.5s ease-out;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.5));
}

.home-page .stat-ring .ring-progress.animated {
  stroke-dashoffset: var(--target-offset);
}

.home-page .stat-ring .stat-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-tech);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.home-page .stat-ring .stat-suffix {
  font-size: 12px;
  color: #00d4ff;
}

.home-page .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose - Timeline */
.home-page .why-choose {
  padding: 100px 0;
  background: #0a0e27;
  position: relative;
}

.home-page .timeline-wrap {
  position: relative;
  padding: 40px 0;
}

.home-page .timeline-line {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0,212,255,0.1);
}

.home-page .timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00d4ff, #1264B1);
  transition: width 1.5s ease-out;
  box-shadow: 0 0 10px rgba(0,212,255,0.5);
}

.home-page .timeline-line.animated::after {
  width: 100%;
}

.home-page .timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  align-items: stretch;
}

.home-page .timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page .node-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,212,255,0.2);
  border: 2px solid rgba(0,212,255,0.4);
  margin-bottom: 24px;
  transition: all 0.5s;
  position: relative;
  z-index: 2;
}

.home-page .timeline-node.lit .node-dot {
  background: #00d4ff;
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0,212,255,0.6);
}

.home-page .timeline-node .value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.4s;
  transform-style: preserve-3d;
  perspective: 1000px;
  height: 100%;
}

.home-page .timeline-node .value-card:hover {
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 10px 40px rgba(0,212,255,0.1);
  transform: translateY(-8px);
}

.home-page .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #00d4ff;
  transition: all 0.3s;
}

.home-page .value-card:hover .card-icon {
  background: rgba(0,212,255,0.2);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

.home-page .value-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: #00d4ff;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.home-page .value-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Global CTA Banner */
.home-page .global-cta-banner {
  margin-top: 60px;
  position: relative;
  padding: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, rgba(18,100,177,0.08) 100%);
  border: 1px solid rgba(0,212,255,0.15);
  overflow: hidden;
  text-align: center;
}

.home-page .globe-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.08);
  animation: globeRotate 20s linear infinite;
}

.home-page .globe-bg::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.05);
  transform: rotate(45deg) scaleX(0.5);
}

@keyframes globeRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.home-page .global-cta-content {
  position: relative;
  z-index: 1;
}

.home-page .global-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}

.home-page .global-cta-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Products Section Dark */
.home-page .products-section {
  padding: 100px 0;
  background: #060919;
  position: relative;
}

.home-page .products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}

.home-page .product-card {
  background: linear-gradient(145deg, rgba(10,14,39,0.9) 0%, rgba(18,100,177,0.05) 100%);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}

.home-page .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(0,212,255,0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.home-page .product-card:hover::before {
  opacity: 1;
}

.home-page .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 40px rgba(0,212,255,0.15);
}

.home-page .product-icon-wrap {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.home-page .product-icon-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  transition: all 0.4s;
}

.home-page .product-card:hover .product-icon-wrap::after {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0,212,255,0.25) 0%, transparent 70%);
}

.home-page .product-icon-wrap svg {
  width: 80px;
  height: 80px;
  color: rgba(0,212,255,0.7);
  transition: all 0.4s;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.3));
}

.home-page .product-card:hover .product-icon-wrap svg {
  color: #00d4ff;
  filter: drop-shadow(0 0 16px rgba(0,212,255,0.7));
  transform: scale(1.1);
}

.home-page .product-card-body {
  padding: 0 24px 24px;
}

.home-page .product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.home-page .product-card-body p {
  color: rgba(255,255,255,0.5);
}

.home-page .product-card-body .read-more {
  color: #00d4ff;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.home-page .product-card-body .read-more .arrow {
  transition: transform 0.3s;
}

.home-page .product-card-body .read-more:hover {
  text-shadow: 0 0 10px rgba(0,212,255,0.5);
  gap: 12px;
}

.home-page .product-card-body .read-more:hover .arrow {
  transform: translateX(4px);
}

/* Industries Section Dark */
.home-page .industries-section {
  padding: 100px 0;
  background: #0a0e27;
  position: relative;
}

.home-page .industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}

.home-page .industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-page .industry-card {
  background: linear-gradient(145deg, rgba(10,14,39,0.95) 0%, rgba(18,100,177,0.03) 100%);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.home-page .industry-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
  transition: all 0.5s;
}

.home-page .industry-card:hover::before {
  width: 200px;
  height: 200px;
}

.home-page .industry-card:hover {
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.15);
  transform: translateY(-8px) scale(1.02);
}

.home-page .industry-icon-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.home-page .industry-icon-wrap svg {
  width: 72px;
  height: 72px;
  color: rgba(0,212,255,0.6);
  transition: all 0.4s;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.3));
}

.home-page .industry-card:hover .industry-icon-wrap svg {
  color: #00d4ff;
  filter: drop-shadow(0 0 16px rgba(0,212,255,0.7));
  transform: scale(1.1);
}

.home-page .industry-content {
  position: relative;
  z-index: 1;
}

.home-page .industry-content h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s;
}

.home-page .industry-card:hover .industry-content h4 {
  color: #00d4ff;
}

.home-page .industry-content p {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.6;
}

/* Testimonials Carousel */
.home-page .testimonials-section {
  padding: 100px 0;
  background: #060919;
  position: relative;
  overflow: hidden;
}

.home-page .testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}

.home-page .testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.home-page .carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.home-page .testimonial-card {
  width: calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  padding: 30px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.home-page .testimonial-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.home-page .testimonial-card::before {
  color: #00d4ff;
  opacity: 0.3;
}

.home-page .testimonial-card .quote {
  color: rgba(255,255,255,0.7);
}

.home-page .testimonial-card .author {
  color: #fff;
}

.home-page .testimonial-card .author span {
  color: #00d4ff;
}

.home-page .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.home-page .carousel-arrow:hover {
  background: rgba(0,212,255,0.2);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

.home-page .carousel-prev { left: 0; }
.home-page .carousel-next { right: 0; }

/* News Magazine Layout */
.home-page .news-section {
  padding: 100px 0;
  background: #0a0e27;
  position: relative;
}

.home-page .news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}

.home-page .news-magazine {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.home-page .news-featured {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.08);
  transition: all 0.4s;
  display: block;
}

.home-page .news-featured:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(-5px);
}

.home-page .news-featured .news-card-img {
  height: 100%;
  min-height: 200px;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.6s;
}

.home-page .news-featured:hover .news-card-img {
  transform: scale(1.05);
}

.home-page .news-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-page .news-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.08);
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s;
}

.home-page .news-card:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transform: translateX(5px);
}

.home-page .news-card .news-card-img {
  width: 140px;
  height: auto;
  min-height: 100px;
  max-height: 120px;
  object-fit: cover;
  flex-shrink: 0;
}

.home-page .news-card-body {
  padding: 16px;
}

.home-page .news-card-body .date {
  color: #00d4ff;
  font-family: var(--font-tech);
  font-size: 11px;
}

.home-page .news-card-body h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15px;
}

.home-page .news-card-body p {
  color: rgba(255,255,255,0.5);
}

/* Neon Button */
.btn-neon {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(0,212,255,0.5);
  border-radius: 4px;
  color: #00d4ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.1), transparent);
  transition: left 0.5s;
}

.btn-neon:hover::before {
  left: 100%;
}

.btn-neon:hover {
  background: rgba(0,212,255,0.1);
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}

/* Footer Dark */
.home-page .site-footer {
  background: #050816;
  position: relative;
}

.home-page .site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  animation: footerGlow 3s linear infinite;
  background-size: 200% 100%;
}

@keyframes footerGlow {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.home-page .footer-col a {
  position: relative;
  display: inline-block;
}

.home-page .footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00d4ff;
  transition: width 0.3s;
}

.home-page .footer-col a:hover::after {
  width: 100%;
}

.home-page .footer-col a:hover {
  color: #00d4ff;
}

/* ===== INNER PAGE DARK THEME ===== */

.inner-page {
  background: #0a0e27;
  color: #e0e0e0;
}

/* Header on inner pages */
.inner-page .site-header {
  background: rgba(10,14,39,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.inner-page .site-header .nav-item {
  color: #e0e0e0;
}

.inner-page .site-header .nav-item:hover,
.inner-page .site-header .nav-item.active {
  color: #00d4ff;
}

.inner-page .site-header .nav-item::after {
  background: #00d4ff;
}

.inner-page .site-header .mobile-toggle span {
  background: #e0e0e0;
}

.inner-page .dropdown-menu {
  background: rgba(10,14,39,0.98);
  border: 1px solid rgba(0,212,255,0.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.inner-page .dropdown-menu a {
  color: #ccc;
}

.inner-page .dropdown-menu a:hover {
  background: rgba(0,212,255,0.08);
  color: #00d4ff;
}

/* Page Hero Dark */
.inner-page .page-hero {
  background: linear-gradient(135deg, #060919 0%, #0a1628 50%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
}

.inner-page .page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.inner-page .page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.3), transparent);
}

.inner-page .page-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.inner-page .page-hero p {
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}

/* Content Sections Dark */
.inner-page .content-section {
  background: #0a0e27;
  position: relative;
}

.inner-page .content-section.alt-bg {
  background: #060919;
}

.inner-page .content-section + .content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.15), transparent);
}

.inner-page .content-block h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inner-page .content-block h3 {
  color: #00d4ff;
  font-family: var(--font-heading);
}

.inner-page .content-block p {
  color: rgba(255,255,255,0.6);
}

.inner-page .content-block ul li {
  color: rgba(255,255,255,0.6);
}

.inner-page .content-block ul li::before {
  color: #00d4ff;
}

/* Two/Three/Four Col */
.inner-page .two-col,
.inner-page .three-col,
.inner-page .four-col {
  gap: 40px;
}

/* Connector Grid Dark */
.inner-page .connector-grid {
  gap: 24px;
}

.inner-page .connector-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  padding: 24px 20px;
  transition: all 0.4s;
}

.inner-page .connector-item:hover {
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.1);
  transform: translateY(-5px);
}

.inner-page .connector-item img {
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(0,212,255,0.3));
  opacity: 0.7;
  transition: all 0.4s;
}

.inner-page .connector-item:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(0,212,255,0.6));
}

.inner-page .connector-item h4 {
  color: #fff;
  font-family: var(--font-heading);
}

/* EMS Cards Dark */
.inner-page .ems-grid {
  gap: 30px;
}

.inner-page .ems-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s;
}

.inner-page .ems-card:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.1);
  transform: translateY(-5px);
}

.inner-page .ems-card-img {
  background: linear-gradient(135deg, #0d1f3c, #1264B1);
}

.inner-page .ems-card-body h3 {
  color: #fff;
  font-family: var(--font-heading);
}

.inner-page .ems-card-body p {
  color: rgba(255,255,255,0.5);
}

/* Manufacturing Journey Dark */
.inner-page .mfg-journey {
  background: #060919;
  position: relative;
}

.inner-page .mfg-journey::before,
.inner-page .mfg-journey::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
}

.inner-page .mfg-journey::before { top: 0; }
.inner-page .mfg-journey::after { bottom: 0; }

.inner-page .mfg-journey-title {
  color: #fff;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.inner-page .product-nav-strip a {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  box-shadow: none;
  transition: all 0.4s;
}

.inner-page .product-nav-strip a:hover {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 15px rgba(0,212,255,0.1);
}

.inner-page .product-nav-strip a span {
  color: #e0e0e0;
}

/* CTA Section Dark */
.inner-page .cta-section {
  background: linear-gradient(135deg, #060919 0%, #0d1f3c 100%);
  position: relative;
}

.inner-page .cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.inner-page .cta-section h2 {
  font-family: var(--font-heading);
  color: #fff;
  position: relative;
  z-index: 1;
}

.inner-page .cta-section p {
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}

/* Buttons Dark */
.inner-page .btn-primary {
  background: linear-gradient(135deg, #00d4ff, #1264B1);
  color: #fff;
  border: none;
}

.inner-page .btn-primary:hover {
  background: linear-gradient(135deg, #00e5ff, #1a7fd4);
  box-shadow: 0 5px 20px rgba(0,212,255,0.3);
  transform: translateY(-2px);
}

.inner-page .btn-outline {
  border-color: rgba(0,212,255,0.5);
  color: #00d4ff;
}

.inner-page .btn-outline:hover {
  background: rgba(0,212,255,0.1);
  color: #00d4ff;
  border-color: #00d4ff;
}

.inner-page .btn-white {
  background: #fff;
  color: #0a0e27;
}

.inner-page .btn-white:hover {
  background: #e0e0e0;
}

/* About Page Dark */
.inner-page .about-values {
  gap: 30px;
}

.inner-page .about-value-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.4s;
}

.inner-page .about-value-item:hover {
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.inner-page .about-value-item h3 {
  color: #00d4ff;
  font-family: var(--font-heading);
}

.inner-page .about-value-item p {
  color: rgba(255,255,255,0.6);
}

/* Sustainability Dark */
.inner-page .sustainability-cards {
  gap: 30px;
}

.inner-page .sustainability-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.4s;
}

.inner-page .sustainability-card:hover {
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.1);
  transform: translateY(-5px);
}

.inner-page .sustainability-card .icon {
  background: linear-gradient(135deg, #00d4ff, #1264B1);
  box-shadow: 0 4px 15px rgba(0,212,255,0.3);
}

.inner-page .sustainability-card h3 {
  color: #fff;
  font-family: var(--font-heading);
}

.inner-page .sustainability-card p {
  color: rgba(255,255,255,0.6);
}

/* Contact Page Dark */
.inner-page .contact-grid {
  gap: 40px;
}

.inner-page .contact-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  transition: all 0.3s;
}

.inner-page .contact-info-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: rgba(0,212,255,0.05);
}

.inner-page .contact-info-card h4 {
  color: #00d4ff;
  font-family: var(--font-heading);
}

.inner-page .contact-info-card p {
  color: rgba(255,255,255,0.6);
}

.inner-page .contact-form label {
  color: #e0e0e0;
}

.inner-page .contact-form input,
.inner-page .contact-form select,
.inner-page .contact-form textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(0,212,255,0.15);
  color: #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s;
}

.inner-page .contact-form input:focus,
.inner-page .contact-form select:focus,
.inner-page .contact-form textarea:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0,212,255,0.2);
  background: rgba(255,255,255,0.08);
}

.inner-page .contact-form input::placeholder,
.inner-page .contact-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.inner-page .form-message-success {
  background: rgba(0,212,255,0.1);
  color: #00d4ff;
  border-color: rgba(0,212,255,0.3);
}

.inner-page .form-message-error {
  background: rgba(255,80,80,0.1);
  color: #ff6b6b;
  border-color: rgba(255,80,80,0.3);
}

/* Career Page Dark */
.inner-page .career-intro p {
  color: rgba(255,255,255,0.6);
}

.inner-page .job-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(0,212,255,0.1);
  border-radius: 12px;
  transition: all 0.4s;
}

.inner-page .job-card:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 15px rgba(0,212,255,0.1);
  transform: translateY(-2px);
}

.inner-page .job-card h3 {
  color: #fff;
  font-family: var(--font-heading);
}

.inner-page .job-card .dept {
  color: rgba(255,255,255,0.5);
}

/* News List Page Dark */
.inner-page .news-list-grid {
  gap: 30px;
}

.inner-page .news-list-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 12px;
  box-shadow: none;
  overflow: hidden;
  transition: all 0.4s;
}

.inner-page .news-list-card:hover {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.1);
  transform: translateY(-5px);
}

.inner-page .news-list-card .card-body {
  padding: 24px;
}

.inner-page .news-list-card .card-body .date {
  color: #00d4ff;
  font-family: var(--font-tech);
}

.inner-page .news-list-card .card-body h3 {
  color: #fff;
  font-family: var(--font-heading);
}

.inner-page .news-list-card .card-body p {
  color: rgba(255,255,255,0.5);
}

/* Footer on inner pages */
.inner-page .site-footer {
  background: #050816;
  position: relative;
}

.inner-page .site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  animation: footerGlow 3s linear infinite;
  background-size: 200% 100%;
}

.inner-page .footer-col a {
  position: relative;
  display: inline-block;
}

.inner-page .footer-col a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #00d4ff;
  transition: width 0.3s;
}

.inner-page .footer-col a:hover::after {
  width: 100%;
}

.inner-page .footer-col a:hover {
  color: #00d4ff;
}

/* Back to top on inner pages */
.inner-page .back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,212,255,0.15);
  border: 1px solid rgba(0,212,255,0.3);
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.inner-page .back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.inner-page .back-to-top:hover {
  background: rgba(0,212,255,0.3);
  box-shadow: 0 0 20px rgba(0,212,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-main {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
  }
  
  .nav-main .nav-item {
    color: var(--text-dark);
  }
  
  .nav-main .nav-item::after {
    background: var(--primary);
  }

  .home-page .nav-main {
    background: rgba(10,14,39,0.98);
  }

  .home-page .nav-main .nav-item {
    color: #e0e0e0;
  }

  .home-page .nav-main .nav-item::after {
    background: #00d4ff;
  }

  .nav-main.open {
    display: flex;
  }
  .nav-item {
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-item::after {
    display: none;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0 0 0 20px;
  }
  .nav-item.has-dropdown.open .dropdown-menu {
    display: block;
  }
  .mobile-toggle {
    display: flex;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid,
  .two-col,
  .contact-grid,
  .about-values {
    grid-template-columns: 1fr;
  }
  .products-grid,
  .news-grid,
  .news-list-grid,
  .testimonials-grid,
  .ems-grid,
  .sustainability-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid,
  .connector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content p {
    font-size: 22px;
  }

  .home-page .hero-title {
    font-size: 36px;
  }

  .home-page .hero-subtitle {
    font-size: 18px;
  }

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

  .home-page .timeline-line {
    display: none;
  }

  .home-page .testimonial-card {
    width: calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  .home-page .news-magazine {
    grid-template-columns: 1fr;
  }

  .home-page .news-card {
    flex-direction: column;
  }

  .home-page .news-card .news-card-img {
    width: 100%;
    height: 160px;
  }

  .home-page .cursor-glow {
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
  .header-inner {
    padding: 0 20px;
  }
  .products-grid,
  .news-grid,
  .news-list-grid,
  .testimonials-grid,
  .ems-grid,
  .sustainability-cards,
  .industries-grid,
  .connector-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .section-title h2 {
    font-size: 28px;
  }

  .home-page .hero-title {
    font-size: 28px;
  }

  .home-page .hero-subtitle {
    font-size: 16px;
  }

  .home-page .timeline-grid {
    grid-template-columns: 1fr;
  }

  .home-page .testimonial-card {
    width: 100%;
    min-width: 100%;
  }

  .home-page .stat-ring {
    width: 120px;
    height: 120px;
  }

  .home-page .stat-ring .stat-number {
    font-size: 24px;
  }

  .home-page .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* Inner Page Responsive */
@media (max-width: 992px) {
  .inner-page .two-col,
  .inner-page .three-col,
  .inner-page .four-col,
  .inner-page .contact-grid,
  .inner-page .about-values,
  .inner-page .sustainability-cards,
  .inner-page .ems-grid {
    grid-template-columns: 1fr;
  }

  .inner-page .connector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-page .news-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-page .page-hero h1 {
    font-size: 32px;
  }

  .inner-page .cursor-glow {
    display: none;
  }

  .inner-page .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .inner-page .connector-grid,
  .inner-page .news-list-grid {
    grid-template-columns: 1fr;
  }

  .inner-page .page-hero {
    padding: 120px 0 60px;
  }

  .inner-page .page-hero h1 {
    font-size: 26px;
  }

  .inner-page .content-block h2 {
    font-size: 22px;
  }

  .inner-page .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
}
