@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Tokens (Modernized brand colors using HSL) */
  --color-primary-dark: hsl(208, 90%, 12%);   /* #03182e - Deep rich dark blue */
  --color-primary-medium: hsl(206, 100%, 36%); /* #005aa3 - Classic Royal Blue */
  --color-primary-light: hsl(206, 100%, 46%);  /* #0077d6 - Vibrant Accent Blue */
  --color-accent-orange: hsl(38, 100%, 50%);   /* #ff9f00 - Dynamic Energetic Orange */
  --color-accent-orange-hover: hsl(35, 100%, 45%);
  --color-accent-teal: hsl(174, 85%, 45%);     /* #14dfc4 - Printing Cyan equivalent */
  --color-accent-magenta: hsl(325, 90%, 50%);  /* #f01e82 - Printing Magenta equivalent */
  --color-bg-light: hsl(210, 20%, 98%);        /* Soft, clean off-white */
  --color-bg-white: hsl(0, 0%, 100%);
  --color-bg-card: hsl(0, 0%, 100%);
  --color-text-dark: hsl(208, 30%, 15%);       /* Slate off-black */
  --color-text-muted: hsl(208, 12%, 46%);      /* Medium steel gray */
  --color-text-light: hsl(0, 0%, 100%);
  --color-border: hsl(208, 20%, 90%);
  --color-border-glow: hsla(206, 100%, 46%, 0.15);
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(3, 24, 46, 0.05);
  --shadow-lg: 0 20px 40px rgba(3, 24, 46, 0.1);
  --shadow-glow-blue: 0 0 25px hsla(206, 100%, 46%, 0.15);
  --shadow-glow-orange: 0 0 25px hsla(38, 100%, 50%, 0.2);
}

/* --- Base Reset & Typography --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: hsl(208, 20%, 80%);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-medium);
}

/* --- Reusable Components & Layout --- */
.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent-orange);
  color: var(--color-bg-white);
  box-shadow: 0 4px 15px rgba(255, 159, 0, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-accent-orange-hover);
  color: var(--color-bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 159, 0, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--color-primary-medium);
  color: var(--color-bg-white);
  transform: translateY(-2px);
}

.section-padding {
  padding-block: 100px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-accent-orange);
  border-radius: 2px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Glass Card class */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
}

/* --- Navigation Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

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

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

.logo-svg {
  height: 45px;
  width: auto;
  transition: var(--transition-normal);
}

.site-header.scrolled .logo-svg {
  height: 38px;
}

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

.main-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a,
.main-menu > li > button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  transition: var(--transition-fast);
}

.main-menu > li > a:hover,
.main-menu > li > button:hover,
.main-menu > li.active > a {
  color: var(--color-primary-medium);
}

.main-menu > li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-orange);
  transition: var(--transition-normal);
}

.main-menu > li:hover::after,
.main-menu > li.active::after {
  width: 100%;
}

/* Dropdown Submenu */
.submenu {
  position: absolute;
  top: calc(100% + 15px);
  left: -20px;
  background: var(--color-primary-dark);
  min-width: 220px;
  border-radius: var(--border-radius-sm);
  padding: 10px 0;
  list-style: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.submenu li a:hover {
  color: var(--color-bg-white);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 25px;
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-submenu > button svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: var(--transition-normal);
}

.has-submenu:hover > button svg {
  transform: rotate(180deg);
}

/* Header Action Call-To-Action */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Mobile Toggle Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary-dark);
  position: absolute;
  left: 0;
  transition: var(--transition-normal);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { top: 22px; }

.menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: radial-gradient(circle at 10% 20%, var(--color-primary-dark) 0%, hsl(208, 90%, 5%) 90%);
  overflow: hidden;
  color: var(--color-text-light);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: float 20s infinite ease-in-out;
}

.hero-particle-1 { width: 300px; height: 300px; left: -50px; top: -50px; background: radial-gradient(circle, rgba(0, 105, 184, 0.15) 0%, transparent 70%); }
.hero-particle-2 { width: 400px; height: 400px; right: -100px; bottom: -100px; background: radial-gradient(circle, rgba(255, 159, 0, 0.08) 0%, transparent 70%); }
.hero-particle-3 { width: 150px; height: 150px; left: 60%; top: 40%; background: radial-gradient(circle, rgba(20, 223, 196, 0.06) 0%, transparent 70%); animation-duration: 15s; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards 0.2s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 159, 0, 0.1);
  border: 1px solid rgba(255, 159, 0, 0.25);
  color: var(--color-accent-orange);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--color-accent-orange);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-bg-white);
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--color-accent-orange) 30%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Glass illustration layout in Hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  animation: scaleIn 1s forwards 0.4s;
}

.hero-shape-back {
  position: absolute;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(0, 105, 184, 0.3) 0%, rgba(240, 30, 130, 0.1) 100%);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  filter: blur(40px);
  animation: morphing 15s ease-in-out infinite alternate;
}

.glass-artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1.7; /* Landscape ratio to fit vision.jpg */
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg), inset 0 0 40px rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glass-artwork svg {
  width: 70%;
  height: auto;
}

.floating-card {
  position: absolute;
  background: rgba(3, 24, 46, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--border-radius-md);
  padding: 15px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
}

.floating-card-1 {
  bottom: -20px;
  left: 20px;
  animation: floatUpDown 6s infinite ease-in-out;
}

.floating-card-2 {
  top: 15px;
  right: -10px;
  animation: floatUpDown 8s infinite ease-in-out 1s;
}

.floating-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 105, 184, 0.2);
  color: var(--color-primary-light);
  display: grid;
  place-items: center;
}

.floating-card-2 .icon {
  background: rgba(255, 159, 0, 0.2);
  color: var(--color-accent-orange);
}

.floating-card h4 {
  color: var(--color-bg-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.floating-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-normal);
}

.scroll-indicator:hover {
  color: var(--color-accent-orange);
}

.scroll-indicator .mouse {
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 20px;
  position: relative;
}

.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background-color: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

/* --- Vision Pillars Section --- */
.vision-section {
  background-color: var(--color-bg-light);
  position: relative;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.vision-card {
  border-radius: var(--border-radius-lg);
  padding: 50px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--color-primary-medium);
  transition: var(--transition-normal);
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-glow);
}

.vision-card:nth-child(1):hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
}

.vision-card:nth-child(2):hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}

.vision-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-accent-teal));
}

.vision-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--color-accent-orange), var(--color-accent-magenta));
}

.vision-card .card-icon-container {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-md);
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.vision-card:nth-child(1) .card-icon-container {
  background: hsla(206, 100%, 46%, 0.08);
  color: var(--color-primary-light);
}

.vision-card:nth-child(2) .card-icon-container {
  background: hsla(38, 100%, 50%, 0.08);
  color: var(--color-accent-orange);
}

.vision-card:hover .card-icon-container {
  transform: scale(1.1) rotate(5deg);
}

.vision-card:nth-child(1):hover .card-icon-container {
  background: var(--color-primary-light);
  color: var(--color-bg-white);
}

.vision-card:nth-child(2):hover .card-icon-container {
  background: var(--color-accent-orange);
  color: var(--color-bg-white);
}

.card-icon-container svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.vision-card p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 30px;
  flex-grow: 1;
}

.vision-features {
  list-style: none;
}

.vision-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.vision-features li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary-light);
}

.vision-card:nth-child(2) .vision-features li svg {
  fill: var(--color-accent-orange);
}

/* --- Brand Values Section --- */
.values-section {
  background-color: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}

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

.value-card {
  padding: 40px 30px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-normal);
  background: var(--color-bg-white);
}

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

.value-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: var(--color-primary-medium);
  transition: var(--transition-normal);
}

.value-card:hover .value-icon {
  color: var(--color-accent-orange);
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Services Showcase Preview --- */
.services-preview {
  background-color: var(--color-bg-light);
  position: relative;
}

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

.service-card {
  position: relative;
  aspect-ratio: 1.8 / 1; /* Wider aspect ratio closer to banners */
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  cursor: pointer;
  border: 1px solid var(--color-border);
}

.service-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--color-primary-dark);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Fits the entire banner graphic inside the card */
  transition: var(--transition-slow);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 24, 46, 0.75) 0%, rgba(3, 24, 46, 0) 45%); /* Much lighter overlay for clear visibility */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  z-index: 2;
  transition: var(--transition-normal);
}

.service-card h3 {
  color: var(--color-bg-white);
  font-size: 1.35rem;
  margin-bottom: 8px;
  transform: translateY(15px);
  transition: var(--transition-normal);
}

.service-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

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

.service-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.1);
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(3, 24, 46, 0.98) 20%, rgba(3, 24, 46, 0.6) 65%, transparent 100%);
}

.service-card:hover h3 {
  transform: translateY(0);
}

.service-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Add custom colorful graphic details on service hover */
.service-color-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.service-card:nth-child(1) .service-color-tag { background-color: var(--color-accent-teal); }
.service-card:nth-child(2) .service-color-tag { background-color: var(--color-accent-magenta); }
.service-card:nth-child(3) .service-color-tag { background-color: var(--color-accent-orange); }
.service-card:nth-child(4) .service-color-tag { background-color: var(--color-primary-light); }

/* --- CTA Callout Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, hsl(208, 90%, 5%) 100%);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section .hero-particle-1 { background: radial-gradient(circle, rgba(255, 159, 0, 0.12) 0%, transparent 60%); }
.cta-section .hero-particle-2 { background: radial-gradient(circle, rgba(0, 105, 184, 0.15) 0%, transparent 60%); }

.cta-content {
  position: relative;
  z-index: 5;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-bg-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

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

/* --- Footer --- */
.site-footer {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: 80px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo-desc p {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--color-bg-white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
}

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

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

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

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

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

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-info li svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent-orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  padding: 12px 15px;
  color: var(--color-bg-white);
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  background-color: var(--color-accent-orange);
  border: none;
  color: var(--color-bg-white);
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--color-accent-orange-hover);
}

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

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-normal);
}

.footer-socials a:hover {
  background-color: var(--color-primary-light);
  color: var(--color-bg-white);
  transform: translateY(-3px);
}

/* --- Scroll-Reveal & Animation classes --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- CSS Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scrollWheel {
  0% { opacity: 0; top: 6px; }
  30% { opacity: 1; }
  100% { opacity: 0; top: 18px; }
}

@keyframes morphing {
  0% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; }
  100% { border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%; }
}


/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-description {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    max-width: 500px;
    margin-inline: auto;
    width: 100%;
  }
  .floating-card-1 {
    left: -10px;
  }
  .floating-card-2 {
    right: -10px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section-padding {
    padding-block: 70px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-bg-white);
    padding: 40px 20px;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-normal);
    border-top: 1px solid var(--color-border);
  }
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-menu {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .main-menu > li > a,
  .main-menu > li > button {
    font-size: 1.1rem;
    padding-block: 12px;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  .main-menu > li::after {
    display: none;
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 5px 0 5px 15px;
    display: none;
  }
  .submenu.active {
    display: block;
  }
  .submenu li a {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    border-bottom: none;
    padding-block: 8px;
  }
  .submenu li a:hover {
    background: none;
    color: var(--color-primary-medium);
  }
  .has-submenu.active > button svg {
    transform: rotate(180deg);
  }
  .header-actions .btn {
    display: none; /* Hide primary action button on small mobile inside headers */
  }
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .vision-card {
    padding: 30px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Reduced Motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}

/* --- Homepage Hero Slider --- */
.hero-slider {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 30 / 13; /* Taller aspect ratio for stronger height visual */
  min-height: 520px; /* Taller visual presence */
  margin-top: var(--header-height); /* Pushes the slider below the fixed header */
  overflow: hidden;
  background-color: var(--color-primary-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Covers the taller height, revealing more top/bottom details */
  object-position: center;
}

@media (max-width: 768px) {
  .hero-slider {
    aspect-ratio: auto;
    height: 340px;
  }
  .hero-slide img {
    object-fit: cover;
    object-position: right center; /* Centers product packaging in mobile view */
  }
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 24, 46, 0.9) 0%, rgba(3, 24, 46, 0.4) 60%, transparent 100%);
}
.slider-caption {
  position: absolute;
  left: 10%;
  bottom: 80px;
  right: 10%;
  color: var(--color-bg-white);
  z-index: 5;
  max-width: 650px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}
.hero-slide.is-active .slider-caption {
  opacity: 1;
  transform: translateY(0);
}
.slider-caption h2 {
  color: var(--color-bg-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 15px;
}
.slider-caption p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}
.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-bg-white);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}
.slider-control:hover {
  background: var(--color-accent-orange);
  border-color: var(--color-accent-orange);
}
.slider-control.prev { left: 30px; }
.slider-control.next { right: 30px; }
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.slider-dot.is-active {
  background: var(--color-accent-orange);
  width: 24px;
  border-radius: 6px;
}

/* --- Homepage Panel Layouts --- */
.home-panels {
  display: grid;
  grid-template-columns: 1.4fr 0.86fr;
  gap: 40px;
}
.eyebrow {
  margin: 0 0 3px;
  color: var(--color-accent-orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.intro-copy {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.news-box {
  border-left: 1px solid var(--color-border);
  padding-left: 30px;
}
.news-box h2 {
  margin-bottom: 20px;
}
.news-list {
  list-style: none;
}
.news-item {
  position: relative;
  padding: 10px 0 10px 18px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--color-border);
}
.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-orange);
}

/* --- Clients Marquee Slider --- */
.clients-strip {
  padding-block: 60px;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: client-marquee 30s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
@keyframes client-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-mini {
  flex: 0 0 160px;
  height: 100px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.client-mini:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}
.client-mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Clients Grid (clients.html) --- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 items per row as requested */
  gap: 20px;
  margin-top: 40px;
}
.client-card {
  min-height: 145px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}
.client-card img {
  width: 100%;
  height: 100%;
  max-height: 105px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

