html {
    background: #0b1c2d;
}

body {
    background: #0b1c2d;
}
body {
    opacity: 0;
    animation: fadeIn .3s ease-in forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
:root {
  --dark-blue: #0b1c2d;
  --dark-blue-2: #0d2035;
  --dark-blue-3: #112944;
  --navy: #1a3a5c;
  --black: #111111;
  --black-2: #1a1a1a;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --light-gray: #e8e8e8;
  --gray: #999999;
  --gold: #d4af37;
  --gold-light: #e8c84a;
  --gold-dark: #b8961f;
  --success: #2e7d32;
  --warning: #f57c00;
  --error: #c62828;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.25);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
  --transition: all 0.35s ease;
  --radius: 6px;
  --radius-lg: 12px;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

#loading-screen {
  position: fixed; inset: 0;
  background: var(--dark-blue);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease forwards;
}

.loader-shield {
  width: 56px; height: 64px;
  fill: var(--gold);
}

.loader-text h2 {
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.loader-text span {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 3px;
}

.loader-bar {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadFill 1.8s ease forwards;
  border-radius: 10px;
}

@keyframes loadFill {
  from { width: 0; }
  to { width: 100%; }
}

#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

#header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

#header.scrolled {
  background: rgba(11, 28, 45, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-shield {
  width: 42px; height: 48px;
  fill: var(--gold);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(212,175,55,0.4));
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-shield { transform: scale(1.05); }

.logo-text { display: flex; flex-direction: column; }

.logo-text .brand-name {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-text .brand-sub {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 28px);
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark-blue) !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-call::after { display: none !important; }

.btn-call svg { width: 16px; height: 16px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-height); left: 0; right: 0;
  background: rgba(11, 28, 45, 0.98);
  backdrop-filter: blur(12px);
  padding: 20px 24px 30px;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.nav-mobile .nav-link {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}

.nav-mobile .btn-call {
  margin-top: 10px;
  justify-content: center;
  padding: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark-blue);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skew(-15deg);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before { transform: translateX(100%) skew(-15deg); }

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark-blue);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--dark-blue);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-dark:hover {
  background: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.section { padding: 90px 0; }

.section-dark { background: var(--dark-blue); }

.section-navy { background: var(--navy); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-blue);
}

.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--black);
  max-width: 620px;
  margin-top: 12px;
  line-height: 1.7;
}

.section-subtitle.light { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 60px; }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 16px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide:nth-child(1) {
  background-image: url('https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg?auto=compress&cs=tinysrgb&w=1920');
}
.hero-slide:nth-child(2) {
  background-image: url('https://images.pexels.com/photos/5699456/pexels-photo-5699456.jpeg?auto=compress&cs=tinysrgb&w=1920');
}
.hero-slide:nth-child(3) {
  background-image: url('https://images.pexels.com/photos/374124/pexels-photo-374124.jpeg?auto=compress&cs=tinysrgb&w=1920');
}
.hero-slide:nth-child(4) {
  background-image: url('https://images.pexels.com/photos/1838640/pexels-photo-1838640.jpeg?auto=compress&cs=tinysrgb&w=1920');
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,28,45,0.88) 0%,
    rgba(11,28,45,0.65) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.3s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.5s both;
}

.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.9s both;
}

.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,0.5);
  fill: none;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.about-home {
  background: var(--white);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-title { margin-bottom: 20px; }

.about-content p {
  color: black;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.stat-item { text-align: center; }

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.about-image {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-wrap:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--dark-blue);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
}

.about-img-badge strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.about-img-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.services-section {
  background: var(--off-white);
  padding: 90px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(11,28,45,0.15);
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.service-card-icon-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: #0b1c2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon svg {
  width: 20px;
  height: 20px;
  fill: #d4af37;
}

.service-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1c2d;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.service-card-body p {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 12px 0 24px 0;
  flex-grow: 1;
}

.service-card-body .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 0 auto;
  width: fit-content;
  padding: 10px 20px;
  font-size: 0.82rem;
}

.industries-section {
  background: var(--dark-blue);
  padding: 90px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

/* Dynamic Active State for Industry Cards on Home Page */
.industry-card:hover,
.industry-card.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--dark-blue) !important;
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.3) !important;
}

.industry-card:hover h4,
.industry-card.active h4 {
  color: var(--dark-blue) !important;
}

.industry-card:hover p,
.industry-card.active p {
  color: var(--dark-blue) !important;
  opacity: 0.9;
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon,
.industry-card.active .industry-icon { transform: scale(1.2); }

.industry-card h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.industry-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  line-height: 1.5;
}

.why-section { background: var(--white); padding: 90px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}

/* Hover and click active states unified for flawless alignment */
.why-card:hover,
.why-card.active {
  background: var(--dark-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 56px; height: 56px;
  margin-bottom: 18px;
  background: var(--dark-blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.why-card:hover .why-icon,
.why-card.active .why-icon {
  background: var(--gold);
}

.why-icon svg {
  width: 26px; height: 26px;
  fill: var(--gold);
  transition: fill 0.3s ease;
}

.why-card:hover .why-icon svg,
.why-card.active .why-icon svg { fill: var(--dark-blue); }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.why-card:hover h3,
.why-card.active h3 { color: var(--gold); }

.why-card p {
  font-size: 0.9rem;
  color: black;
  line-height: 1.7;
  transition: color 0.3s ease;
}

.why-card:hover p,
.why-card.active p { color: rgba(255,255,255,0.75); }

.testimonials-section {
  background: var(--off-white);
  padding: 90px 0;
  overflow: hidden;
}

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  min-width: 380px;
  max-width: 380px;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex-shrink: 0;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: rgba(212,175,55,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

.author-info span {
  color: var(--gray);
  font-size: 0.8rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--dark-blue);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-btn:hover {
  background: var(--dark-blue);
}

.testimonial-btn svg {
  width: 18px; height: 18px;
  fill: var(--dark-blue);
  transition: fill 0.3s ease;
}

.testimonial-btn:hover svg { fill: var(--gold); }

.testimonial-dots {
  display: flex; gap: 8px;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.cta-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-3) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content { position: relative; z-index: 1; }

.cta-section .section-title { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.cta-section .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin: 16px auto 40px;
  max-width: 600px;
}

.cta-buttons {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: var(--black-2);
  color: var(--white);
}

.footer-main {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr 1.8fr;
  gap: 50px;
}

.footer-brand .nav-logo { margin-bottom: 20px; }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex; gap: 12px;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark-blue);
  transform: translateY(-3px);
}

.social-link svg {
  width: 16px; height: 16px;
  fill: currentColor;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 14px; height: 14px;
  fill: var(--gold);
}

.footer-contact-item .info strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.footer-contact-item .info span {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-bottom span { color: var(--gold); }

#whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 900;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

#whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

#whatsapp-btn svg {
  width: 28px; height: 28px;
  fill: var(--white);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.1); }
}

#back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 44px; height: 44px;
  background: var(--dark-blue);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

#back-to-top svg {
  width: 18px; height: 18px;
  stroke: var(--gold);
  fill: none;
  transition: stroke 0.3s ease;
}

#back-to-top:hover svg { stroke: var(--dark-blue); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

.page-banner {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-3) 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner .breadcrumb {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  position: relative;
}

.page-banner .breadcrumb a { color: var(--gold); }
.page-banner .breadcrumb a:hover { text-decoration: underline; }

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
}

.page-banner p {
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  position: relative;
}

.about-intro { padding: 90px 0; }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.about-intro-img {
  height: 100%;
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.approach-item svg {
  width: 24px;
  height: 24px;
  color: #d4af37;
  flex-shrink: 0;
}

.approach-item span {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-intro-img {
    height: 350px;
  }
  
  .approach-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.mvv-section {
  background: var(--dark-blue);
  padding: 90px 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mvv-card:hover::before { transform: scaleX(1); }

.mvv-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
}

.mvv-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: rgba(212,175,55,0.15);
  border: 2px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.mvv-card:hover .mvv-icon {
  background: rgba(212,175,55,0.2);
  border-color: var(--gold);
}

.mvv-icon svg {
  width: 32px; height: 32px;
  fill: var(--gold);
}

.mvv-card h3 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mvv-card h2 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.mvv-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.75;
}

.values-section { padding: 90px 0; background: var(--white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.value-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-dark); /* Gold dark color for the numbers */
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.value-card h4 {
  color: var(--dark-blue);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  color: black;
  font-size: 0.83rem;
  line-height: 1.6;
}

.team-section {
  background: var(--off-white);
  padding: 90px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  height: auto;
  background: #fff;
}

.team-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.team-card:hover .team-img img { transform: scale(1.08); }

.team-avatar-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(212,175,55,0.15);
  border: 3px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
}

.team-avatar-placeholder svg {
  width: 52px; height: 52px;
  fill: var(--gold);
  opacity: 0.7;
}

.team-info {
  padding: 22px 20px;
}

.team-info h4 {
  color: var(--dark-blue);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-info .position {
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-info p {
  color: black;
  font-size: 0.83rem;
  line-height: 1.6;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.service-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex; flex-direction: column;
}

.service-card-icon-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}

.svc-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-page-card:hover .svc-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.svc-icon svg { width: 24px; height: 24px; fill: var(--gold); transition: fill 0.3s ease; }

.service-page-card:hover .svc-icon svg { fill: var(--dark-blue); }

.service-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
}

.service-card-body p {
  color: black;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.industries-page-section { padding: 90px 0; background: var(--off-white); }

.industries-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.industry-page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  cursor: pointer;
}

/* Beautiful active dark blue layout for industries page cards on hover or click */
.industry-page-card:hover,
.industry-page-card.active {
  background-color: var(--dark-blue) !important;
  border-bottom-color: var(--gold) !important;
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-6px) scale(1.02);
}

.industry-page-card:hover h4,
.industry-page-card.active h4 {
  color: var(--gold) !important;
}

.industry-page-card:hover p,
.industry-page-card.active p {
  color: rgba(255, 255, 255, 0.75) !important;
}

.industry-page-card .i-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }

.industry-page-card h4 {
  color: var(--dark-blue);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.industry-page-card p { color: black; font-size: 1rem; line-height: 1.6; }

.contact-section { padding: 90px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-bottom: 12px;
}

.contact-info > p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; fill: var(--gold); }

.contact-detail h4 {
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  color: #555;
  font-size: 0.88rem;
  line-height: 1.6;
}

.contact-detail a:hover { color: var(--gold-dark); }

.hours-table { margin-top: 8px; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
}

.hours-row:last-child { border-bottom: none; }

.hours-row .day { color: var(--dark-blue); font-weight: 600; }

.hours-row .time { color: #666; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--dark-blue);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group label span { color: var(--error); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(198,40,40,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Add this below the .form-group select section --- */

select#service {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  padding-right: 40px; 
  cursor: pointer;
}


select#service:hover {
  border-color: var(--gold);
}

.form-group .error-msg {
  color: var(--error);
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.form-group .error-msg.show { display: block; }

.btn-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--navy), var(--dark-blue-3));
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-submit:active { transform: translateY(0); }

#success-popup {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
}

#success-popup.show { opacity: 1; visibility: visible; }

.popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.85);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--gold);
}

#success-popup.show .popup-box { transform: scale(1); }

.popup-icon {
  width: 72px; height: 72px;
  background: rgba(46,125,50,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

.popup-icon svg { width: 36px; height: 36px; fill: var(--success); }

.popup-box h3 {
  color: var(--dark-blue);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.popup-box p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.popup-close {
  background: var(--dark-blue);
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.popup-close:hover { background: var(--navy); }

.map-placeholder {
  height: 380px;
  background: linear-gradient(135deg, var(--dark-blue), var(--navy));
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-pin { font-size: 3rem; }

.map-placeholder h4 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
}

.map-placeholder p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  max-width: 360px;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-page-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-menu { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-page-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-page-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-title { font-size: 1.8rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .testimonial-card { min-width: 300px; max-width: 300px; }
  .logo-text .brand-name { font-size: 0.85rem; }
  .logo-text .brand-sub { display: none; }
}

@media (max-width: 420px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
/* FORCE DROPDOWN ARROW TO SHOW */
select#service {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  
  /* This adds the arrow icon */
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 15px !important;
  
  padding-right: 40px !important;
  cursor: pointer !important;
  background-color: #ffffff !important;
}

/* Ensure arrow stays when clicked or focused */
select#service:focus {
  border-color: #d4af37 !important;
  outline: none !important;
}