@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand-blue: #0e2259;
  --brand-blue-dark: #060d24;
  --brand-blue-light: #1e3a8a;
  --brand-orange: #ff6b00;
  --brand-orange-hover: #e05d00;
  --brand-orange-glow: rgba(255, 107, 0, 0.35);

  --gradient-primary: linear-gradient(135deg, #0e2259 0%, #060d24 100%);
  --gradient-orange: linear-gradient(135deg, #ff6b00 0%, #e8590c 100%);
  --gradient-orange-hover: linear-gradient(135deg, #ff7e1a 0%, #d9480f 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  --gradient-dark-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);

  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --bg-light: #ffffff;
  --bg-section: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;

  --font-family: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --max-width: 1540px;

  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow-sm: 0 4px 15px rgba(14, 34, 89, 0.04);
  --box-shadow-md: 0 10px 30px -5px rgba(14, 34, 89, 0.08);
  --box-shadow-hover: 0 20px 40px -8px rgba(255, 107, 0, 0.22), 0 8px 16px -4px rgba(14, 34, 89, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 110%;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}

/* Premium Ambient Animated Background Effects */
body::before,
body::after {
  content: '';
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  animation: ambientOrb 25s infinite alternate ease-in-out;
}

body::before {
  top: -20vw;
  left: -20vw;
  background: var(--brand-orange);
}

body::after {
  bottom: -20vw;
  right: -20vw;
  background: #087cff;
  /* Bright electric blue */
  animation-delay: -12s;
  animation-duration: 30s;
}

@keyframes ambientOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(10vw, 15vw) scale(1.15);
  }

  66% {
    transform: translate(-5vw, -10vw) scale(0.9);
  }

  100% {
    transform: translate(-15vw, 5vw) scale(1.2);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Animations */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Section Headers & Stylish Title Separators */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.section-header::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-blue) 0%, var(--bright-blue) 100%);
  border-radius: 4px;
  margin: 1.15rem auto 0;
  box-shadow: 0 0 10px rgba(8, 124, 255, 0.4);
}

/* Stylish Circuit Node Section Separator Line */
.section-divider-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(8, 124, 255, 0.15) 15%, var(--electric-blue) 50%, rgba(8, 124, 255, 0.15) 85%, transparent 100%);
  position: relative;
  margin: 0 auto;
  z-index: 5;
}

.section-divider-line::after {
  content: '⚡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 0.7rem;
  background: var(--electric-blue);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 0 15px var(--electric-blue);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Glowing Border Separators for Dark Navy Sections */
.services-section-dark,
.process-timeline-section,
.cta-banner-dark,
.why-choose-navy-section {
  border-top: 1px solid rgba(8, 124, 255, 0.35);
  border-bottom: 1px solid rgba(8, 124, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

/* SVG Wave & Slanted Angle Section Dividers */
.section-wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 10;
  margin: -1px 0;
  pointer-events: none;
}

.section-wave-divider svg {
  position: relative;
  display: block;
  width: 100%;
  height: 75px;
}

.section-wave-divider.fill-dark svg path,
.section-wave-divider.fill-dark svg polygon {
  fill: #060d24 !important;
}

.section-wave-divider.fill-light svg path,
.section-wave-divider.fill-light svg polygon {
  fill: #f5f7fa !important;
}

.section-wave-divider.fill-white svg path,
.section-wave-divider.fill-white svg polygon {
  fill: #ffffff !important;
}

/* Top Contact Bar */
.top-bar {
  background: #012975;
  color: #94a3b8;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: #e2e8f0;
}

.pulse-green-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-info-item svg {
  width: 14px;
  height: 14px;
  color: var(--brand-orange);
}

.top-info-item a {
  color: #ffffff !important;
  text-decoration: none;
  transition: var(--transition-fast);
}

.top-info-item a:hover {
  color: var(--brand-orange);
}

/* Header & Dynamic Navigation */
header {
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-brand:hover .header-logo-img {
  transform: scale(1.04);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-blue);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
  letter-spacing: 0.03em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-orange);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 3px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-orange);
}

.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menus */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.caret {
  font-size: 0.75rem;
  color: var(--brand-orange);
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown:hover .caret,
.nav-dropdown.open .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(14, 34, 89, 0.12);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-fast);
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background-color: #fff6f0;
  color: var(--brand-orange);
  border-left-color: var(--brand-orange);
  padding-left: 1.5rem;
}

.dropdown-menu a.dropdown-all-link {
  font-weight: 800;
  color: var(--brand-blue);
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0.25rem;
  padding-bottom: 0.75rem;
}

.dropdown-menu a.dropdown-all-link:hover {
  color: var(--brand-orange);
  background-color: #fff6f0;
}

/* Header Quote Button with Shimmer */
.btn-header-quote {
  background: var(--gradient-orange);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.2rem;
  border-radius: 30px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.btn-header-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.btn-header-quote:hover::before {
  left: 100%;
}

.btn-header-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 107, 0, 0.45);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--brand-blue);
  cursor: pointer;
  padding: 0.35rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.mobile-toggle:hover {
  background: #f1f5f9;
}

.mobile-toggle:active {
  background: #e2e8f0;
}

/* Page Header Banner (for Contact, About, Products etc) */
.page-header-banner {
  background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #060d24 85%);
  color: #ffffff;
  padding: 1.75rem 0 0.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.page-header-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-banner-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.page-banner-subtitle {
  font-size: 0.92rem;
  color: #ffffff;
  max-width: 620px;
  margin: 0 auto 0.85rem;
  line-height: 1.5;
}

.breadcrumb-nav {
  position: absolute;
  top: 0;
  left: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-orange);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-nav a {
  color: #ffffff;
  transition: var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: #ffffff;
}

/* Home Page About Us Section */
.home-about-section {
  padding: 1.5rem 0 2.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.home-about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 1101px) {
  .home-about-content {
    margin-top: -5rem;
  }

  .home-about-grid {
    margin-bottom: -5rem;
  }
}

.home-about-quote-box {
  border-left: 4px solid var(--brand-orange);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.home-about-quote-box h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.35;
}

.home-about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.home-about-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.home-about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.home-about-feature-icon {
  width: 24px;
  height: 24px;
  background: #fff4ec;
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.85rem;
}

.home-about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.home-stat-card {
  background: #012975;
  border: 1px solid #1e3a8a;
  border-radius: 16px;
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.home-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--brand-orange);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.home-stat-card:hover::before {
  opacity: 1;
}

.home-stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1.1;
  margin-bottom: 0.4rem;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-stat-card:hover .home-stat-number {
  transform: scale(1.15);
}

.home-stat-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.home-stat-subtext {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* Industries We Serve Section (All 8 Items in 1 Single Horizontal Row) */
.industries-section {
  padding: 4rem 0;
  background: #ffffff;
}

.industries-grid-8 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.6rem;
  align-items: stretch;
}

.industry-icon-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 0.55rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-fast);
  cursor: pointer;
  height: 100%;
}

.industry-icon-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: 0 10px 22px rgba(1, 41, 117, 0.15);
}

.industry-icon-svg {
  width: 32px;
  height: 32px;
  background: #fff4ec;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--brand-orange);
  flex-shrink: 0;
  padding: 4px;
}

.industry-icon-svg svg {
  width: 18px;
  height: 18px;
}

.industry-icon-card h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 1200px) {
  .industries-grid-8 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .industry-icon-card h4 {
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  .industries-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.inner-page-section {
  padding: 1.5rem 0;
  background: #f8fafc;
}

/* About Page Custom Component Styles */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.about-story-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(14, 34, 89, 0.05);
}

.about-story-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
}

.about-story-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.about-stat-box {
  background: linear-gradient(135deg, #0e2259 0%, #060d24 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(255, 107, 0, 0.3);
  box-shadow: 0 12px 28px rgba(14, 34, 89, 0.25);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.about-stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--brand-orange);
  box-shadow: 0 18px 35px rgba(255, 107, 0, 0.3);
}

.about-stat-box .num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-box .label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.about-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.about-cap-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(14, 34, 89, 0.06);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-cap-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 107, 0, 0.08), transparent);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.about-cap-card:hover::after {
  transform: rotate(25deg) translateX(100%);
}

.about-cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  opacity: 0.8;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.about-cap-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 107, 0, 0.4);
  box-shadow: 0 20px 45px rgba(255, 107, 0, 0.18), 0 8px 20px rgba(14, 34, 89, 0.08);
  background: #ffffff;
}

.about-cap-card:hover::before {
  opacity: 1;
  height: 5px;
}

.about-cap-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.about-cap-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-orange);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
  transition: transform 0.3s ease;
  margin-bottom: 0;
}

.about-cap-card:hover .about-cap-icon {
  transform: scale(1.1) rotate(4deg);
}

.about-cap-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0;
  line-height: 1.3;
}

.about-cap-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-quality-box {
  background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #060d24 85%);
  color: #ffffff;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  margin: 3.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(6, 13, 36, 0.4);
}

.about-quality-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-cta-banner {
  background: #c4875f;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: #ffffff;
  margin-top: 3.5rem;
  box-shadow: 0 15px 35px rgba(14, 34, 89, 0.2);
}

.cat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.25rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(14, 34, 89, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-orange);
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(14, 34, 89, 0.1);
  border-color: rgba(255, 107, 0, 0.3);
}

.cat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.cat-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.cat-items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cat-item {
  background: #f1f5f9;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: var(--transition-fast);
}

.cat-item:hover {
  background: var(--gradient-orange);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

/* Pillar Cards (About & Industries) */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.15);
}

.pillar-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #e2e8f0;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-num {
  color: var(--brand-orange);
}

.pillar-icon-box {
  width: 56px;
  height: 56px;
  background: #fff4ec;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--gradient-orange);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CONTACT PAGE STYLING */
.contact-page-section {
  padding: 4.5rem 0;
  background: #f8fafc;
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Contact Info 4-Card Grid */
.contact-info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 15px 35px rgba(255, 107, 0, 0.15);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  background: #fff4ec;
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--brand-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: var(--transition-fast);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--gradient-orange);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.contact-info-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0.6rem;
}

.contact-info-card p,
.contact-info-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.contact-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-blue);
  background: #f1f5f9;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  transition: var(--transition-fast);
}

.contact-info-card:hover .contact-card-btn {
  background: var(--brand-orange);
  color: #ffffff;
}

/* Contact Main Dual Grid (Form + Map) */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Elevated Form Container */
.contact-form-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(14, 34, 89, 0.06);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 0.4rem;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group-modern {
  margin-bottom: 1.25rem;
}

.form-group-modern label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 0.45rem;
}

.form-control-modern {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: #ffffff;
  transition: var(--transition-fast);
}

.form-control-modern::placeholder {
  color: #94a3b8;
}

.form-control-modern:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3.5px var(--brand-orange-glow);
}

.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.btn-submit-contact {
  background: var(--gradient-orange);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.95rem 1.75rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-fast);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-contact:hover {
  background: var(--gradient-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.5);
}

/* Map Card */
.contact-map-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(14, 34, 89, 0.06);
  display: flex;
  flex-direction: column;
}

.contact-map-header {
  padding: 1.5rem;
  background: #060d24;
  color: #ffffff;
}

.contact-map-header h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.contact-map-header p {
  font-size: 0.85rem;
  color: #94a3b8;
}

.contact-iframe-wrap {
  flex-grow: 1;
  min-height: 380px;
}

.contact-hours-badge {
  padding: 1.1rem 1.5rem;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-blue);
}

/* SECTION HEADERS */
.section-header-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: #fff4ec;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  margin-bottom: 0.65rem;
}

.section-header-title h2 {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  position: relative;
}

.section-header-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-orange);
  border-radius: 2px;
  margin: 0.65rem auto 0;
}

.home-about-section .section-header-title::after,
.home-about-section .section-header-title h2::after {
  display: none !important;
}

.section-header-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.65rem auto 0;
}

/* HERO SECTION - Dark Royal Indigo Mesh */
.hero-section-clean {
  background: #ffffff;
  color: #0f172a;
  padding: 1.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-section-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-clean-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-side {
  position: relative;
  z-index: 10;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.4);
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffa966;
  margin-bottom: 1.25rem;
}

.hero-text-side h1 {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.hero-text-side h1 span {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-orange {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ff944d;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  white-space: nowrap;
}

.hero-partner-tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tagline-chip {
  background: #012975;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-desc-para {
  font-size: 0.75rem;
  color: #334155;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}

.hero-desc-para span {
  display: block;
}

.hero-quick-bullets {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #f1f5f9;
}

.hero-bullet-icon {
  width: 22px;
  height: 22px;
  background: rgba(255, 107, 0, 0.2);
  border: 1px solid rgba(255, 107, 0, 0.5);
  color: #ff944d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.75rem;
}

.hero-action-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-navy-arrow {
  background: #ffffff;
  color: var(--brand-blue);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-navy-arrow:hover {
  background: #f8fafc;
  color: var(--brand-orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.3);
}

.btn-orange-arrow {
  background: var(--gradient-orange);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
}

.btn-orange-arrow:hover {
  background: var(--gradient-orange-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.5);
}

.btn-blue-arrow {
  background: #012975;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(1, 41, 117, 0.35);
}

.btn-blue-arrow:hover {
  background: #011f5e;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(1, 41, 117, 0.5);
}


/* Hero Right Visual */
.hero-visual-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: -160px;
  margin-right: -30px;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transform: scale(1.1);
  transform-origin: right center;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 6s linear;
  transform: scale(1);
}

.hero-slide.active .hero-visual-img {
  transform: scale(1.08);
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--brand-orange);
  width: 24px;
  border-radius: 6px;
}

.floating-stat-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(14, 34, 89, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 107, 0, 0.4);
  padding: 1rem 1.35rem;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 3;
}

.floating-stat-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-orange);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.2rem;
  font-weight: 800;
}

.floating-stat-text h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.floating-stat-text p {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

/* PRODUCT PORTFOLIO SECTION - Dark Tech Navy */
.portfolio-section {
  padding: 2rem 0;
  background: #012975;
  color: #ffffff;
  position: relative;
}

.portfolio-section .section-header-title h2 {
  color: #ffffff;
}

.portfolio-section .section-header-desc {
  color: #ffffff;
}

.portfolio-grid-7 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.portfolio-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
}

.portfolio-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(25deg) translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.portfolio-card:hover::after {
  transform: rotate(25deg) translateX(100%);
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-orange);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.portfolio-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: #ffffff;
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 22px 50px rgba(255, 107, 0, 0.25), 0 0 30px rgba(14, 34, 89, 0.4);
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card-img-wrap {
  position: relative;
  height: 260px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-tag-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 107, 0, 0.9);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-card-body {
  padding: 1.6rem 1.6rem 0.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #012975;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.portfolio-card-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
}

.portfolio-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #ff6b00;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 6px;
  transition: var(--transition-fast);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card:hover .portfolio-link {
  padding-left: 4px;
}

/* OUR SOLUTIONS SECTION - Soft Architectural Gradient */
.solutions-section {
  padding: 1.5rem 0 6rem;
  position: relative;
}

.solutions-grid-4 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  align-items: stretch;
}

.solutions-grid-4>* {
  width: calc(33.333% - 1.34rem);
}


.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  position: relative;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(14, 34, 89, 0.12);
  border-color: rgba(14, 34, 89, 0.2);
}

.solution-card-img-wrap {
  position: relative;
  height: 250px;
  background-color: #ffffff;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card:hover .solution-card-img {
  transform: scale(1.08);
}

.solution-badge-icon {
  position: absolute;
  bottom: -22px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border: 3px solid #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--brand-orange);
  box-shadow: 0 8px 20px rgba(14, 34, 89, 0.25);
  z-index: 2;
  transition: transform 0.3s ease;
}

.solution-card:hover .solution-badge-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-orange);
  color: #ffffff;
}

.solution-card-body {
  padding: 2.25rem 1.6rem 0.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-blue-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.solution-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.solution-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.solution-card:hover .solution-link {
  color: var(--brand-orange);
  padding-left: 4px;
}

/* INDUSTRIES WE SERVE SECTION - Soft Azure Backdrop */
.industries-section {
  padding: 2rem 0 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 100%);
}

.industries-grid-8 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.industry-icon-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(14, 34, 89, 0.04);
  transition: var(--transition-fast);
  cursor: pointer;
  height: 100%;
}

.industry-icon-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-blue);
  box-shadow: 0 10px 22px rgba(1, 41, 117, 0.15);
  background: #ffffff;
}

.industry-icon-svg {
  width: 52px;
  height: 52px;
  background: #fff4ec;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--brand-orange);
  flex-shrink: 0;
  padding: 6px;
  transition: var(--transition-fast);
}

.industry-icon-card:hover .industry-icon-svg {
  background: var(--brand-orange);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.industry-icon-svg svg {
  width: 24px;
  height: 24px;
}

.industry-icon-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .industries-grid-8 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .industry-icon-card h4 {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .industries-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* WHY CHOOSE SK ELECTROMECH SECTION - Deep Radial Glass Mesh */
.why-choose-navy-section {
  background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #060d24 85%);
  color: #ffffff;
  padding: 1.5rem 0 2.5rem;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.why-choose-navy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.why-choose-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.why-choose-title h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.why-feature-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.why-feature-grid>.why-feature-box {
  flex: 0 0 calc(25% - 1.5rem);
  max-width: calc(25% - 1.5rem);
}

@media (max-width: 992px) {
  .why-feature-grid {
    gap: 1.5rem;
  }

  .why-feature-grid>.why-feature-box {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .why-feature-grid {
    gap: 1.25rem;
  }

  .why-feature-grid>.why-feature-box {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.why-feature-box {
  position: relative;
  overflow: hidden;
  border: none !important;
  border-radius: 16px;
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(7, 26, 43, 0.04);
  transition: var(--transition-smooth);
  background: transparent !important;
  z-index: 1;
}

.why-feature-box>* {
  position: relative;
  z-index: 2;
}

.why-feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--brand-orange) 0%, transparent 60%);
  animation: orbit-border 4s linear infinite;
  z-index: -2;
  opacity: 0.8;
}

.why-feature-box::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #ffffff;
  border-radius: 14px;
  z-index: -1;
}

@keyframes orbit-border {
  0% {
    transform: translate(-50%, -50%);
  }

  25% {
    transform: translate(0%, -50%);
  }

  50% {
    transform: translate(0%, 0%);
  }

  75% {
    transform: translate(-50%, 0%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

.why-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(8, 124, 255, 0.18);
}

.why-feature-box:hover::before {
  opacity: 1;
  background: radial-gradient(circle, var(--electric-blue) 0%, transparent 60%);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  justify-content: flex-start;
  font-size: 1.35rem;
  transition: var(--transition-fast);
}

.why-feature-box:hover .why-feature-icon {
  background: var(--electric-blue);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(8, 124, 255, 0.35);
}

.why-feature-box h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-deep);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.why-feature-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Dark Navy Section Overrides */
.why-choose-navy-section .why-feature-box {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.why-choose-navy-section .why-feature-box:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--electric-blue);
}

.why-choose-navy-section .why-feature-box h4 {
  color: #012975;
}

.why-choose-navy-section .why-feature-box p {
  color: #475569;
}

/* BRANDS WE SUPPLY SECTION */
.brands-section-clean {
  padding: 1.5rem 0;
  background: #ffffff;
}

.brands-container-clean {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  text-align: center;
}

.brands-grid-clean {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-top: 2rem;
}

.brand-logo-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 68px;
  min-width: 140px;
  transition: var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.brand-logo-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.12);
  transform: translateY(-3px);
}

.brand-logo-img {
  max-height: 42px;
  max-width: 115px;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s ease;
}

.brand-logo-card:hover .brand-logo-img {
  filter: grayscale(0%);
}

.brand-more-tag {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-blue);
  background: #f1f5f9;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
}

/* FOOTER 5-COLUMN OVERHAUL */
.main-footer {
  background-color: var(--brand-blue-dark);
  color: #94a3b8;
  padding-top: 1.5rem;
  margin-top: auto;
  position: relative;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1.15fr 1.75fr 1.2fr;
  gap: 1.75rem;
  align-items: start;
}

.footer-heading {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  position: relative;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
  margin-top: 0.4rem;
}

.footer-about-text {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  text-decoration: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.social-icon:hover {
  background: var(--gradient-orange);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 107, 0, 0.35);
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

/* Footer Quote Form Card (Col 4) */
.quote-footer-form {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.footer-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.5rem 0.65rem;
  font-family: inherit;
  font-size: 0.8rem;
  color: #ffffff;
  transition: var(--transition-fast);
  text-overflow: ellipsis;
}

.footer-input::placeholder {
  color: #94a3b8;
}

.footer-input:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.footer-select option {
  background: #060d24;
  color: #ffffff;
}

.footer-textarea {
  resize: vertical;
}

.form-row-file {
  font-size: 0.75rem;
  color: #94a3b8;
}

.file-label {
  display: block;
  margin-bottom: 2px;
}

.footer-file-input {
  font-size: 0.72rem;
  color: #94a3b8;
  width: 100%;
}

.btn-footer-submit {
  background: var(--gradient-orange);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 0.65rem 0.85rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 0.25rem;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-footer-submit:hover {
  background: var(--gradient-orange-hover);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

/* Contact details in footer (Col 5) */
.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.contact-details-list svg {
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.email-stack {
  display: flex;
  flex-direction: column;
}

.contact-details-list a:hover {
  color: var(--brand-orange);
}

.footer-map-box {
  margin-top: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.5rem;
  font-size: 0.84rem;
  color: #94a3b8;
  background: #040817;
  text-align: center;
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.footer-developer-credit {
  font-size: 0.82rem;
  color: #64748b;
}

.footer-dev-link {
  color: var(--brand-orange);
  font-weight: 700;
  transition: var(--transition-fast);
  text-decoration: none;
}

.footer-dev-link:hover {
  color: #ffffff;
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES
   ============================================================ */

/* ---------- Extra Large (≤1280px) - Slight adjustments ---------- */
@media (max-width: 1280px) {
  :root {
    --max-width: 1380px;
  }

  .hero-text-side h1 {
    font-size: 2.85rem;
  }

  .hero-clean-grid {
    gap: 2.5rem;
  }



  .industries-grid-8 {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }

  .industry-icon-card h4 {
    font-size: 0.75rem;
  }
}

/* ---------- Large Tablets / Small Laptops (≤1024px) ---------- */
@media (max-width: 1100px) {
  .hero-clean-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-text-side h1 {
    font-size: 2.65rem;
  }

  .hero-pill-badge {
    justify-content: flex-start;
  }

  .hero-partner-tagline {
    justify-content: flex-start;
  }

  .hero-quick-bullets {
    justify-content: flex-start;
  }

  .hero-action-ctas {
    justify-content: flex-start;
  }

  .hero-visual-side {
    order: -1;
    margin-top: 0;
  }

  .hero-visual-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

  .floating-stat-badge {
    bottom: -15px;
    left: 10px;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-quality-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .section-header-title h2,
  .why-choose-title h2 {
    font-size: 1.85rem;
  }

  .portfolio-grid-7 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ---------- Tablets (≤900px) ---------- */
@media (max-width: 900px) {
  .hero-text-side h1 {
    font-size: 2.35rem;
  }

  .hero-subtitle-orange {
    font-size: 1.15rem;
  }

  /* why-feature-grid handled in flexbox above */

  .solutions-grid-4>* {
    width: calc(50% - 1rem);
  }

  .about-stats-panel {
    grid-template-columns: 1fr 1fr;
  }

  .about-quality-box {
    padding: 2.25rem 1.75rem;
  }

  .about-cta-banner {
    padding: 2.25rem 1.5rem;
  }

  .home-about-section {
    padding: 4rem 0;
  }

  .portfolio-section,
  .solutions-section,
  .brands-section-clean {
    padding: 4rem 0;
  }

  .why-choose-navy-section {
    padding: 4rem 0;
  }

  .contact-iframe-wrap {
    min-height: 300px;
  }
}

/* ---------- Tablets & Mobile Navigation (≤992px) ---------- */
@media (max-width: 992px) {

  /* Top Bar */
  .top-bar-container {
    justify-content: flex-start;
    text-align: center;
    padding: 0 1rem;
  }

  .top-tagline-badge {
    display: none;
  }

  .top-info {
    gap: 1rem;
    font-size: 0.78rem;
  }

  /* Mobile Navigation */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    gap: 0.35rem;
    align-items: flex-start;
    z-index: 1000;
    max-height: 85vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.6rem 0;
  }

  .nav-dropdown .dropdown-menu {
    display: none;
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--brand-orange);
    padding-left: 0.75rem;
    min-width: 100%;
    background: #f8fafc;
    border-radius: 8px;
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
    transition: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-dropdown .caret {
    padding: 10px;
    margin: -10px;
    display: inline-block;
  }

  .nav-dropdown.open .caret {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    border-bottom: 1px dashed #e2e8f0;
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .header-cta-box {
    display: none;
  }

  .btn-header-quote {
    display: none;
  }

  /* Header */
  .header-container {
    padding: 0.6rem 1rem;
  }

  .header-logo-img {
    height: 55px;
  }

  /* Hero */
  .hero-section-clean {
    padding: 1.25rem 0 1.75rem;
  }

  .hero-text-side h1 {
    font-size: 2.1rem;
    line-height: 1.12;
  }

  .hero-subtitle-orange {
    font-size: 1.05rem;
  }

  .hero-desc-para {
    font-size: 0.6rem;
  }

  .hero-quick-bullets {
    gap: 0.75rem;
  }

  .hero-bullet-item {
    font-size: 0.82rem;
  }

  .btn-navy-arrow,
  .btn-orange-arrow {
    font-size: 0.88rem;
    padding: 0.8rem 1.4rem;
  }

  .floating-stat-badge {
    bottom: -12px;
    left: 5px;
    padding: 0.75rem 1rem;
  }

  .floating-stat-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .floating-stat-text h5 {
    font-size: 0.95rem;
  }

  .floating-stat-text p {
    font-size: 0.7rem;
  }

  /* Page Banner */
  .page-header-banner {
    padding: 1.25rem 0;
  }

  .page-banner-title {
    font-size: 1.5rem;
  }

  .page-banner-subtitle {
    font-size: 0.85rem;
  }

  /* About Section */
  .home-about-section {
    padding: 3rem 0;
  }

  .home-about-quote-box h3 {
    font-size: 1.2rem;
  }

  .home-about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .home-stat-number {
    font-size: 1.85rem;
  }

  .home-stat-label {
    font-size: 0.8rem;
  }

  /* Portfolio */
  .portfolio-section {
    padding: 3.5rem 0;
  }

  .portfolio-grid-7 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .portfolio-card-img-wrap {
    height: 220px;
  }

  .portfolio-card-body {
    padding: 1.25rem;
  }

  .portfolio-card-title {
    font-size: 0.95rem;
  }

  .portfolio-card-desc {
    font-size: 0.82rem;
    margin-bottom: 0.85rem;
  }

  /* Solutions */
  .solutions-section {
    padding: 3.5rem 0;
  }

  .solutions-grid-4 {
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .solutions-grid-4>* {
    width: calc(50% - 0.63rem);
  }

  .solution-card-img-wrap {
    height: 160px;
  }

  /* Industries */
  .industries-section {
    padding: 3rem 0;
  }

  .industries-grid-8 {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 0 1rem;
  }

  /* Why Choose */
  .why-choose-navy-section {
    padding: 3.5rem 0;
  }

  .why-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    padding: 0 1rem;
  }

  .why-choose-title h2 {
    font-size: 1.65rem;
  }

  .why-choose-title {
    margin-bottom: 2.5rem;
  }

  /* Brands */
  .brands-section-clean {
    padding: 3rem 0;
  }

  .brands-grid-clean {
    gap: 1rem;
  }

  .brand-logo-card {
    padding: 0.6rem 1rem;
    height: 56px;
    min-width: 110px;
  }

  .brand-logo-img {
    max-height: 34px;
    max-width: 95px;
  }

  /* Contact Page */
  .contact-page-section {
    padding: 3rem 0;
  }

  .contact-info-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-form-box {
    padding: 1.75rem;
  }

  .form-row-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Footer */
  .main-footer {
    padding-top: 3rem;
  }

  .footer-container {
    padding: 0 1.5rem 1.5rem;
    gap: 2.5rem;
  }

  .form-row-dual {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .contact-hours-badge {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Section Headers */
  .section-header-title h2 {
    font-size: 1.65rem;
  }

  .section-header-title {
    margin-bottom: 2rem;
  }

  .section-header-desc {
    font-size: 0.9rem;
  }

  /* About Page */
  .about-story-box {
    padding: 1.75rem;
  }

  .about-story-title {
    font-size: 1.35rem;
  }

  .about-capabilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }

  .about-cap-card {
    padding: 1.75rem 1.25rem;
  }

  .about-quality-box {
    padding: 2rem 1.5rem;
    margin: 2.5rem 0;
  }

  .about-cta-banner {
    padding: 2rem 1.25rem;
    margin-top: 2.5rem;
  }

  /* Pillar Cards */
  .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
  }

  .pillar-card {
    padding: 1.75rem 1.25rem;
  }

  /* Wave Dividers */
  .section-wave-divider svg {
    height: 50px;
  }

  /* Inner Page Sections */
  .inner-page-section {
    padding: 3rem 0;
  }
}

/* ---------- Phones (≤640px) ---------- */
@media (max-width: 640px) {
  .hero-text-side h1 {
    font-size: 1.85rem;
  }

  .hero-subtitle-orange {
    font-size: 0.98rem;
    white-space: normal;
  }

  .hero-section-clean {
    padding: 1rem 0 1.5rem;
  }

  .hero-visual-wrapper {
    max-width: 100%;
  }

  .hero-quick-bullets {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-action-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
  }

  .btn-navy-arrow,
  .btn-orange-arrow {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 1.5rem;
  }

  .floating-stat-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 1rem auto 0;
    justify-content: flex-start;
    animation: none;
  }

  /* Portfolio */
  .portfolio-grid-7 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .portfolio-card-img-wrap {
    height: 240px;
  }

  /* Solutions */
  .solutions-grid-4 {
    gap: 1.25rem;
  }

  .solutions-grid-4>* {
    width: 100%;
  }

  /* Industries */
  .industries-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Why Choose */
  .why-feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-feature-box {
    padding: 1.5rem 1rem;
  }

  /* Brands */
  .brands-grid-clean {
    gap: 0.75rem;
  }

  .brand-logo-card {
    height: 50px;
    min-width: 100px;
    padding: 0.5rem 0.85rem;
  }

  .brand-logo-img {
    max-height: 28px;
    max-width: 80px;
  }

  /* Contact */
  .contact-info-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-box {
    padding: 1.5rem;
  }

  .contact-form-title {
    font-size: 1.25rem;
  }

  .form-row-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .contact-iframe-wrap {
    min-height: 250px;
  }

  /* About Stats */
  .home-about-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .home-stat-card {
    padding: 1.35rem 1rem;
  }

  .home-stat-number {
    font-size: 1.65rem;
  }

  .about-stats-panel {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .about-stat-box {
    padding: 1.35rem 1rem;
  }

  .about-stat-box .num {
    font-size: 1.85rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 1.5rem;
  }

  .footer-bottom-container {
    justify-content: flex-start;
    text-align: center;
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-col-contact {
    display: block;
  }

  .form-row-dual {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer-heading {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  /* Page Banner */
  .page-banner-title {
    font-size: 1.35rem;
  }

  .page-banner-subtitle {
    font-size: 0.82rem;
  }

  .breadcrumb-nav {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 1.5rem;
    display: inline-flex;
    justify-content: flex-start;
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
  }

  /* Section Headers */
  .section-header-title h2 {
    font-size: 1.45rem;
  }

  .why-choose-title h2 {
    font-size: 1.4rem;
  }

  .eyebrow-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.85rem;
  }

  /* About Page */
  .about-capabilities-grid {
    grid-template-columns: 1fr;
  }

  .about-quality-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-quality-box {
    padding: 1.5rem 1.15rem;
    margin: 2rem 0;
  }

  .about-cta-banner {
    padding: 1.75rem 1rem;
  }

  .about-cta-banner h3 {
    font-size: 1.2rem;
  }

  /* Pillar Cards */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Cat Cards */
  .cat-card {
    padding: 1.5rem;
  }

  .cat-header h3 {
    font-size: 1.15rem;
  }

  /* Wave Divider */
  .section-wave-divider svg {
    height: 35px;
  }
}

/* ---------- Small Phones (≤480px) ---------- */
@media (max-width: 480px) {
  .hero-text-side h1 {
    font-size: 1.6rem;
    letter-spacing: -0.01em;
  }

  .hero-subtitle-orange {
    font-size: 0.9rem;
  }

  .hero-desc-para {
    font-size: 0.55rem;
  }

  .page-banner-title {
    font-size: 1.2rem;
  }

  .section-header-title h2 {
    font-size: 1.3rem;
  }

  .why-choose-title h2 {
    font-size: 1.25rem;
  }

  .home-about-quote-box h3 {
    font-size: 1.05rem;
  }

  .home-about-text {
    font-size: 0.9rem;
  }

  .home-stat-number {
    font-size: 1.45rem;
  }

  .home-stat-label {
    font-size: 0.75rem;
  }

  .home-stat-subtext {
    font-size: 0.72rem;
  }

  .portfolio-card-title {
    font-size: 0.9rem;
  }

  .portfolio-card-desc {
    font-size: 0.8rem;
  }

  .contact-form-box {
    padding: 1.25rem;
  }

  .top-info {
    gap: 0.75rem;
    font-size: 0.72rem;
  }

  .top-info-item svg {
    width: 12px;
    height: 12px;
  }

  /* About Cap Card */
  .about-cap-card {
    padding: 1.5rem 1rem;
  }

  .about-cap-title {
    font-size: 1rem;
  }

  .about-cap-desc {
    font-size: 0.85rem;
  }

  .about-story-title {
    font-size: 1.2rem;
  }

  .about-story-text {
    font-size: 0.9rem;
  }

  .about-story-box {
    padding: 1.35rem;
  }
}

/* ---------- Very Small Phones (≤380px) ---------- */
@media (max-width: 380px) {
  .hero-text-side h1 {
    font-size: 1.4rem;
  }

  .hero-subtitle-orange {
    font-size: 0.82rem;
  }

  .section-header-title h2 {
    font-size: 1.15rem;
  }

  .home-about-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-stats-panel {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .industries-grid-8 {
    grid-template-columns: 1fr;
  }

  .top-bar {
    display: none;
  }

  .header-logo-img {
    height: 34px;
  }

  .brand-logo-card {
    height: 44px;
    min-width: 85px;
  }

  .brand-logo-img {
    max-height: 24px;
  }
}

/* ============================================================
   Floating Widgets: WhatsApp & Scroll-to-Top
   ============================================================ */

/* WhatsApp Floating Button (Bottom Right, above Scroll-to-Top) */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 15px;
  left: auto;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 0;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float-btn svg {
  display: block;
  margin: 0;
  padding: 0;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12);
  color: #ffffff;
}

/* Tooltip on Hover (Pops out to the left) */
.whatsapp-float-btn .whatsapp-tooltip {
  position: absolute;
  right: 64px;
  left: auto;
  background: #111827;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 18px rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 4px 18px rgba(37, 211, 102, 0.45);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 18px rgba(37, 211, 102, 0.45);
  }
}

/* Scroll to Top Button (Bottom Right) */
.scroll-top-btn {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 9998;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-orange, #f97316), #ea580c);
  color: #ffffff;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box;
  line-height: 0;
}

.scroll-top-btn svg {
  display: block;
  margin: 0;
  padding: 0;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.5);
}

.scroll-top-btn:active {
  transform: translateY(0) scale(0.95);
}

@media (max-width: 480px) {
  .whatsapp-float-btn {
    bottom: 18px;
    right: 18px;
    left: auto;
    width: 46px;
    height: 46px;
  }

  .whatsapp-float-btn svg {
    width: 24px;
    height: 24px;
  }

  .scroll-top-btn {
    bottom: 75px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

/* Sidebar Layout */
.page-layout-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 992px) {
  .page-layout-sidebar {
    flex-direction: row;
    align-items: flex-start;
  }
}

.page-sidebar {
  flex: 0 0 280px;
  position: sticky;
  top: 100px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--box-shadow-sm);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: #fff4ec;
  color: var(--brand-orange);
}

.page-content {
  flex: 1;
}

/* Brands Marquee Effects */
.brands-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-marquee-track {
  display: flex;
  width: max-content;
  gap: 3rem;
  align-items: center;
  animation: marqueeScroll 35s linear infinite;
}

.brands-marquee-track:hover {
  animation-play-state: paused;
}

.brand-logo-card {
  width: 180px;
  height: 100px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.15);
}

.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: var(--transition-fast);
}

.brand-logo-card:hover .brand-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1.5rem));
  }
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.25rem;
  object-fit: contain;
}

@media (max-width: 991px) {
  .page-sidebar {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }
}

/* Infinite Brands Marquee */
.brands-marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 1rem 0;
}

.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-marquee {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}

.brands-marquee:hover {
  animation-play-state: paused;
}

.brands-marquee .brand-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 160px;
  height: 90px;
  margin: 0 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  vertical-align: middle;
}

.brands-marquee .brand-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}




/* Product Modal Styles */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-content {
  background: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-modal-overlay.active .product-modal-content {
  transform: translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  color: var(--brand-navy);
  font-size: 1.2rem;
  transition: background 0.2s ease;
}

.product-modal-close:hover {
  background: #e2e8f0;
}

.product-modal-img-wrapper {
  aspect-ratio: 4/3;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.product-modal-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.product-modal-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-item {
  cursor: pointer;
  transition: all 0.25s ease;
  background: #f8fafc;
  padding: 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.product-item>div:first-child {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.product-item p {
  padding: 0 1.25rem;
}

.product-item p:last-child {
  padding-bottom: 1.5rem;
}

.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border-color: #cbd5e1;
}


/* Additional Mobile Responsiveness Fixes */
@media (max-width: 768px) {

  .header-container,
  .top-bar-container,
  .page-banner-container,
  .home-about-grid {
    padding: 0 1rem;
  }

  .page-layout-sidebar {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .product-category-grid {
    grid-template-columns: 1fr !important;
  }

  .home-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-card {
    padding: 1.25rem 1rem;
  }
}

/* Explosive Text Animation for Company Overview */
.explosive-text {
  color: inherit;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-out;
  white-space: nowrap;
  font-size: 1.7rem !important;
}

@media (max-width: 1100px) {
  .explosive-text {
    white-space: normal;
    font-size: 1.4rem !important;
  }
}

.explosive-text:hover {
  transform: scale(1.05);
}

.explosive-text:hover::before,
.explosive-text:hover::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0);
  animation: burst 0.8s ease-out forwards;
  pointer-events: none;
}

.explosive-text:hover::before {
  background: radial-gradient(circle, rgba(255, 107, 0, 0.4), transparent);
  z-index: -1;
}

.explosive-text:hover::after {
  background: radial-gradient(circle, rgba(14, 34, 89, 0.4), transparent);
  z-index: -2;
}

@keyframes burst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }

  70% {
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.about-story-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-story-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.vision-mission-grid .pillar-card {
  padding: 1.25rem 1.5rem;
}

.vision-mission-grid .pillar-icon-box {
  margin-bottom: 0.75rem;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

.vision-mission-grid .pillar-title {
  margin-bottom: 0.25rem;
}

.industries-grid-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.industries-grid-center .pillar-card {
  flex: 1 1 300px;
  max-width: calc(33.333% - 1.35rem);
}

@media (max-width: 991px) {
  .industries-grid-center {
    gap: 1.25rem;
  }

  .industries-grid-center .pillar-card {
    max-width: calc(50% - 0.65rem);
  }
}

@media (max-width: 767px) {
  .industries-grid-center .pillar-card {
    max-width: 100%;
  }
}

/* Uiverse Card Animation Overrides */
.pillar-card {
  overflow: hidden;
  z-index: 1;
}

.pillar-card>* {
  position: relative;
  z-index: 2;
  transition: 0.8s all;
}

.pillar-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -30%;
  width: 120px;
  height: 120px;
  background: #1b337b;
  filter: blur(70px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.8s, height 0.8s;
  z-index: 0;
  pointer-events: none;
}

.pillar-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 0;
  height: 0;
  background: #1b337b;
  filter: blur(70px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.8s, height 0.8s, filter 0.8s;
  z-index: 0;
  pointer-events: none;
}

.pillar-card:hover::before {
  width: 1500px;
  height: 1500px;
  filter: blur(1px);
}

.pillar-card:hover .pillar-title,
.pillar-card:hover .pillar-desc,
.pillar-card:hover .pillar-desc strong,
.pillar-card:hover .pillar-desc ul,
.pillar-card:hover .pillar-desc li {
  color: #ffffff !important;
  transition: 0.8s all;
}

.pillar-card:hover .pillar-icon-box {
  background: #ffffff !important;
  color: var(--brand-orange) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transform: scale(1.1);
  transition: 0.8s all;
}

/* Animated Orb Cards */
.orb-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.orb-card>* {
  position: relative;
  z-index: 2;
  transition: 0.5s all;
}

.orb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Target the icon box which is the second div */
.orb-card:hover>div:nth-child(2) {
  transform: scale(1.15) translateY(-5px);
  background: #f86603 !important;
  color: white !important;
  box-shadow: 0 8px 15px rgba(248, 102, 3, 0.3);
}

.orb-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}

.orb-card .orb {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: inset 0 0 15px rgba(248, 102, 3, 0);
  transition: all 1s ease-in-out;
}

.orb-card:hover .orb {
  box-shadow: inset 0 0 30px rgba(248, 102, 3, 1), 0 0 20px rgba(248, 102, 3, 0.2);
  animation: float-orb 4s ease-in-out infinite alternate;
}

@keyframes float-orb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(15px, -15px) scale(1.1);
  }

  100% {
    transform: translate(-10px, 20px) scale(0.9);
  }
}

/* Orbs Initial Positions */
.orb-1 {
  width: 60px;
  height: 60px;
  top: -30px;
  left: -30px;
}

.orb-2 {
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: -30px;
}

.orb-3 {
  width: 40px;
  height: 40px;
  top: 30%;
  left: 80%;
}

.orb-4 {
  width: 100px;
  height: 100px;
  bottom: -40px;
  left: -20px;
}

.orb-5 {
  width: 150px;
  height: 150px;
  top: -50px;
  left: 40%;
}

/* Orbs Hover Positions */
.orb-card:hover .orb-1 {
  top: 20px;
  left: 10px;
  width: 90px;
  height: 90px;
  animation-delay: 0s;
}

.orb-card:hover .orb-2 {
  bottom: 40%;
  right: 20%;
  width: 120px;
  height: 120px;
  animation-delay: -1s;
}

.orb-card:hover .orb-3 {
  top: 10%;
  left: -10px;
  width: 70px;
  height: 70px;
  animation-delay: -2s;
}

.orb-card:hover .orb-4 {
  bottom: 10px;
  left: 50%;
  width: 80px;
  height: 80px;
  animation-delay: -3s;
}

.orb-card:hover .orb-5 {
  top: 40%;
  left: -20px;
  width: 60px;
  height: 60px;
  animation-delay: -4s;
}

/* Industries Page Overrides */
.page-industries .pillar-card::after,
.page-industries .pillar-card::before {
  background: #f86603;
}

.page-industries .pillar-card:hover .pillar-icon-box {
  color: var(--brand-blue) !important;
}





/* Product Pages Background */
.page-products .page-header-banner {
  background-image: linear-gradient(rgba(6, 13, 36, 0.4), rgba(6, 13, 36, 0.4)), url('../images/productbg.png');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.page-products .page-header-banner::before {
  display: none;
}




/* Contact Page specific overrides */
.page-contact .page-header-banner {
  padding: 0.5rem 0 1rem 0;
}

.page-contact .page-banner-title {
  margin-bottom: 0.25rem;
}

.page-contact .page-banner-subtitle {
  margin-bottom: 0.5rem;
}


/* Contact Card Size Reduction */
.contact-info-card {
  padding: 1rem !important;
}

.contact-info-icon {
  width: 44px !important;
  height: 44px !important;
  margin-bottom: 0.75rem !important;
}

.contact-info-icon i {
  font-size: 1.2rem !important;
}

.contact-info-card h4 {
  font-size: 0.95rem !important;
  margin-bottom: 0.4rem !important;
}

.contact-info-card p,
.contact-info-card address {
  font-size: 0.85rem !important;
  margin-bottom: 0.75rem !important;
}

.contact-card-btn {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.8rem !important;
}


/* Move Contact Cards up to overlap banner */
.page-contact .contact-info-cards-grid {
  margin-top: -1.25rem;
  position: relative;
  z-index: 10;
}

.page-contact .contact-page-section {
  padding-top: 0;
}




/* Compact Form Styling for Contact Page */
.page-contact .contact-form-box {
  padding: 1rem 1.5rem !important;
}

.page-contact .contact-form-title {
  font-size: 1.15rem !important;
  margin-bottom: 0.25rem !important;
}

.page-contact .contact-form-subtitle {
  font-size: 0.8rem !important;
  margin-bottom: 0.75rem !important;
}

.page-contact .form-group-modern {
  margin-bottom: 0.5rem !important;
}

.page-contact .form-control-modern {
  padding: 0.35rem 0.6rem !important;
  font-size: 0.85rem !important;
  border-radius: 6px !important;
}

.page-contact .form-group-modern label {
  font-size: 0.8rem !important;
  margin-bottom: 0.2rem !important;
}

.page-contact .btn-submit-contact {
  padding: 0.5rem 1rem !important;
  font-size: 0.85rem !important;
  margin-top: 0.25rem !important;
}

.page-contact textarea.form-control-modern {
  height: 60px !important;
  min-height: 60px !important;
}

.page-contact .form-row-grid {
  gap: 1rem !important;
}


/* Map Size Adjustment for Contact Page */
.page-contact .contact-iframe-wrap {
  min-height: 250px !important;
  height: 250px !important;
  flex-grow: 0 !important;
}


/* Fix for Dark Navy Section Feature Boxes */
.why-choose-navy-section .why-feature-box::after {
  background: #ffffff !important;
}


/* Footer Logo Adjustment */
.footer-logo {
  margin-left: 3rem !important;
}




/* ========================================================= */
/* --- COMPREHENSIVE MOBILE RESPONSIVENESS OVERRIDES --- */
/* ========================================================= */

@media (max-width: 992px) {

  /* 1. Header & Navigation */
  .mobile-toggle {
    display: flex !important;
    z-index: 1000;
    order: 3;
    margin-left: 15px;
  }

  .header-cta-box {
    order: 2;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    transition: 0.3s ease-in-out;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    margin: 10px 0;
    font-size: 1.1rem;
  }

  .header-cta-box {
    display: none !important;
    /* Hide CTA button on small screens */
  }

  /* 2. Contact Page */
  .contact-main-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-info-cards-grid {
    grid-template-columns: 1fr 1fr !important;
    margin-top: 1rem !important;
    /* Remove negative margin on small screens to prevent clipping */
  }

  /* 3. Products Page */
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* 4. Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }

  .footer-logo {
    margin-left: 0 !important;
    /* Reset nudged logo */
  }
}

@media (max-width: 768px) {

  /* 1. Top Bar */
  .top-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* 3. Products Page */
  .product-category-grid {
    grid-template-columns: 1fr !important;
  }

  /* 4. About & Industries Page Layouts */
  .industries-grid-center {
    grid-template-columns: 1fr !important;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {

  /* 2. Contact Page (Mobile) */
  .contact-info-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* 5. Heroes and Footer (Mobile) */
  .hero-text-side h1 {
    font-size: 2rem !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .page-hero-container h1 {
    font-size: 1.8rem !important;
  }
}


/* Quality Commitment Section */
.quality-commitment-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--box-shadow-sm);
}

.quality-commitment-title {
  font-family: var(--font-heading);
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.quality-commitment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.quality-badge {
  background: #fff4ec;
  color: var(--brand-orange);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  border: 1px solid rgba(255, 107, 0, 0.1);
  display: inline-block;
  white-space: normal;
}

@media (max-width: 768px) {
  .quality-commitment-box {
    padding: 3rem 1.5rem;
  }

  .quality-commitment-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .quality-commitment-box {
    padding: 2.5rem 1rem;
  }

  .quality-commitment-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .quality-badge {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }

  .quality-commitment-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* ISO Banner Section */
.iso-banner {
  background: #c4875f;
  border-radius: 16px;
  padding: 1.5rem 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.iso-banner-title {
  color: #ffffff;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.iso-banner-desc {
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .iso-banner {
    padding: 2.5rem 1.5rem;
  }

  .iso-banner-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .iso-banner {
    padding: 2rem 1rem;
  }

  .iso-banner-title {
    font-size: 1.5rem;
  }

  .iso-banner-desc {
    font-size: 0.95rem;
  }
}

/* ========================================================= */
/* --- FOOLPROOF MOBILE RESPONSIVENESS CATCH-ALL --- */
/* ========================================================= */

html,
body {
  overflow-x: clip !important;
  max-width: 100vw !important;
}

@media (max-width: 1100px) {
  .hero-clean-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-text-side {
    padding-right: 0 !important;
  }

  .home-about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    transform: none !important;
    margin: 2rem auto 0 !important;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  /* why-feature-grid grid override removed to prevent conflict with flexbox */
}

@media (max-width: 576px) {
  .home-about-stats-grid {
    grid-template-columns: 1fr !important;
  }

  /* why-feature-grid flexbox handles 1 column at 640px automatically */

  .brands-grid-clean {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* padding reductions for small screens */
  .hero-clean-section,
  .why-choose-navy-section,
  .brands-section-clean {
    padding: 3rem 1rem !important;
  }
}


/* Hero Floating Badge Positioning */
.hero-floating-badge {
  position: absolute;
  bottom: 25px;
  left: 10px;
  z-index: 50;
  padding: 0.4rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: max-content;
  max-width: 80%;
}

@media (max-width: 992px) {
  .hero-floating-badge {
    position: relative !important;
    bottom: auto;
    left: auto;
    margin: 1rem auto 0 auto;
    width: 100%;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
}



@media (max-width: 992px) {
  .nav-dropdown .dropdown-toggle {
    justify-content: center !important;
  }
}


/* Solutions Features Grid */
.solutions-features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .solutions-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .solutions-features-grid {
    grid-template-columns: 1fr;
  }
}


.top-info-item a {
  color: #ffffff !important;
}

.top-info-item a:hover {
  color: #ffffff !important;
}




@media (min-width: 1101px) {
  .hero-visual-wrapper {
    transform: scale(1.15, 1.28);
    margin-right: -2rem;
  }
}


@media (max-width: 1100px) {
  .desktop-hero-badge {
    display: none !important;
  }
}

@media (min-width: 1101px) {
  .mobile-hero-badge {
    display: none !important;
  }
}


@media (min-width: 1101px) {
  .hero-floating-badge.desktop-hero-badge {
    position: absolute !important;
    bottom: -2.5rem !important;
    left: -5rem !important;
  }
}


/* Make hero description smaller as requested */
.hero-desc-para {
  font-size: 0.75rem !important;
}

@media (max-width: 1100px) {
  .hero-desc-para {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 768px) {
  .hero-desc-para {
    font-size: 0.65rem !important;
  }
}


@media (max-width: 1100px) {
  .hero-action-ctas {
    justify-content: center !important;
    transform-origin: center center !important;
  }

  .mobile-hero-badge {
    margin: 0.5rem auto 0.5rem auto !important;
    align-items: center !important;
    text-align: center !important;
  }
}


@media (max-width: 1100px) {
  .hero-action-ctas {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin: 1rem auto 0 auto !important;
    transform: scale(0.9) !important;
    transform-origin: center center !important;
    width: 100% !important;
  }
}





/* Comprehensive Tablet and Mobile Responsiveness Fixes */
@media (max-width: 1200px) {
  .hero-clean-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }

  .hero-text-side {
    display: contents !important;
  }

  /* Order 1: Text elements */
  .hero-text-side>h1,
  .hero-text-side>.top-tagline-badge,
  .hero-text-side>.hero-partner-tagline,
  .hero-text-side>.hero-desc-para {
    order: 1 !important;
  }

  /* Order 2: The Slider */
  .hero-visual-side {
    order: 2 !important;
    margin: 0.5rem auto 0 auto !important;
    width: 100% !important;
    max-width: 80% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .hero-visual-side .hero-slider {
    width: 100% !important;
  }

  /* Order 3: Badges and Buttons */
  .mobile-hero-badge {
    display: flex !important;
    order: 3 !important;
    margin: 0.5rem auto 0.5rem auto !important;
  }

  .desktop-hero-badge {
    display: none !important;
  }

  /* Order 4: Buttons */
  .hero-action-ctas {
    order: 4 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    transform: scale(0.9) !important;
    transform-origin: center center !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
}

/* Force Navbar to collapse into mobile menu earlier (at 1100px instead of 992px) */
@media (max-width: 1250px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: auto;
    min-height: 80vh;
    background-color: var(--bg-light);
    flex-direction: column;
    padding: 2rem;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex !important;
    order: 3;
    margin-left: 15px;
    z-index: 1000;
  }

  .header-cta-box {
    order: 2;
    margin-left: auto;
  }

  .header-btn {
    display: none !important;
  }
}


@media (max-width: 992px) {
  .top-bar {
    display: none !important;
  }
}





/* Strip huge margins on mobile text elements */
@media (max-width: 1200px) {
  .hero-clean-grid {
    gap: 0.5rem !important;
    /* Reduce grid gap since elements have their own margins */
  }

  .hero-text-side>h1 {
    margin-bottom: 0.25rem !important;
  }

  .hero-text-side>.top-tagline-badge {
    margin-bottom: 0.5rem !important;
  }

  .hero-text-side>.hero-partner-tagline {
    margin-bottom: 0.5rem !important;
    justify-content: center !important;
  }

  .hero-text-side>.hero-desc-para {
    margin-bottom: 0.5rem !important;
  }

  .hero-visual-side .hero-slider {
    margin-top: 0.5rem !important;
  }
}


/* Tablet/Mobile Container Fixes */
@media (max-width: 1200px) {
  .hero-section-clean {
    height: auto !important;
    min-height: 100% !important;
    overflow: hidden !important;
    padding-bottom: 3rem !important;
  }

  .hero-clean-grid {
    height: auto !important;
  }
}

@media (max-width: 1200px) {
  .hero-visual-side {
    transform: translateX(20px) !important;
  }
}

/* Masked Text Animation for Hero Section */
.hero-masked-text {
  color: var(--brand-orange) !important;
}

@keyframes animate-background {
  0% {
    background-position: 0 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Wave Animation for Hero Paragraph */
.wave-text span {
  display: block;
  animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}

.wave-text span:nth-child(2) {
  animation-delay: 0.2s;
}

.wave-text span:nth-child(3) {
  animation-delay: 0.4s;
}

.wave-text span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Split Text Animation for About Section */
.text-part {
  position: relative;
  transform: translateX(0);
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  will-change: transform;
}

.text-part.left {
  transform: translateX(-200%);
  animation-name: slide-in-left;
}

.text-part.right {
  transform: translateX(200%);
  animation-name: slide-in-right;
}

@keyframes slide-in-left {
  0% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(200%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Neon Glow Animation for Feature List */
.neon-glow-text {
  color: #fff;
  text-shadow: 0 0 5px #f86603, 0 0 10px #f86603, 0 0 20px #f86603, 0 0 40px #f86603, 0 0 80px #f86603;
  animation: neon-glow-anim 1.5s infinite alternate;
  will-change: filter, text-shadow;
}

@keyframes neon-glow-anim {
  0% {
    text-shadow: 0 0 5px #f86603, 0 0 10px #f86603, 0 0 20px #f86603, 0 0 40px #f86603, 0 0 80px #f86603;
  }

  100% {
    text-shadow: 0 0 10px #012975, 0 0 20px #012975, 0 0 40px #012975, 0 0 80px #012975, 0 0 160px #012975;
  }
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: block;
  }
}

.hero-main-title {
  margin-top: -30px;
}

@media (max-width: 768px) {
  .hero-main-title {
    margin-top: 15px; /* Moved down slightly for mobile */
  }
  
  .hero-desc-para span {
    display: inline !important;
  }
  
  .desktop-only-br {
    display: none !important;
  }
}