/* Base styles */
:root {
  /* Navy blue themed colors */
  --primary-color: #1e3a8a;
  --secondary-color: #0f2027;
  --text-color: #1e3a8a; /* Main dark navy blue for headings */
  --light-text-color: #3b5998; /* Lighter navy blue for normal text */
  --background-color: #ffffff;
  --light-bg-color: #f8faff;
  --border-color: #e1e8f7;
  --success-color: #4CAF50;
  --error-color: #F44336;
  --card-bg-color: #ffffff;
  --header-bg-transparent: rgba(255, 255, 255, 0.9);
  --header-bg-solid: rgba(255, 255, 255, 0.98);
  --header-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
  --footer-bg-color: #0f172a; /* Dark theme footer */
  --footer-text-color: #ffffff;
  --footer-secondary-color: #94a3b8;
  --social-icon-bg: #1e3a8a;
  --logo-color: #1e3a8a;
  --hero-text-color: #1e3a8a;
  --section-text-color: #3b5998;
  
  /* Transition durations */
  --transition-speed: 0.3s;
  
  /* Typography Variables - Century Gothic for all except company name */
  --font-primary: 'Century Gothic', 'Arial', sans-serif;
  --font-secondary: 'Century Gothic', 'Arial', sans-serif;
  --font-accent: 'Century Gothic', 'Arial', sans-serif;
  --font-company: 'Playfair Display', 'Georgia', serif;
}

[data-theme="dark"] {
  /* Dark mode colors */
  --primary-color: #D4A876;
  --secondary-color: #BE9166;
  --text-color: #E6E6E6;
  --background-color: #121212;
  --light-bg-color: #1E1E1E;
  --border-color: #3D3D3D;
  --card-bg-color: #2D2D2D;
  --header-bg-transparent: rgba(18, 18, 18, 0);
  --header-bg-solid: rgba(18, 18, 18, 0.95);
  --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  --footer-bg-color: #0D0D0D;
  --footer-text-color: #E6E6E6;
  --footer-secondary-color: #9C9C9C;
  --social-icon-bg: #222;
  --logo-color: #3b82f6;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  line-height: 1.7;
  color: var(--light-text-color);
  overflow-x: hidden;
  background-color: var(--background-color);
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Force Century Gothic on all text elements */
*, *::before, *::after {
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

/* More specific selectors to override any other font declarations */
h1, h2, h3, h4, h5, h6, p, span, div, a, li, button, input, textarea, label {
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

/* Only company names use Playfair Display */
.logo-text, .banner-title, .footer-logo-text {
  font-family: 'Playfair Display', serif !important;
}

img {
  max-width: 100%;
  height: auto;
  loading: lazy;
  decoding: async;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  width: 100%;
  box-sizing: border-box;
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--text-color);
  text-align: center;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--light-text-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

/* Theme Toggle Button - Repositioned to bottom right */
.theme-toggle {
  position: fixed;
  bottom: 60px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.theme-toggle:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.theme-toggle i {
  color: white;
  font-size: 1.2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--header-bg-transparent);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: var(--header-bg-solid);
  box-shadow: var(--header-shadow);
  border-bottom-color: var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3a8a !important;
  font-family: var(--font-company);
  text-align: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  position: relative;
  z-index: 1001;
  padding: 10px;
  margin-right: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  transition: all 0.3s ease;
}

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

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

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

/* Banner Section */
.banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 600px;
  overflow: hidden;
  margin-top: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f8ff; /* Very light blue */
}

.banner-background {
  display: none; /* Hide background image */
}



.banner-content-wrapper {
  text-align: center;
  max-width: 600px;
  color: var(--text-color); /* Navy blue text */
  padding-top: 40px;
}

.banner-logo {
  margin-bottom: 2rem;
  margin-top: 1rem;

}

.banner-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.banner-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif !important;
  letter-spacing: 2px;
  color: var(--text-color);
  text-shadow: none;
}

.banner-divider {
  width: min(490px, 90vw);
  max-width: 490px;
  height: 2px;
  background: var(--primary-color); /* Navy blue divider */
  margin: 1.5rem auto;
}

.banner-tagline {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--light-text-color); /* Lighter navy blue text */
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 300;
}

.banner-subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banner-highlight {
  font-size: 1.2rem;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 400;
  color: var(--text-color); /* Dark navy blue text */
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.banner-location {
  font-size: 1rem;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  color: var(--light-text-color); /* Lighter navy blue text */
  font-weight: 300;
  letter-spacing: 0.05em;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}







@keyframes dividerGlow {
  from {
    box-shadow: 0 0 10px rgba(190, 145, 102, 0.5);
  }
  to {
    box-shadow: 0 0 20px rgba(190, 145, 102, 0.8);
  }
}

.jewelry-piece {
  animation: jewelryFloat 4s ease-in-out infinite;
}

.jewelry-piece:nth-child(3) { animation-delay: -1s; }
.jewelry-piece:nth-child(4) { animation-delay: -2s; }
.jewelry-piece:nth-child(5) { animation-delay: -3s; }
.jewelry-piece:nth-child(6) { animation-delay: -0.5s; }
.jewelry-piece:nth-child(7) { animation-delay: -2.5s; }

.sparkle {
  animation: sparkleShine 2s ease-in-out infinite;
}

.floating-sparkle {
  animation: floatAndFade 3s ease-in-out infinite;
}

.floating-sparkle:nth-child(odd) { animation-delay: -1.5s; }

.sparkle-group {
  animation: groupSparkle 5s ease-in-out infinite;
}

@keyframes jewelryFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(1deg); }
  66% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes sparkleShine {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  25% { opacity: 1; transform: scale(1.3); }
  50% { opacity: 0.8; transform: scale(1.1); }
  75% { opacity: 1; transform: scale(1.4); }
}

@keyframes floatAndFade {
  0%, 100% { opacity: 0.3; transform: translateY(0px) scale(1); }
  50% { opacity: 1; transform: translateY(-15px) scale(1.2); }
}

@keyframes groupSparkle {
  0%, 100% { opacity: 0.6; transform: scale(1) rotate(0deg); }
  33% { opacity: 1; transform: scale(1.1) rotate(120deg); }
  66% { opacity: 0.8; transform: scale(1.05) rotate(240deg); }
}

/* IIJS 2025 Announcement Banner */
.announcement-banner {
  background: var(--background-color);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}





.announcement-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.announcement-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.announcement-header h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--text-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.event-title {
  margin-bottom: 40px;
}

.event-main {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
  text-shadow: none;
  letter-spacing: 3px;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.event-subtitle {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--light-text-color);
  font-weight: 500;
  letter-spacing: 1px;
}

.event-edition {
  display: block;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.event-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.event-date, .event-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.event-date i, .event-location i {
  color: #FFD700;
  font-size: 1.3rem;
}

.event-booth {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.booth-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.booth-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.booth-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.company-highlight {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 30px;
}

.company-highlight h3 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #FFD700;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.company-highlight p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}





.hero-content-centered {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title-centered {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.02em;
}

.hero-subtitle-centered {
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: var(--hero-text-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  line-height: 1.7;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.01em;
}

.hero-buttons-centered {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.about-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  max-width: 800px;
  text-align: center;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-color);
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--card-bg-color);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Vision & Mission Section */
.vision-mission {
  background: var(--background-color);
  padding: 100px 0;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-card, .mission-card {
  background: var(--card-bg-color);
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-5px);
}

.vision-title, .mission-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.vision-text, .mission-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  font-weight: 400;
}

/* Core Values Section */
.core-values {
  background: var(--light-bg-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.centered-additional-values {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.centered-additional-values .value-card {
  max-width: 280px;
}

.value-card {
  background: var(--card-bg-color);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.value-icon i {
  color: white;
  font-size: 2rem;
}

.value-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.value-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Why Partner Section */
.why-partner {
  background: var(--background-color);
}

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--card-bg-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  color: white;
  font-size: 1.5rem;
}

.benefit-title {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1.4;
}

/* Certifications Section */
.certifications {
  background: var(--light-bg-color);
}

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

.cert-category {
  background: var(--card-bg-color);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-category-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.cert-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.cert-badge {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.cert-description {
  font-size: 1rem;
  color: var(--text-color);
  font-style: italic;
}

/* Leadership Section */
.leadership {
  background: var(--background-color);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  margin-top: 50px;
}

.leader-card {
  background: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.leader-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
  transform: none;
}

.leader-info {
  padding: 30px;
  text-align: center;
}

.leader-name {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.leader-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.leader-description {
  font-size: 1rem;
  color: var(--text-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  line-height: 1.7;
  font-weight: 300;
}

/* Manufacturing Section */
.manufacturing {
  background: var(--light-bg-color);
}

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

.centered-manufacturing {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.centered-manufacturing .manufacturing-card {
  max-width: 280px;
}

.manufacturing-card {
  background: var(--card-bg-color);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.manufacturing-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.manufacturing-icon i {
  color: white;
  font-size: 2rem;
}

.manufacturing-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.manufacturing-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

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

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

.service-card {
  background: var(--card-bg-color);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  color: white;
  font-size: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.service-description {
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Collections Section */
.collections {
  background: var(--light-bg-color);
}

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

.collection-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.collection-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--light-bg-color);
  transition: all 0.3s ease;
}

.collection-card:hover .collection-image img {
  transform: none;
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-overlay {
  transform: translateY(0);
}

.collection-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.collection-description {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Featured Products Section */
.featured-products {
  background: var(--background-color);
}

.product-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.category-btn {
  background: var(--card-bg-color);
  color: var(--text-color);
  border: 2px solid var(--border-color);
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
}

.category-btn:hover, .category-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

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

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.5s ease;
}

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

.product-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: var(--light-bg-color);
  transition: all 0.3s ease;
}

.product-card:hover .product-image img {
  transform: none;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.product-description {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
  background: var(--light-bg-color);
  padding: 100px 0;
}

.testimonials-container {
  position: relative;
  max-width: 800px;
  margin: 50px auto 0;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--card-bg-color);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 30px;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-weight: 600;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active, .dot:hover {
  background: var(--primary-color);
}

/* Contact Section */
.contact {
  background: var(--background-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 50px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

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

.contact-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 5px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--secondary-color);
  font-weight: 600;
}

.contact-item p {
  color: var(--text-color);
  line-height: 1.6;
}

.contact-form {
  background: var(--card-bg-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
  background: var(--background-color);
  color: var(--text-color);
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Newsletter Section */
.newsletter {
  background: #f0f8ff;
  color: var(--text-color);
  text-align: center;
  padding: 80px 0;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  display: flex;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-size: 1rem;
  background: white;
  color: var(--text-color);
}

.newsletter-input input:focus {
  outline: none;
}

.newsletter-input .btn {
  border-radius: 0;
  background: var(--secondary-color);
  padding: 15px 25px;
  font-size: 1rem;
}

.newsletter-input .btn:hover {
  background: var(--text-color);
}

/* Footer */
.footer {
  background: #f0f8ff;
  color: var(--text-color);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-color);
  font-family: 'Century Gothic', 'Arial', sans-serif !important;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  padding: 5px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  font-family: var(--font-company);
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--light-text-color);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--social-icon-bg);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-text-color);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-color);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--light-text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--social-icon-bg);
  padding-top: 20px;
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-inner {
    justify-content: space-between;
    padding: 8px 0;
    align-items: center;
  }
  
  .logo-left {
    gap: 8px;
  }
  
  .logo-left {
    position: static;
    transform: none;
    margin-right: auto;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .mobile-menu-btn {
    padding: 6px;
    margin-right: 15px;
  }
  
  .mobile-menu-btn span {
    width: 20px;
    height: 2px;
  }
  
  .nav-list {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--card-bg-color);
    flex-direction: column;
    padding: 10px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-item {
    margin-bottom: 5px;
  }
  
  .nav-link {
    padding: 8px 0;
    font-size: 1rem;
    display: block;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  
  .banner {
    margin-top: 68px;
    min-height: 350px;
    height: 50vh;
    max-height: 450px;
  }
  
  .banner-content-wrapper {
    padding: 15px 10px;
    max-width: 95%;
  }
  
  .banner-logo {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }

  .banner-logo-img {
    width: 80px;
    height: 80px;
  }
  
  .banner-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
  }
  
  .banner-tagline {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  
  .banner-divider {
    width: min(240px, 80vw);
    max-width: 240px;
  }
  
  .hero-title-centered {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .hero-subtitle-centered {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 35px;
    padding: 0 15px;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero-content-centered {
    padding: 0 15px;
  }
  
  .about-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .about-content {
    max-width: 95%;
    text-align: center;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .cert-category {
    padding: 25px 20px;
  }
  
  .cert-category-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .cert-items {
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .cert-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .announcement-banner {
    padding: 20px 0;
  }
  
  .announcement-content {
    padding: 0 15px;
  }
  
  .announcement-image {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .event-details {
    flex-direction: column;
    gap: 20px;
  }
  
  .event-booth {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-input {
    flex-direction: column;
  }
  
  .newsletter-input .btn {
    border-radius: 6px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .theme-toggle {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .header-inner {
    padding: 8px 0;
  }
  
  .logo-left {
    gap: 6px;
  }
  
  .logo-image {
    width: 35px;
    height: 35px;
  }
  
  .logo-text {
    font-size: 1.2rem;
  }
  
  .mobile-menu-btn {
    padding: 5px;
    margin-right: 10px;
  }
  
  .mobile-menu-btn span {
    width: 18px;
    height: 2px;
  }
  
  .section-title {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 5px;
    margin-bottom: 35px;
  }
  
  .banner {
    margin-top: 60px;
    min-height: 300px;
    height: 45vh;
    max-height: 350px;
  }
  
  .banner-content-wrapper {
    padding: 10px 8px;
    max-width: 98%;
  }
  
  .banner-logo {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  
  .banner-logo-img {
    width: 70px;
    height: 70px;
  }
  
  .banner-title {
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }
  
  .banner-tagline {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .banner-divider {
    width: min(200px, 70vw);
    max-width: 200px;
  }

  .banner-highlight {
    font-size: 0.9rem;
  }

  .banner-location {
    font-size: 0.8rem;
  }
  
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .cert-category {
    padding: 20px 15px;
  }
  
  .cert-category-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .cert-items {
    gap: 6px;
    margin-bottom: 12px;
  }
  
  .cert-badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 15px;
  }
  
  .cert-description {
    font-size: 0.9rem;
  }
  
  .hero-title-centered {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .hero-subtitle-centered {
    font-size: 0.85rem;
    padding: 0 8px;
    margin-bottom: 25px;
  }
  
  .hero-buttons-centered {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .event-main {
    font-size: 2rem;
  }
  
  .company-highlight h3 {
    font-size: 1.5rem;
  }
  
  .vision-title, .mission-title {
    font-size: 1.5rem;
  }
  
  .collections-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-categories {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form {
    padding: 20px 15px;
  }
  
  .newsletter-content h2 {
    font-size: 1.6rem;
  }
}

/* Enhanced visual effects */
.section {
  transition: all 0.3s ease;
  position: relative;
}

/* Remove background from hero section */
.hero {
  background: var(--background-color);
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .hero-text h1,
.hero .hero-text p {
  color: #1e3a8a !important;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hero .logo-text {
  color: #1e3a8a !important;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.collections {
  background: linear-gradient(45deg, var(--background-color) 0%, var(--light-bg-color) 50%, var(--background-color) 100%);
}

/* Enhanced card hover effects */
.collection-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: none;
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.06);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 35px rgba(30, 58, 138, 0.12);
  transition: all 0.4s ease;
}

/* Enhanced manufacturing card hover */
.manufacturing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(30, 58, 138, 0.1);
  transition: all 0.3s ease;
}

/* Enhanced button effects */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.15);
  transition: all 0.3s ease;
}

/* Smooth animations for all interactive elements */
.header-nav a:hover {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

/* Enhanced testimonial cards */
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Professional form styling */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

/* Enhanced section transitions */
.section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-in-out;
}

/* Premium gradient overlays */
.about {
  background: linear-gradient(45deg, var(--background-color) 0%, var(--light-bg-color) 100%);
}

.services {
  background: linear-gradient(-45deg, var(--light-bg-color) 0%, var(--background-color) 100%);
}

/* Enhanced logo and text styling */
.logo-text {
  color: #1e3a8a !important;
  background-clip: text;
  font-weight: 700;
}