/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

:root {
  --dark: #1B1B1B;
  --dark-2: #232323;
  --dark-3: #2A2A2A;
  --orange: #FECD06;
  --orange-hover: #D4900A;
  --green-dark: #2D3A2D;
  --green-btn: #3A4A3A;
  --light: #F5F4F0;
  --light-2: #EEEEE8;
  --white: #FFFFFF;
  --gray-text: #6B6B6B;
  --gray-border: #D5D5D0;
  --body-text: #3A3A3A;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--body-text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER / NAV ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  height: 120px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.header .logo-img {
  filter: brightness(0) invert(1);
}

.header.scrolled .logo-img {
  filter: none;
}

.logo .star {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: middle;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ===== Abhima Group super-site logo (top-right header) ===== */
.super-group-link {
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 5px 12px;
  text-decoration: none;
  background: rgba(254, 205, 6, 0.15);
  border: 1px solid rgba(254, 205, 6, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.super-group-link:hover {
  background: rgba(254, 205, 6, 0.30);
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(254, 205, 6, 0.4);
  transform: translateY(-1px);
}

.header.scrolled .super-group-link {
  background: rgba(254, 205, 6, 0.12);
  border-color: rgba(254, 205, 6, 0.3);
}

.super-group-logo {
  height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.header.scrolled .super-group-logo {
  filter: none;
}

@media (max-width: 1023px) {
  .super-group-logo { height: 44px; max-width: 130px; }
}

@media (max-width: 767px) {
  .super-group-logo { height: 38px; max-width: 120px; }
}

@media (max-width: 479px) {
  .super-group-logo { height: 32px; max-width: 100px; }
  .super-group-link { padding: 3px 5px; }
}

@media (max-width: 379px) {
  .super-group-logo { height: 28px; max-width: 85px; }
}

.btn-talk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.4s;
}

.btn-talk:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
}

.btn-talk .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50%;
  color: var(--dark);
  font-size: 14px;
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.4s;
}

/* Header scrolled state */
.header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header.scrolled .nav-links a {
  color: var(--gray-text);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--dark);
}

.header.scrolled .btn-talk {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
}

.header.scrolled .menu-toggle {
  color: var(--dark);
}

/* ========== SECTION BADGES ========== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-badge.dark {
  background: var(--dark);
  color: var(--white);
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.section-badge.outline {
  background: transparent;
  border: 1px solid var(--gray-border);
  color: var(--gray-text);
}

.section-badge i {
  font-size: 10px;
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.text-white {
  color: #ffffff;
}

.section-title .accent {
  color: var(--orange);
}

.section-title .gray {
  color: var(--gray-text);
  font-style: italic;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: url('../images/hero.jpeg') center/cover no-repeat; */
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(255, 255, 255, 0.08);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
}

.hero-left {
  text-align: center;
}

.hero-title {
  font-family: var(--font-main);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .accent {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-divider {
  width: 120px;
  height: 1px;
  border-top: 2px dotted rgba(255, 255, 255, 0.25);
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--dark);
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.hero-link:hover {
  color: var(--orange);
}

.hero-link i {
  font-size: 12px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.stat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  min-width: 320px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.3;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-value span {
  font-size: 32px;
}

.scroll-down {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 3;
  white-space: nowrap;
}

/* btn-outline kept for contact page CTA */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left .section-subtitle {
  margin-bottom: 32px;
  text-align: justify;
}

.about-title-single-line {
  white-space: nowrap;
  font-size: clamp(20px, 2.8vw, 44px);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 12px;
  color: var(--orange);
  font-size: 20px;
}

.about-feature h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

.about-right {
  position: relative;
}

.about-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img,
.about-image video {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: var(--light);
}

.services .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.services .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border-radius: 14px;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 24px;
}

.service-image {
  width: calc(100% + 56px);
  height: 180px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin: -36px -28px 24px;
  background: #eef2f7;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 10px;
}

/* ========== PRODUCTS ========== */
.products {
  padding: 100px 0;
  background: var(--dark);
}

.products .section-title {
  color: var(--white);
}

.products .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.products .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 160, 32, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.product-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 160, 32, 0.12);
  border-radius: 14px;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 24px;
}

.product-image {
  width: calc(100% + 56px);
  height: 180px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin: -36px -28px 24px;
  background: rgba(255, 255, 255, 0.08);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* .services .service-card p,
.products .product-card p {
  text-align: left;
} */

/* ========== PROCESS ========== */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.process .section-subtitle {
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-card {
  position: relative;
  background: var(--light);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.process-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  padding: 100px 0;
  background: var(--light);
}

.why-us .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-us .section-subtitle {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--dark);
  border-radius: 20px;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.18);
}

.why-card-media {
  position: absolute;
  inset: 0;
}

.why-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.why-card:hover .why-card-media img {
  transform: scale(1.06);
}

.why-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.12) 0%, rgba(9, 14, 24, 0.46) 45%, rgba(9, 14, 24, 0.9) 100%);
}

.why-card-overlay {
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card .sub-label {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.why-card h3.why-card-title {
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.2;
  color: var(--orange);
  margin-bottom: 12px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.why-card p.why-card-desc {
  max-width: 92%;
}

.why-card p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
}

.why-card p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
}

/* ========== PROJECTS ========== */
.projects {
  padding: 100px 0;
  background: var(--white);
}

.projects .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects .section-subtitle {
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--light);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.project-card:hover::before {
  transform: scaleX(1);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.project-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.project-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.project-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  padding: 4px 12px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0;
  background: var(--dark);
  text-align: center;
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 40px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--orange);
  color: var(--dark);
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0;
  background: var(--light);
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials .section-subtitle {
  margin: 0 auto;
}

/* Testimonial Carousel */
.testi-carousel {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc((100% - 56px) / 3);
  box-sizing: border-box;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-border);
  transition: box-shadow 0.35s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
  color: var(--orange);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
  font-family: serif;
}

.testimonial-card blockquote {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.author-info span {
  font-size: 13px;
  color: var(--gray-text);
}

/* Carousel Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testi-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.testi-arrow:hover {
  background: var(--dark);
  color: var(--orange);
  border-color: var(--dark);
}

.testi-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--gray-border);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.testi-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 100px;
}

/* ========== INDUSTRIES ========== */
.industries {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

.industries-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--light);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--body-text);
  transition: all 0.3s;
}

.industry-pill i {
  color: var(--orange);
  font-size: 14px;
}

.industry-pill:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 0;
  border-top: none;
}

/* CTA Banner */
.footer-cta {
  background: linear-gradient(135deg, var(--orange) 0%, #FECD06 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.footer-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
  gap: 32px;
}

.footer-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.footer-cta-text p {
  font-size: 16px;
  color: rgba(27, 27, 27, 0.7);
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.footer-cta-btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(27, 27, 27, 0.18);
}

.footer-cta-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateX(4px);
}

.footer-cta-btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.footer-cta-btn i {
  transition: transform 0.3s;
}

.footer-cta-btn:hover i {
  transform: translateX(4px);
}

/* Footer Main */
.footer-main {
  padding: 72px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.3fr;
  gap: 48px;
}

/* Footer Brand Column */
.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--orange);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Footer Columns */
.footer-col-title {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(6px);
}

.footer-links a:hover::before {
  width: 12px;
}

/* Footer Contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item > i {
  color: var(--orange);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.footer-contact-item p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-contact-item a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
  display: flex;
  gap: 28px;
}

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--orange);
}

/* ========== FLOATING PILL ========== */
.floating-pill {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--dark);
  border-radius: 100px;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  pointer-events: none;
}

.floating-pill.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pill-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--orange);
  cursor: pointer;
  transition: all 0.3s;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pill-btn.scroll-top {
  color: var(--orange);
  background: transparent;
}

.pill-btn.scroll-top:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pill-btn.phone {
  color: var(--orange);
  background: transparent;
}

.pill-btn.phone:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ========== CONTACT PAGE ========== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  text-align: center;
  overflow: hidden;
}



.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.page-hero h1,
.page-hero p,
.page-hero .breadcrumb {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  display: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb .current {
  color: var(--orange);
}

.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-section .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--light);
  border-radius: 14px;
  border: 1px solid var(--gray-border);
}

.contact-info-card i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--orange);
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

.contact-info-card .inline-phone-icon {
  width: auto;
  height: auto;
  display: inline-block;
  background: transparent;
  color: var(--orange);
  border-radius: 0;
  font-size: 14px;
  margin-right: 6px;
  vertical-align: middle;
}

.contact-info-card a:hover {
  color: var(--orange);
}

.contact-form {
  background: var(--light);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--gray-border);
}

.contact-business-hours {
  margin-top: 20px;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--orange);
  color: var(--dark);
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3);
}

.form-subtitle {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Contact Social */
.contact-social {
  margin-top: 22carrerpx;
}

.contact-social h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.contact-social-links {
  display: flex;
  gap: 12px;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--light);
  border: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 16px;
  transition: all 0.3s;
}

.contact-social-links a:hover {
  background: var(--dark);
  color: var(--orange);
  border-color: var(--dark);
}

/* Hide Business Hours */
.contact-business-hours-hidden {
  display: none !important;
}

/* Increase social media logo sizes */
.contact-social-links a {
  width: 56px;
  height: 56px;
  font-size: 20px;
}

/* Map Section */
.map-section {
  background: var(--white);
  padding: 80px 0;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.map-card {
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
}

.map-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  padding: 18px 20px;
  margin: 0;
  border-bottom: 1px solid var(--gray-border);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  display: block;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.faq-icon {
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 16px;
}

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========== ABOUT PAGE ========== */

/* Company Story */
.about-story {
  padding: 100px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.about-story .section-badge {
  margin-bottom: 16px;
}

.about-story .section-title {
  margin-bottom: 40px;
}

.about-story-content p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.story-intro {
  margin-bottom: 22px;
}

.story-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.story-tile {
  background: var(--light);
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 18px 16px;
  transition: all 0.3s ease;
}

.story-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 160, 32, 0.4);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.story-tile h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.story-tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-text);
  text-align: justify;
}

.about-story-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  position: absolute;
  inset: 0;
}

.about-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid var(--orange);
  opacity: 0;
  transition: opacity 0.35s;
}

.about-story-image:hover::after {
  opacity: 1;
}

/* Mission & Vision */
.mv-section {
  padding: 100px 0;
  background: var(--dark);
}

.mv-section .section-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: left;
  transition: all 0.35s ease;
}

.mv-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--dark);
  border-radius: 50%;
  font-size: 24px;
}

.mv-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.mv-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 160, 32, 0.45);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.mv-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 18px;
}

.mv-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mv-points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.mv-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* Core Values */
.values-section {
  padding: 100px 0;
  background: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: left;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 16px;
  font-size: 24px;
  margin-bottom: 24px;
}

.value-image {
  width: calc(100% + 56px);
  height: 180px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin: -40px -28px 24px;
  background: #eceff4;
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* About page reference style: Clients + Quality + Certifications */
.clients-reference-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(254, 205, 6, 0.1) 0%, rgba(254, 205, 6, 0) 34%),
    radial-gradient(circle at 90% 88%, rgba(212, 144, 10, 0.12) 0%, rgba(212, 144, 10, 0) 36%),
    #fff;
  padding: 60px 0 70px;
}

.clients-reference-head {
  text-align: center;
  margin-bottom: 20px;
}

.clients-reference-head p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #1f1f1f;
  letter-spacing: 0;
  text-transform: none;
}

.clients-reference-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-size: 44px;
  color: #000000;
  font-weight: 700;
  line-height: 1.15;
}

.clients-reference-head h2::first-line {
  color: #000000;
}

.clients-reference-head h2 span {
  color: #e6ad00;
}

.clients-reference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.ref-client-card {
  min-height: 180px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  border: 1px solid rgba(212, 144, 10, 0.22);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 18px;
  box-shadow: 0 14px 30px rgba(27, 27, 27, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ref-client-card img {
  width: 85%;
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.ref-client-card span {
  display: none;
  font-size: 12px;
  line-height: 1.25;
  color: var(--body-text);
  font-weight: 600;
}

.ref-client-wordmark {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: var(--dark);
}

.ref-client-wordmark span {
  display: inline;
  color: var(--orange-hover);
  font-size: inherit;
  font-weight: 700;
}

.ref-client-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 205, 6, 0.72);
  box-shadow: 0 20px 36px rgba(27, 27, 27, 0.12);
}

.ref-client-card:hover img {
  transform: scale(1.05);
}

.ref-client-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(212, 144, 10, 0.35);
  color: var(--orange-hover);
  font-size: 12px;
  font-weight: 700;
  background: rgba(254, 205, 6, 0.12);
}

/* ========== QUALITY BANNER ========== */
.quality-reference-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 0;
}

.quality-reference-head {
  text-align: center;
  padding: 48px 24px 32px;
  background: var(--white);
}

.quality-reference-head p {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0;
}

.quality-reference-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 44px;
  color: #000000;
  font-weight: 700;
  line-height: 1.15;
}

.quality-reference-head h2 span {
  color: #e6ad00;
}

.quality-reference-image {
  position: relative;
  width: 100%;
}

.quality-reference-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.quality-reference-image img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ========== CERTIFICATIONS (CASCADING) ========== */
.cert-reference-section {
  background: #f5f5f5;
  padding: 52px 0 64px;
}

.cert-reference-head {
  text-align: center;
  margin-bottom: 40px;
}

.cert-reference-head p {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  color: #555;
  letter-spacing: 0;
}

.cert-reference-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
}

.cert-reference-head h2 span {
  color: #e6ad00;
}

/* Cascade layout */
.cert-cascade {
  /*max-width: 900px;*/
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding: 0 20px;
}

.cert-cascade-row {
  display: grid;
  grid-template-columns: 1fr 80px 110px 80px 1fr;
  align-items: center;
  gap: 0;
  margin-top: -24px;
}

.cert-cascade-row:first-child {
  margin-top: 0;
}

/* Zigzag: odd rows left, even rows right */
.cert-row-1 { margin-left: -80px; position: relative; z-index: 4; }
.cert-row-2 { margin-left: 80px;  position: relative; z-index: 3; }
.cert-row-3 { margin-left: -80px; position: relative; z-index: 2; }
.cert-row-4 { margin-left: 80px;  position: relative; z-index: 1; }

/* Hide line on the empty (no-text) side */
.cert-row-1 > :nth-child(4),
.cert-row-3 > :nth-child(4) {
  background: transparent;
}
.cert-row-2 > :nth-child(2),
.cert-row-4 > :nth-child(2) {
  background: transparent;
}

/* Badge circle */
.cert-cascade-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-cascade-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Connector lines */
.cert-cascade-line {
  height: 2px;
  background: #b8b8b8;
  width: calc(100% + 12px);
  margin: 0 -6px;
}

/* Labels */
.cert-cascade-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cert-cascade-label strong {
  font-size: 14px;
  font-weight: 700;
  color: #1f1f1f;
  line-height: 1.3;
}

.cert-cascade-label span {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  line-height: 1.3;
}

.cert-label-left {
  text-align: right;
  padding-right: 8px;
}

.cert-label-right {
  text-align: left;
  padding-left: 8px;
}

@media (max-width: 1199px) {
  .clients-reference-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .ref-client-card {
    min-height: 160px;
    padding: 12px;
  }

  .ref-client-card img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .cert-row-1 { margin-left: -50px; }
  .cert-row-2 { margin-left: 50px; }
  .cert-row-3 { margin-left: -50px; }
  .cert-row-4 { margin-left: 50px; }

  .cert-cascade-row {
    margin-top: -18px;
  }

  .cert-cascade-badge {
    width: 90px;
    height: 90px;
  }

  .cert-cascade-row {
    grid-template-columns: 1fr 50px 90px 50px 1fr;
  }
}

@media (max-width: 767px) {
  .clients-reference-section {
    padding: 46px 0 54px;
  }

  .clients-reference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ref-client-card {
    min-height: 148px;
    padding: 10px;
    border-radius: 12px;
  }

  .ref-client-card img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .clients-reference-head p {
    font-size: 14px;
  }

  .clients-reference-head h2 {
    font-size: clamp(34px, 9vw, 52px);
  }

  .ref-client-card span {
    font-size: 15px;
  }

  .quality-reference-head {
    padding: 36px 16px 24px;
  }

  .quality-reference-head p {
    font-size: clamp(18px, 2.8vw, 28px);
  }

  .quality-reference-head h2 {
    font-size: clamp(24px, 3.8vw, 40px);
  }

  .quality-reference-image img {
    height: 280px;
  }

  .cert-reference-section {
    padding: 40px 0 48px;
  }

  .cert-reference-head {
    margin-bottom: 28px;
  }

  .cert-cascade {
    align-items: center;
  }

  .cert-cascade-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: 24px;
  }

  .cert-cascade-row:first-child {
    margin-top: 0;
  }

  .cert-cascade-line {
    display: none;
  }

  .cert-cascade-badge {
    width: 90px;
    height: 90px;
    order: 1;
  }

  .cert-cascade-label {
    text-align: center;
    padding: 0;
    order: 2;
  }

  .cert-cascade-label:empty {
    display: none;
  }

  .cert-label-left,
  .cert-label-right {
    text-align: center;
    padding: 0;
  }

  .cert-cascade-label strong {
    font-size: 14px;
  }

  .cert-cascade-label span {
    font-size: 12px;
  }
}

/* Certifications – marquee slider */
.cert-section {
  padding: 80px 0 60px;
  background: var(--white);
}

/* ========== PARTNERSHIPS & CERTIFICATIONS GRID ========== */
.partnerships-section {
  padding: 80px 0 100px;
  background: var(--light);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.partners-grid.partners-grid-center {
  grid-template-columns: repeat(4, 1fr);
  max-width: 860px;
  margin: 48px auto 0;
  justify-content: center;
}

@media (max-width: 767px) {
  .partners-grid.partners-grid-center {
    grid-template-columns: repeat(2, 1fr);
  }
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
  border-color: var(--orange);
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-height: 80px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
}

.partner-logo-icon i {
  font-size: 52px;
  line-height: 1;
}

.partner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1023px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 599px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .partner-card {
    padding: 24px 14px 18px;
  }

  .partner-logo-icon i {
    font-size: 40px;
  }
}



/* Marquee wrapper – hides overflow and adds fade edges */
.cert-marquee-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 48px;
  padding: 0 24px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) var(--light);
}

.cert-marquee-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: max-content;
  min-width: 100%;
  margin: 0 auto;
  padding-bottom: 4px;
}

.cert-marquee-wrapper::-webkit-scrollbar {
  height: 8px;
}

.cert-marquee-wrapper::-webkit-scrollbar-track {
  background: var(--light);
  border-radius: 999px;
}

.cert-marquee-wrapper::-webkit-scrollbar-thumb {
  background: rgba(254, 205, 6, 0.9);
  border-radius: 999px;
}

.cert-marquee-item {
  flex: 0 0 auto;
  background: var(--light);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  scroll-snap-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cert-marquee-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.cert-marquee-item img {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.cert-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* Leadership Team */
.team-section {
  padding: 100px 0;
  background: var(--light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 24px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 50%;
  font-size: 36px;
  margin-bottom: 24px;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.team-role {
  display: inline-block;
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--light);
  color: var(--dark);
  border-radius: 50%;
  font-size: 15px;
  transition: all 0.3s;
}

.team-socials a:hover {
  background: var(--dark);
  color: var(--orange);
}

/* ========== SERVICES PAGE ========== */

.services-page .svc-spotlight-overlay p,
.services-page .svc-spotlight-link,
.services-page .svc-detail-body p,
.services-page .svc-features li,
.services-page .tech-tag,
.services-page .service-detail-content p,
.services-page .service-detail-points li,
.services-page .service-back-link {
  font-family: var(--font-main);
}

/* Services Intro */
.services-intro {
  padding: 80px 0 0;
  background: var(--white);
}

/* Services spotlight cards (screenshot style) */
.svc-spotlight-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(13, 115, 180, 0.08), transparent 45%),
    linear-gradient(180deg, #f5f7fa 0%, #f0f2f6 100%);
}

.svc-spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 150px;
}

.svc-spotlight-card {
  position: relative;
  min-height: 340px;
  margin-bottom: 150px;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 18px 54px rgba(11, 24, 45, 0.16);
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-spotlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(11, 24, 45, 0.2);
}

.svc-spotlight-card:last-child {
  margin-bottom: 0;
}

.svc-spotlight-media {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.svc-spotlight-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 12, 20, 0.3) 0%, rgba(8, 12, 20, 0.08) 100%);
}

.svc-spotlight-overlay {
  position: absolute;
  left: 32px;
  right: clamp(24px, 25%, 320px);
  top: 214px;
  bottom: auto;
  z-index: 2;
  background: rgba(237, 239, 244, 0.96);
  border-radius: 16px;
  padding: 36px 42px 40px;
  box-shadow: 0 16px 42px rgba(10, 22, 40, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.svc-spotlight-overlay h3 {
  margin: 0;
  color: #1f2430;
  font-family: var(--font-main);
  font-size: clamp(25px, 2.2vw, 38px);
  line-height: 1.22;
  font-weight: 700;
  max-width: 850px;
}

.svc-spotlight-overlay p {
  margin: 18px 0 0;
  color: #2d3340;
  font-family: var(--font-main);
  font-size: 17px;
  line-height: 1.72;
  max-width: 900px;
}

.svc-spotlight-link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #27456f;
  color: #27456f;
  border-radius: 999px;
  padding: 12px 30px;
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 600;
  transition: all 0.28s ease;
}

.svc-spotlight-link:hover {
  background: #27456f;
  color: #fff;
}

.svc-spotlight-section .section-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

.svc-spotlight-section p,
.svc-spotlight-section a {
  font-family: var(--font-main);
}

/* Keep the same aligned look while fully hiding old nav controls */
.svc-spotlight-nav,
.svc-dot,
.svc-nav-arrow {
  display: none !important;
}


/* Service details page */
.service-detail-page {
  padding: 96px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(254, 205, 6, 0.14), transparent 40%),
    linear-gradient(180deg, #f7f8fb 0%, #f1f3f7 100%);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.service-detail-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(10, 22, 40, 0.16);
}

.service-detail-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-detail-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(20, 38, 65, 0.08);
  border-radius: 20px;
  padding: 34px 32px;
  box-shadow: 0 14px 38px rgba(10, 22, 40, 0.08);
}

.service-detail-content h2 {
  font-family: var(--font-main);
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.25;
  color: #1f2430;
  margin-bottom: 14px;
}

.service-detail-content p {
  color: #2f3542;
  font-size: 16px;
  line-height: 1.75;
}

.service-detail-content p + p {
  margin-top: 12px;
}

.service-detail-content h3 {
  margin-top: 22px;
  margin-bottom: 14px;
  font-family: var(--font-main);
  font-size: 21px;
  color: #1f2430;
}

.service-detail-points {
  display: grid;
  gap: 10px;
}

.service-detail-points li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #2f3542;
}

.service-detail-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.service-detail-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.service-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #27456f;
}

.service-back-link:hover {
  color: #1e3656;
}

@media (max-width: 1023px) {
  .service-detail-page {
    padding: 78px 0;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-detail-content {
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .service-detail-page {
    padding: 64px 0;
  }

  .service-detail-content h2 {
    font-size: clamp(22px, 6.2vw, 30px);
  }

  .service-detail-content p {
    font-size: 14px;
    line-height: 1.68;
  }

  .service-detail-content h3 {
    font-size: 18px;
  }

  .service-detail-points li {
    font-size: 13px;
    line-height: 1.62;
  }
}

@media (max-width: 479px) {
  .service-detail-page {
    padding: 52px 0;
  }

  .service-detail-content {
    border-radius: 14px;
    padding: 22px 16px;
  }

  .service-detail-visual {
    border-radius: 14px;
  }

  .service-detail-actions {
    gap: 10px;
  }
}

/* Service Detail Sections */
.svc-detail-section {
  padding: 100px 0;
}

.svc-detail-light {
  background: var(--light);
}

.svc-detail-dark {
  background: var(--dark);
}

.svc-detail-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.svc-detail-card {
  display: flex;
  gap: 32px;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
  align-items: flex-start;
}

.svc-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.svc-detail-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.svc-detail-card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--orange);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.svc-detail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 18px;
  font-size: 28px;
}

.svc-detail-card-dark .svc-detail-icon {
  background: var(--orange);
  color: var(--dark);
}

.svc-detail-body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.svc-detail-card-dark .svc-detail-body h3 {
  color: var(--white);
}

.svc-detail-body p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.svc-detail-card-dark .svc-detail-body p {
  color: rgba(255, 255, 255, 0.6);
}

.svc-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.svc-features li {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.svc-features li i {
  color: var(--orange);
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.svc-detail-card-dark .svc-features li {
  color: rgba(255, 255, 255, 0.7);
}

/* Technologies */
.tech-section {
  padding: 100px 0;
  background: var(--white);
}

.tech-categories {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tech-category h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-category h3 i {
  color: var(--orange);
  font-size: 20px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--light);
  border: 1px solid var(--gray-border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--dark);
  color: var(--orange);
  border-color: var(--dark);
}

.tech-tag i {
  font-size: 16px;
  color: var(--orange);
}

.tech-tag:hover i {
  color: var(--orange);
}

/* ========== PORTFOLIO PAGE ========== */

/* Stats Bar */
.folio-stats-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(254, 205, 6, 0.12), transparent 42%),
    linear-gradient(180deg, #141414 0%, #1b1b1b 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.folio-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.folio-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.folio-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(2px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.folio-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 205, 6, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.folio-stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.folio-stat-num span {
  color: var(--orange);
  font-size: 28px;
}

.folio-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Featured Projects Section */
.folio-section {
  padding: 100px 0;
  background: var(--light);
}

/* Featured Hero Project */
.folio-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  margin-bottom: 48px;
  transition: all 0.4s;
}

.folio-featured:hover {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.folio-featured-reverse .folio-featured-img {
  order: 2;
}

.folio-featured-reverse .folio-featured-content {
  order: 1;
}

.folio-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.folio-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.folio-featured:hover .folio-featured-img img {
  transform: scale(1.05);
}

.folio-featured-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
}

.folio-category {
  display: inline-block;
  padding: 6px 16px;
  background: var(--orange);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.folio-featured-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.folio-featured-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.folio-featured-content p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 28px;
}

.folio-featured-content .svc-spotlight-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid #1f2f47;
  background: #1f2f47;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 22px rgba(31, 47, 71, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.folio-featured-content .svc-spotlight-link:hover {
  background: #2a3f5f;
  border-color: #2a3f5f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 47, 71, 0.3);
}

/* Metrics Row */
.folio-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.folio-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.folio-metric strong {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
}

.folio-metric span {
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tech Tags (shared) */
.folio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.folio-tech span {
  display: inline-block;
  padding: 5px 14px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* Project Cards Grid */
.folio-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.folio-card-v2 {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
}

.folio-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.folio-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.folio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.folio-card-v2:hover .folio-card-img img {
  transform: scale(1.08);
}

.folio-card-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.folio-card-body {
  padding: 28px 24px;
}

.folio-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.folio-card-body p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Process Section */
.folio-process {
  padding: 100px 0;
  background: var(--white);
}

.folio-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.folio-process-step {
  background: var(--light);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-border);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.folio-process-step::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s;
  transform-origin: left;
}

.folio-process-step:hover::before {
  transform: scaleX(1);
}

.folio-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.folio-process-num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.folio-process-step:hover .folio-process-num {
  opacity: 1;
}

.folio-process-step h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.folio-process-step p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* Page hero subtitle */
.page-hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Industries Section */
.ind-section {
  padding: 100px 0;
  background: var(--light);
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ind-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: all 0.35s ease;
}

.ind-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.ind-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--dark);
  color: var(--orange);
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
}

.ind-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
}

/* ========== CAREER PAGE ========== */
.career-section {
  padding: 100px 0;
  background: var(--white);
}

.career-openings {
  padding-bottom: 100px;
}

.career-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--orange);
  border-radius: 16px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  transition: all 0.35s ease;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.job-item:hover {
  background: var(--white);
  border-color: var(--orange);
  border-left-color: var(--orange);
  box-shadow: 0 16px 48px rgba(232, 160, 32, 0.12);
  transform: translateY(-4px);
}

.job-item-left h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}

.job-item-left h3 i {
  font-size: 16px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--orange);
  transform: translateX(-4px);
}

.job-item:hover h3 i {
  opacity: 1;
  transform: translateX(0);
}

.job-location {
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2px;
}

.job-item-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-text);
}

.job-detail i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1023px) {
  .job-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .job-item-left h3 {
    font-size: 18px;
  }

  .job-item-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .job-item {
    padding: 20px;
    gap: 16px;
  }

  .job-item-left h3 {
    font-size: 16px;
  }

  .job-item-right {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .job-detail {
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .job-detail i {
    display: none;
  }
}

@media (max-width: 479px) {
  .job-item {
    padding: 16px;
    gap: 12px;
  }

  .job-item-left h3 {
    font-size: 14px;
  }

  .job-item-right {
    grid-template-columns: 1fr;
  }

  .job-location {
    font-size: 12px;
  }

  .job-detail {
    font-size: 11px;
  }
}

.job-tags span:hover {
  background: var(--dark);
  color: var(--orange);
  border-color: var(--dark);
}

.job-details {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--gray-border);
  padding-top: 24px;
}

.job-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
}

.job-details li i {
  color: var(--orange);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.job-details li div {
  display: flex;
  flex-direction: column;
}

.job-details li strong {
  font-weight: 600;
  color: var(--dark);
  font-size: 13px;
}

.job-details li span {
  color: var(--gray-text);
  font-size: 13px;
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #e6ad00 0%, #f5c518 100%);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(230, 173, 0, 0.3);
  margin-top: 6px;
  align-self: flex-start;
}

.btn-apply:hover {
  background: linear-gradient(135deg, #f5c518 0%, #e6ad00 100%);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(230, 173, 0, 0.45);
  transform: translateY(-2px);
}

.btn-apply i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.btn-apply:hover i {
  transform: translateX(3px);
}

/* Why Join Us */
.career-why {
  padding: 100px 0;
  background: var(--light);
}

.career-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.career-perk {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--gray-border);
  text-align: left;
  transition: all 0.35s ease;
  overflow: hidden;
}

.career-perk:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
}

.perk-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
}

.career-perk-image {
  width: calc(100% + 56px);
  height: 180px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  margin: -36px -28px 24px;
  background: #eceff4;
}

.career-perk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.career-perk h3,
.career-perk h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.career-perk p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */

/* Extra Large (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-title {
    font-size: 80px;
  }

  .section-title {
    font-size: 48px;
  }

  .stat-card {
    min-width: 360px;
    padding: 26px 36px;
  }

  .stat-value {
    font-size: 58px;
  }
}

/* Large Desktop (1200–1399px) */
@media (max-width: 1399px) {
  .hero-title {
    font-size: 66px;
  }
}

/* Desktop (1024–1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 58px;
  }

  .hero-grid {
    gap: 32px;
  }

  .stat-card {
    min-width: 280px;
    padding: 20px 28px;
  }

  .stat-value {
    font-size: 44px;
  }

  .stat-value span {
    font-size: 28px;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 36px;
  }

  /* About page */
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About page */
  .about-image {
    aspect-ratio: auto;
  }

  .about-image img,
  .about-image video {
    height: auto;
  }

  /* Services page */
  .svc-features {
    grid-template-columns: 1fr 1fr;
  }

  /* Career page */
  .career-perks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-spotlight-list {
    padding-bottom: 120px;
    gap: 20px;
  }

  /* Portfolio page */
  .folio-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
  }

  .folio-stats-grid {
    gap: 24px;
  }

  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (768–1023px) */
@media (max-width: 1023px) {
  /* Header mobile nav */
  .header {
    padding: 0 20px;
  }

  .logo-img {
    height: 70px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }

  .header.scrolled .nav-links {
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }

  .header.scrolled .nav-links a {
    border-bottom: 1px solid var(--gray-border);
  }

  .menu-toggle {
    display: block;
  }

  .btn-talk {
    display: none;
  }

  /* Hero */
  .hero-title {
    font-size: 48px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    flex-direction: row;
    align-items: stretch;
  }

  .stat-card {
    min-width: auto;
    flex: 1;
  }

  .scroll-down {
    display: none;
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  /* Sections */
  .section-title {
    font-size: 36px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    aspect-ratio: auto;
  }

  .about-image img,
  .about-image video {
    height: auto;
  }

  .about-features {
    gap: 20px;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-grid,
  .why-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .career-perks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-card {
    padding: 28px 20px;
  }

  /* Page hero */
  .page-hero {
    padding: 150px 0 70px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  /* Sections */
  .about,
  .services,
  .products,
  .process,
  .why-us,
  .projects,
  .cta-section,
  .testimonials {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Contact page */
  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-card {
    flex-direction: column;
  }

  .contact-form {
    padding: 32px;
  }

  .contact-form h3 {
    font-size: 24px;
  }

  /* CTA */
  .cta-section .section-subtitle {
    max-width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-cta-actions {
    justify-content: center;
  }

  .footer-cta-text h3 {
    font-size: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  /* About page */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-tiles {
    grid-template-columns: 1fr 1fr;
  }

  .about-story-image {
    order: -1;
    max-height: 360px;
  }

  .mv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services page */
  .svc-detail-card {
    flex-direction: column;
    padding: 32px 28px;
  }

  .svc-detail-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 14px;
  }

  .svc-features {
    grid-template-columns: 1fr 1fr;
  }

  .cert-marquee-wrapper {
    padding: 0 20px 12px;
  }

  .svc-detail-section {
    padding: 80px 0;
  }

  .tech-section {
    padding: 80px 0;
  }

  .services-intro {
    padding: 60px 0 0;
  }

  .svc-spotlight-list {
    padding-bottom: 98px;
    gap: 18px;
  }

  .svc-spotlight-card {
    min-height: 300px;
    margin-bottom: 128px;
    border-radius: 16px;
  }

  .svc-spotlight-card:last-child {
    margin-bottom: 0;
  }

  .svc-spotlight-media {
    height: 300px;
    border-radius: 16px;
  }

  .svc-spotlight-overlay {
    left: 20px;
    right: 20px;
    top: 188px;
    bottom: auto;
    padding: 24px 22px 28px;
  }

  .svc-spotlight-overlay p {
    font-size: 14px;
    line-height: 1.7;
  }

  .svc-spotlight-link {
    margin-top: 20px;
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Portfolio page */
  .folio-featured {
    grid-template-columns: 1fr;
  }

  .folio-featured-reverse .folio-featured-img,
  .folio-featured-reverse .folio-featured-content {
    order: initial;
  }

  .folio-featured-img {
    min-height: 280px;
  }

  .folio-featured-content {
    padding: 32px 28px;
  }

  .folio-metrics {
    gap: 20px;
    flex-wrap: wrap;
  }

  .folio-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .folio-section {
    padding: 80px 0;
  }

  .folio-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .folio-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .folio-stat {
    padding: 22px 16px;
  }

  .folio-stat:not(:last-child)::after {
    display: none;
  }

  .folio-process {
    padding: 80px 0;
  }

  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .ind-section {
    padding: 80px 0;
  }

  /* Career page - Responsive handled in job-item styles */

  .career-why {
    padding: 80px 0;
  }

  /* Contact page */
  .contact-social-links a {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .map-section iframe {
    min-height: 350px;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-item {
    padding: 28px 24px;
  }
}

/* Small Tablet (600–767px) */
@media (max-width: 767px) {
  .logo-img {
    height: 60px;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: 75vh;
  }

  .hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }

  .hero-right {
    flex-direction: column;
  }

  .stat-card {
    min-width: auto;
    flex: auto;
  }

  .stat-value {
    font-size: 42px;
  }

  .stat-value span {
    font-size: 26px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .career-grid {
    grid-template-columns: 1fr;
  }

  .career-perks-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 28px) / 2);
    padding: 32px 24px;
  }

  .testi-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .service-card h3,
  .product-card h3,
  .process-card h3,
  .project-card h3,
  .why-card h3 {
    font-size: 18px;
  }

  .about-image {
    height: auto;
  }

  .about-image img,
  .about-image video {
    height: auto;
  }

  .about-feature-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .product-tags,
  .project-tags {
    gap: 6px;
  }

  .product-tag,
  .project-tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .industries-list {
    gap: 12px;
  }

  .industry-pill {
    padding: 7px 16px;
    font-size: 12px;
  }

  .page-hero {
    padding: 130px 0 60px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    padding: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-main {
    padding: 48px 0 40px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand .logo {
    justify-content: center;
  }

  .footer-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-col {
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  /* About page */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-tiles {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .story-tile {
    padding: 16px 14px;
  }

  .about-story-image {
    order: -1;
    max-height: 300px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mv-card {
    padding: 36px 28px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .cert-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Services page */
  .svc-detail-card {
    flex-direction: column;
    padding: 28px 24px;
  }

  .svc-detail-body h3 {
    font-size: 20px;
  }

  .svc-features {
    grid-template-columns: 1fr;
  }

  .tech-tags {
    gap: 10px;
  }

  .tech-tag {
    padding: 8px 16px;
    font-size: 13px;
  }

  .svc-spotlight-card {
    min-height: 240px;
    margin-bottom: 98px;
  }

  .svc-spotlight-card:last-child {
    margin-bottom: 0;
  }

  .svc-spotlight-media {
    height: 240px;
    border-radius: 14px;
  }

  .svc-spotlight-overlay {
    left: 14px;
    right: 14px;
    top: 152px;
    bottom: auto;
    padding: 16px 12px 16px;
  }

  .svc-spotlight-overlay h3 {
    font-size: clamp(18px, 5.8vw, 24px);
  }

  .svc-spotlight-overlay p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
  }

  .svc-spotlight-link {
    font-size: 12px;
    padding: 8px 12px;
    margin-top: 10px;
  }

  .svc-spotlight-link i {
    font-size: 12px;
  }

  /* Portfolio page */
  .folio-grid-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .folio-card-img {
    height: 180px;
  }

  .folio-card-body h3 {
    font-size: 18px;
  }

  .folio-featured-content h3 {
    font-size: 24px;
  }

  .folio-metrics {
    gap: 20px;
  }

  .folio-process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .folio-process-step {
    padding: 28px 20px;
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ind-card {
    padding: 28px 20px;
  }

  .ind-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  /* Career page responsive - Handled in job-item styles */

  .career-perk {
    padding: 28px 20px;
  }

  .perk-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  /* Contact page */
  .contact-info-card {
    padding: 18px;
  }

  .contact-info-card i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .contact-info-card h4 {
    font-size: 14px;
  }

  .contact-info-card p,
  .contact-info-card a {
    font-size: 13px;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .faq-item {
    padding: 24px 20px;
  }

  .faq-item h4 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 13px;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 13px;
    gap: 8px;
  }

  /* Floating pill */
  .floating-pill {
    bottom: 20px;
    right: 20px;
  }

  .pill-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Mobile (480–599px) */
@media (max-width: 599px) {
  .container {
    padding: 0 16px;
  }

  .stat-card {
    min-width: auto;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 28px 20px;
  }

  .testi-track {
    gap: 20px;
  }

  .testi-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .hero {
    padding: 90px 0 50px;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 28px;
    letter-spacing: -0.3px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-divider {
    width: 80px;
    margin-bottom: 20px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 13px;
  }

  .hero-link {
    font-size: 13px;
  }

  .stat-card {
    padding: 18px 22px;
    gap: 20px;
    border-radius: 12px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-value span {
    font-size: 22px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-badge {
    font-size: 11px;
    padding: 5px 14px;
  }

  .service-card,
  .product-card,
  .process-card,
  .project-card,
  .why-card,
  .testimonial-card {
    padding: 28px 20px;
  }

  .service-icon,
  .product-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .service-image {
    height: 160px;
    width: calc(100% + 40px);
    margin: -28px -20px 20px;
  }

  .product-image {
    height: 160px;
    width: calc(100% + 40px);
    margin: -28px -20px 20px;
  }

  .service-card h3,
  .product-card h3 {
    font-size: 17px;
  }

  .service-card p,
  .product-card p,
  .process-card p,
  .project-card p,
  .why-card p,
  .testimonial-card blockquote {
    font-size: 13px;
  }

  .process-step {
    font-size: 11px;
    padding: 3px 12px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .why-card .sub-label {
    font-size: 12px;
  }

  .project-category {
    font-size: 10px;
    padding: 3px 10px;
  }

  .testimonial-quote {
    font-size: 28px;
  }

  .testimonial-author {
    gap: 10px;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .author-info h4 {
    font-size: 14px;
  }

  .author-info span {
    font-size: 12px;
  }

  .industries {
    padding: 40px 0;
  }

  .industries-list {
    gap: 10px;
  }

  .industry-pill {
    padding: 6px 14px;
    font-size: 12px;
  }

  .about,
  .services,
  .products,
  .process,
  .why-us,
  .projects,
  .cta-section,
  .testimonials {
    padding: 60px 0;
  }

  .cta-section .section-title {
    font-size: 24px;
  }

  .btn-cta {
    padding: 14px 32px;
    font-size: 14px;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero h1 {
    font-size: 28px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-form h3 {
    font-size: 22px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 13px;
  }

  .btn-submit {
    padding: 12px 28px;
    font-size: 13px;
  }

  /* About page */
  .about-story {
    padding: 60px 0;
  }

  .about-story-content p {
    font-size: 14px;
  }

  .mv-section {
    padding: 60px 0;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .mv-card h3 {
    font-size: 22px;
  }

  .values-section,
  .cert-section,
  .team-section {
    padding: 60px 0;
  }

  .values-grid,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-marquee-wrapper {
    padding: 0 16px 12px;
  }

  .cert-marquee-item {
    min-width: 190px;
    padding: 24px 28px;
  }

  .cert-marquee-item img {
    height: 72px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-avatar {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .value-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
    border-radius: 12px;
  }

  .value-image {
    width: calc(100% + 40px);
    height: 160px;
    margin: -28px -20px 20px;
  }

  .cert-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    border-radius: 12px;
  }

  /* Clients reference */
  .clients-reference-section {
    padding: 50px 0 56px;
  }

  .clients-reference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ref-client-card {
    min-height: 132px;
    padding: 10px;
  }

  .ref-client-card img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .clients-reference-head p {
    font-size: 13px;
  }

  .clients-reference-head h2 {
    font-size: clamp(28px, 8vw, 42px);
  }

  /* Quality banner */
  .quality-reference-head {
    padding: 32px 16px 20px;
  }

  .quality-reference-head p {
    font-size: clamp(16px, 3.5vw, 24px);
  }

  .quality-reference-head h2 {
    font-size: clamp(22px, 4.5vw, 34px);
  }

  .quality-reference-image img {
    height: 240px;
  }

  /* Certifications */
  .cert-reference-section {
    padding: 40px 0 48px;
  }

  .cert-cascade-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin-left: 0 !important;
    margin-top: 20px;
  }

  .cert-cascade-row:first-child {
    margin-top: 0;
  }

  .cert-cascade-line {
    display: none;
  }

  .cert-cascade-badge {
    width: 85px;
    height: 85px;
    order: 1;
  }

  .cert-cascade-label {
    text-align: center;
    padding: 0;
    order: 2;
  }

  .cert-cascade-label:empty {
    display: none;
  }

  .cert-label-left,
  .cert-label-right {
    text-align: center;
    padding: 0;
  }

  .cert-cascade-label strong {
    font-size: 13px;
  }

  .cert-cascade-label span {
    font-size: 11px;
  }

  .story-tile h3 {
    font-size: 16px;
  }

  .story-tile p {
    font-size: 13px;
  }

  .value-card {
    padding: 24px 18px;
  }

  .value-card h3 {
    font-size: 16px;
  }

  .value-card p {
    font-size: 13px;
  }

  /* Services page */
  .svc-detail-section {
    padding: 60px 0;
  }

  .svc-detail-card {
    padding: 24px 20px;
    gap: 20px;
  }

  .svc-detail-icon {
    width: 52px;
    height: 52px;
    font-size: 22px;
    border-radius: 12px;
  }

  .svc-detail-body h3 {
    font-size: 18px;
  }

  .svc-detail-body p {
    font-size: 14px;
  }

  .svc-features li {
    font-size: 13px;
  }

  .tech-section {
    padding: 60px 0;
  }

  .tech-category h3 {
    font-size: 18px;
  }

  .tech-tag {
    padding: 7px 14px;
    font-size: 12px;
  }

  .services-intro {
    padding: 50px 0 0;
  }

  .svc-spotlight-list {
    padding-bottom: 72px;
    gap: 14px;
  }

  .svc-spotlight-card {
    min-height: 220px;
    margin-bottom: 84px;
    border-radius: 12px;
  }

  .svc-spotlight-card:last-child {
    margin-bottom: 0;
  }

  .svc-spotlight-media {
    height: 220px;
    border-radius: 12px;
  }

  .svc-spotlight-overlay {
    left: 10px;
    right: 10px;
    top: 136px;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .svc-spotlight-overlay h3 {
    font-size: clamp(17px, 6vw, 22px);
  }

  .svc-spotlight-overlay p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.55;
  }

  .svc-spotlight-link {
    margin-top: 10px;
    font-size: 11px;
    padding: 7px 11px;
  }

  /* Portfolio page */
  .folio-section {
    padding: 60px 0;
  }

  .folio-grid-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .folio-card-img {
    height: 200px;
  }

  .folio-card-body {
    padding: 22px 20px;
  }

  .folio-card-body h3 {
    font-size: 17px;
  }

  .folio-card-body p {
    font-size: 13px;
  }

  .folio-featured-content {
    padding: 28px 24px;
  }

  .folio-featured-content h3 {
    font-size: 22px;
  }

  .folio-featured-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .folio-featured-content .svc-spotlight-link {
    margin-top: 18px;
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 10px;
  }

  .folio-featured-img {
    min-height: 220px;
  }

  .folio-metrics {
    gap: 16px;
    padding: 16px 0;
  }

  .folio-metric strong {
    font-size: 20px;
  }

  .folio-metric span {
    font-size: 11px;
  }

  .folio-featured-content p {
    font-size: 14px;
  }

  .folio-metrics {
    flex-wrap: wrap;
    gap: 16px;
  }

  .folio-process {
    padding: 60px 0;
  }

  .folio-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .folio-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .folio-stat {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .folio-stat-num {
    font-size: 32px;
  }

  .folio-stat-num span {
    font-size: 22px;
  }

  .ind-section {
    padding: 60px 0;
  }

  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ind-card {
    padding: 24px 16px;
  }

  .ind-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .ind-card h3 {
    font-size: 15px;
  }

  /* Career page */
  .career-section {
    padding: 60px 0;
  }

  .career-openings {
    padding-bottom: 60px;
  }



  .job-details li {
    font-size: 12px;
  }

  .btn-apply {
    padding: 10px 22px;
    font-size: 12px;
  }

  .career-why {
    padding: 60px 0;
  }

  .career-perk {
    padding: 24px 16px;
  }

  .career-perk-image {
    width: calc(100% + 32px);
    height: 154px;
    margin: -24px -16px 18px;
  }

  .perk-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .career-perk h3 {
    font-size: 16px;
  }

  .career-perk p {
    font-size: 13px;
  }

  /* Contact page */
  .contact-info-card {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .contact-info-card i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .contact-info-card h4 {
    font-size: 13px;
  }

  .contact-info-card p,
  .contact-info-card a {
    font-size: 12px;
  }

  .contact-social-links a {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 10px;
  }

  .map-card iframe {
    min-height: 250px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-item {
    padding: 22px 18px;
  }

  .faq-icon {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .faq-item h4 {
    font-size: 15px;
  }

  .faq-item p {
    font-size: 12px;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 12px;
    gap: 6px;
  }

  .footer-cta-inner {
    padding: 36px 0;
  }

  .footer-cta-text h3 {
    font-size: 22px;
  }

  .footer-cta-text p {
    font-size: 14px;
  }

  .footer-cta-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .footer-cta-actions {
    gap: 12px;
  }

  .footer-main {
    padding: 40px 0 32px;
  }

  .footer-social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .footer-legal-links {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* Small Mobile (380–479px) */
@media (max-width: 479px) {
  .header {
    padding: 0 16px;
  }

  .logo-img {
    height: 52px;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .stat-card {
    padding: 14px 18px;
    gap: 14px;
    border-radius: 10px;
  }

  .stat-label {
    font-size: 11px;
  }

  .stat-value {
    font-size: 28px;
  }

  .stat-value span {
    font-size: 18px;
  }

  .section-title {
    font-size: 24px;
  }

  .about-feature h4 {
    font-size: 15px;
  }

  .about-feature p {
    font-size: 13px;
  }

  .about-feature-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 10px;
  }

  .about-image {
    height: auto;
  }

  .about-image img,
  .about-image video {
    height: auto;
  }

  .service-card h3,
  .product-card h3,
  .process-card h3,
  .project-card h3,
  .why-card h3 {
    font-size: 16px;
  }

  .service-card p,
  .product-card p,
  .process-card p,
  .project-card p {
    font-size: 12px;
  }

  .page-hero h1 {
    font-size: 24px;
  }

  .contact-info-card {
    flex-direction: column;
    gap: 12px;
  }

  .contact-info-card i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .industries-list {
    gap: 8px;
  }

  .industry-pill {
    padding: 5px 12px;
    font-size: 11px;
  }

  .industry-pill i {
    font-size: 12px;
  }

  .footer-cta-text h3 {
    font-size: 20px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-legal-links a {
    font-size: 12px;
  }

  /* About page */
  .mv-card {
    padding: 28px 20px;
  }

  .mv-card h3 {
    font-size: 20px;
  }

  .mv-card-head {
    margin-bottom: 16px;
  }

  .mv-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .mv-points li {
    font-size: 13px;
    padding-left: 20px;
  }

  .value-card,
  .cert-card,
  .team-card {
    padding: 28px 20px;
  }

  .value-card h3,
  .cert-card h3,
  .team-card h3 {
    font-size: 17px;
  }

  /* Clients reference */
  .clients-reference-grid {
    gap: 10px;
  }

  .ref-client-card {
    min-height: 120px;
    padding: 8px;
    border-radius: 10px;
  }

  .ref-client-card img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .clients-reference-head h2 {
    font-size: clamp(24px, 7.5vw, 36px);
  }

  /* Quality banner */
  .quality-reference-head {
    padding: 28px 14px 18px;
  }

  .quality-reference-head p {
    font-size: clamp(15px, 3.5vw, 22px);
  }

  .quality-reference-head h2 {
    font-size: clamp(20px, 4.5vw, 30px);
  }

  .quality-reference-image img {
    height: 200px;
  }

  /* Certifications */
  .cert-reference-section {
    padding: 36px 0 40px;
  }

  .cert-reference-head {
    margin-bottom: 22px;
  }

  .cert-reference-head h2 {
    font-size: clamp(20px, 5.5vw, 30px);
  }

  .cert-cascade-badge {
    width: 80px;
    height: 80px;
    order: 1;
  }

  .cert-cascade-label {
    order: 2;
  }

  .cert-cascade-label:empty {
    display: none;
  }

  .cert-cascade-label strong {
    font-size: 12px;
  }

  .cert-cascade-label span {
    font-size: 11px;
  }

  .story-tile {
    padding: 14px 12px;
  }

  .story-tile h3 {
    font-size: 15px;
  }

  .about-story-image {
    max-height: 260px;
    min-height: 240px;
  }

  /* Services page */
  .svc-detail-card {
    padding: 22px 16px;
    gap: 16px;
  }

  .svc-detail-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 10px;
  }

  .svc-detail-body h3 {
    font-size: 17px;
  }

  .svc-detail-body p {
    font-size: 13px;
  }

  .svc-features li {
    font-size: 12px;
  }

  .tech-tag {
    padding: 6px 12px;
    font-size: 11px;
  }

  .svc-spotlight-list {
    padding-bottom: 62px;
    gap: 12px;
  }

  .svc-spotlight-card {
    min-height: 200px;
    margin-bottom: 72px;
    border-radius: 11px;
  }

  .svc-spotlight-card:last-child {
    margin-bottom: 0;
  }

  .svc-spotlight-media {
    height: 200px;
    border-radius: 11px;
  }

  .svc-spotlight-overlay {
    left: 9px;
    right: 9px;
    top: 122px;
    padding: 12px 10px;
    border-radius: 11px;
  }

  .svc-spotlight-overlay h3 {
    font-size: clamp(16px, 6.2vw, 20px);
  }

  .svc-spotlight-overlay p {
    font-size: 11px;
    line-height: 1.5;
  }

  .svc-spotlight-link {
    font-size: 11px;
    padding: 7px 10px;
  }

  /* Portfolio page */
  .folio-card-body {
    padding: 20px 16px;
  }

  .folio-card-body h3 {
    font-size: 16px;
  }

  .folio-featured-content h3 {
    font-size: 20px;
  }

  .folio-featured-content {
    padding: 24px 18px;
  }

  .folio-featured-content p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .folio-featured-content .svc-spotlight-link {
    margin-top: 14px;
    padding: 8px 13px;
    font-size: 12px;
    border-radius: 9px;
    gap: 8px;
  }

  .folio-featured-img {
    min-height: 190px;
  }

  .folio-featured-overlay {
    top: 14px;
    left: 14px;
  }

  .folio-metrics {
    gap: 12px;
    margin-bottom: 20px;
    padding: 14px 0;
  }

  .folio-metric {
    min-width: calc(50% - 6px);
  }

  .folio-category {
    padding: 5px 12px;
    font-size: 10px;
  }

  .folio-tech span {
    font-size: 11px;
    padding: 4px 10px;
  }

  .ind-card {
    padding: 20px 14px;
  }

  .ind-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
    margin-bottom: 14px;
  }

  .ind-card h3 {
    font-size: 14px;
  }

  .ind-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Career page - Responsive handled in job-item styles */

  .career-perk {
    padding: 22px 14px;
  }

  .perk-icon {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  /* Contact page */
  .contact-info-card {
    padding: 14px;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .faq-item {
    padding: 20px 16px;
  }

  .faq-icon {
    font-size: 16px;
  }

  .faq-item h4 {
    font-size: 14px;
  }

  .faq-item p {
    font-size: 11px;
  }

  .breadcrumb {
    font-size: 11px;
  }
}

/* Extra Small (<380px) */
@media (max-width: 379px) {
  .container {
    padding: 0 12px;
  }

  .header {
    padding: 0 12px;
  }

  .logo-img {
    height: 44px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .hero-divider {
    width: 60px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-link {
    font-size: 12px;
  }

  .stat-card {
    padding: 12px 14px;
    gap: 12px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stat-value {
    font-size: 24px;
  }

  .stat-value span {
    font-size: 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-badge {
    font-size: 10px;
    padding: 4px 12px;
  }

  .about,
  .services,
  .products,
  .process,
  .why-us,
  .projects,
  .cta-section,
  .testimonials {
    padding: 50px 0;
  }

  .service-card,
  .product-card,
  .process-card,
  .project-card,
  .why-card,
  .testimonial-card {
    padding: 22px 16px;
  }

  .page-hero h1 {
    font-size: 22px;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .btn-cta {
    padding: 12px 24px;
    font-size: 13px;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-social-link {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .footer-cta-text h3 {
    font-size: 18px;
  }

  .footer-cta-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-cta-actions .footer-cta-btn {
    justify-content: center;
    width: 100%;
  }

  .footer-bottom {
    padding: 18px 0;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .footer-legal-links a {
    font-size: 11px;
  }

  .footer-social-link {
    font-size: 16px;
  }

  .floating-pill {
    bottom: 14px;
    right: 14px;
    padding: 4px;
    gap: 6px;
  }

  .pill-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  /* Career page - Responsive handled in job-item styles */
  .career-openings {
    padding-bottom: 40px;
  }

  .career-perk {
    padding: 20px 12px;
  }

  .career-perk-image {
    width: calc(100% + 24px);
    height: 140px;
    margin: -20px -12px 16px;
  }

  .career-perk h3 {
    font-size: 14px;
  }

  .career-perk p {
    font-size: 12px;
  }

  /* Contact page */
  .contact-info-card i {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .contact-social-links a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .contact-form {
    padding: 18px 12px;
  }

  .contact-form h3 {
    font-size: 18px;
  }

  .form-subtitle {
    font-size: 12px;
  }

  .form-group label {
    font-size: 11px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 9px 12px;
    font-size: 12px;
  }

  .btn-submit {
    padding: 10px 24px;
    font-size: 12px;
  }

  .map-card iframe {
    min-height: 200px;
  }

  .faq-item {
    padding: 18px 14px;
  }

  .faq-item h4 {
    font-size: 13px;
  }

  .faq-item p {
    font-size: 11px;
  }

  .breadcrumb {
    font-size: 10px;
    gap: 4px;
  }

  /* About page */
  .mv-card {
    padding: 22px 16px;
  }

  .mv-card h3 {
    font-size: 18px;
  }

  .mv-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .value-card,
  .cert-card,
  .team-card {
    padding: 22px 14px;
  }

  .value-icon,
  .cert-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .value-image {
    width: calc(100% + 24px);
    height: 148px;
    margin: -18px -12px 18px;
  }

  .team-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  /* About page */
  .about-story {
    padding: 46px 0;
  }

  .about-story-image {
    max-height: 220px;
    min-height: 200px;
  }

  .story-tile {
    padding: 12px 10px;
  }

  .story-tile h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .story-tile p {
    font-size: 12px;
  }

  .mv-section {
    padding: 46px 0;
  }

  .mv-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .mv-card h3 {
    font-size: 16px;
  }

  .mv-points li {
    font-size: 12px;
  }

  .values-section {
    padding: 46px 0;
  }

  .value-card p {
    font-size: 12px;
  }

  /* Clients reference */
  .clients-reference-section {
    padding: 36px 0 42px;
  }

  .clients-reference-head h2 {
    font-size: clamp(22px, 7vw, 32px);
  }

  .clients-reference-head p {
    font-size: 12px;
  }

  .ref-client-card {
    min-height: 108px;
    padding: 8px;
    border-radius: 8px;
  }

  .ref-client-card img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  /* Quality banner */
  .quality-reference-head {
    padding: 24px 12px 16px;
  }

  .quality-reference-head p {
    font-size: clamp(14px, 3.8vw, 20px);
  }

  .quality-reference-head h2 {
    font-size: clamp(18px, 5vw, 26px);
  }

  .quality-reference-image img {
    height: 180px;
  }

  /* Certifications */
  .cert-reference-section {
    padding: 32px 0 36px;
  }

  .cert-reference-head {
    margin-bottom: 18px;
  }

  .cert-reference-head p {
    font-size: 12px;
  }

  .cert-reference-head h2 {
    font-size: clamp(18px, 5vw, 26px);
  }

  .cert-cascade-badge {
    width: 72px;
    height: 72px;
    order: 1;
  }

  .cert-cascade-label {
    order: 2;
  }

  .cert-cascade-label:empty {
    display: none;
  }

  .cert-cascade-row {
    margin-top: 14px;
  }

  .cert-cascade-label strong {
    font-size: 11px;
  }

  .cert-cascade-label span {
    font-size: 10px;
  }

  /* Services page */
  .svc-detail-card {
    padding: 18px 12px;
    gap: 14px;
  }

  .svc-detail-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .svc-detail-body h3 {
    font-size: 15px;
  }

  .svc-detail-body p {
    font-size: 12px;
  }

  .svc-features li {
    font-size: 11px;
  }

  .tech-tag {
    padding: 5px 10px;
    font-size: 10px;
  }

  .svc-spotlight-list {
    padding-bottom: 54px;
    gap: 10px;
  }

  .svc-spotlight-card {
    min-height: 182px;
    margin-bottom: 62px;
    border-radius: 10px;
  }

  .svc-spotlight-card:last-child {
    margin-bottom: 0;
  }

  .svc-spotlight-media {
    height: 182px;
    border-radius: 10px;
  }

  .svc-spotlight-overlay {
    left: 8px;
    right: 8px;
    top: 108px;
    padding: 10px 9px;
    border-radius: 10px;
  }

  .svc-spotlight-overlay h3 {
    font-size: clamp(15px, 6.4vw, 18px);
  }

  .svc-spotlight-overlay p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.45;
  }

  .svc-spotlight-link {
    margin-top: 8px;
    font-size: 10px;
    padding: 6px 9px;
  }

  /* Portfolio page */
  .folio-card-body {
    padding: 16px 12px;
  }

  .folio-card-body h3 {
    font-size: 14px;
  }

  .folio-card-body p {
    font-size: 11px;
  }

  .folio-card-img {
    height: 160px;
  }

  .folio-stat-num {
    font-size: 28px;
  }

  .folio-stat-num span {
    font-size: 18px;
  }

  .folio-stat-label {
    font-size: 12px;
  }

  .folio-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .folio-stat {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .folio-featured-content h3 {
    font-size: 18px;
  }

  .folio-process-num {
    font-size: 28px;
  }

  .folio-process-step h4 {
    font-size: 16px;
  }

  .folio-process-step p {
    font-size: 12px;
  }

  .ind-card {
    padding: 16px 12px;
  }

  .ind-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .ind-card h3 {
    font-size: 12px;
  }

  /* Page hero */
  .page-hero {
    padding: 120px 0 50px;
  }

  .page-hero h1 {
    font-size: 20px;
  }

  /* Section spacing */
  .about,
  .services,
  .products,
  .process,
  .why-us,
  .projects,
  .cta-section,
  .testimonials {
    padding: 40px 0;
  }

  .section-title {
    font-size: 20px;
  }

  .section-badge {
    font-size: 9px;
    padding: 3px 10px;
  }

  .about-image {
    height: auto;
  }

  .about-image img,
  .about-image video {
    height: auto;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-legal a {
    font-size: 11px;
  }

  .footer-office p {
    font-size: 11px;
  }
}

/* Ultra Small (280–319px) */
@media (max-width: 319px) {
  .container {
    padding: 0 8px;
  }

  .hero-title {
    font-size: 20px;
  }

  .section-title {
    font-size: 18px;
  }

  .page-hero h1 {
    font-size: 18px;
  }

  .stat-card {
    padding: 10px 12px;
  }

  .stat-value {
    font-size: 20px;
  }

  .stat-label {
    font-size: 9px;
  }

  .folio-grid-v2,
  .ind-grid {
    grid-template-columns: 1fr;
  }

  .svc-spotlight-list {
    padding-bottom: 48px;
    gap: 8px;
  }

  .svc-spotlight-card {
    min-height: 168px;
    margin-bottom: 54px;
  }

  .svc-spotlight-card:last-child {
    margin-bottom: 0;
  }

  .svc-spotlight-media {
    height: 168px;
  }

  .svc-spotlight-overlay {
    left: 7px;
    right: 7px;
    top: 98px;
    padding: 9px 8px;
  }

  .svc-spotlight-overlay h3 {
    font-size: clamp(14px, 6.8vw, 17px);
  }

  .svc-spotlight-overlay p {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.4;
  }

  .svc-spotlight-link {
    margin-top: 7px;
    font-size: 10px;
    padding: 5px 8px;
  }

  .service-card,
  .product-card,
  .process-card,
  .project-card,
  .why-card,
  .testimonial-card {
    padding: 18px 12px;
  }

  .service-image {
    width: calc(100% + 24px);
    height: 148px;
    margin: -18px -12px 18px;
  }

  .product-image {
    width: calc(100% + 24px);
    height: 148px;
    margin: -18px -12px 18px;
  }

  .contact-form {
    padding: 16px 10px;
  }

  .btn-cta {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* About page */
  .about-story {
    padding: 36px 0;
  }

  .about-story-content p {
    font-size: 12px;
  }

  .about-story-image {
    max-height: 180px;
    min-height: 160px;
  }

  .story-tile h3 {
    font-size: 13px;
  }

  .story-tile p {
    font-size: 11px;
  }

  .mv-section {
    padding: 36px 0;
  }

  .mv-card {
    padding: 18px 14px;
  }

  .mv-card h3 {
    font-size: 15px;
  }

  .mv-points li {
    font-size: 11px;
  }

  .values-section {
    padding: 36px 0;
  }

  .value-card {
    padding: 18px 12px;
  }

  .value-card h3 {
    font-size: 14px;
  }

  .value-card p {
    font-size: 11px;
  }

  .value-image {
    width: calc(100% + 24px);
    height: 130px;
    margin: -18px -12px 14px;
  }

  /* Clients reference */
  .clients-reference-section {
    padding: 30px 0 36px;
  }

  .clients-reference-head h2 {
    font-size: clamp(18px, 6.5vw, 26px);
  }

  .ref-client-card {
    min-height: 96px;
    padding: 6px;
  }

  .ref-client-card img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  /* Quality banner */
  .quality-reference-head {
    padding: 20px 8px 12px;
  }

  .quality-reference-head p {
    font-size: clamp(13px, 4vw, 18px);
  }

  .quality-reference-head h2 {
    font-size: clamp(16px, 5.5vw, 22px);
  }

  .quality-reference-image img {
    height: 150px;
  }

  /* Certifications */
  .cert-reference-section {
    padding: 28px 0 32px;
  }

  .cert-reference-head {
    margin-bottom: 14px;
  }

  .cert-reference-head h2 {
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .cert-cascade-badge {
    width: 64px;
    height: 64px;
    order: 1;
  }

  .cert-cascade-label {
    order: 2;
  }

  .cert-cascade-label:empty {
    display: none;
  }

  .cert-cascade-row {
    margin-top: 12px;
  }
}

/* Landscape phones */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: auto;
    padding: 90px 0 50px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-right {
    flex-direction: column;
    gap: 10px;
  }

  .stat-card {
    padding: 12px 16px;
    gap: 12px;
  }

  .stat-value {
    font-size: 28px;
  }

  .about,
  .services,
  .products,
  .process,
  .why-us,
  .projects,
  .cta-section,
  .testimonials {
    padding: 50px 0;
  }
}

/* Global responsive safety rules */
img,
video,
iframe {
  max-width: 100%;
}

iframe {
  border: 0;
}

@media (max-width: 767px) {
  .footer-cta-actions {
    width: 100%;
  }

  .footer-cta-actions .footer-cta-btn {
    justify-content: center;
    width: 100%;
  }
}

/* High-DPI / Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print */
@media print {
  .header,
  .floating-pill,
  .menu-toggle,
  .hero-btns,
  .scroll-down,
  .newsletter-btn,
  .footer-newsletter {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .hero {
    background: #eee;
    min-height: auto;
    padding: 40px 0;
  }

  .hero::before {
    display: none;
  }

  .hero-title {
    color: #000;
    font-size: 28pt;
  }

  .hero-subtitle {
    color: #333;
  }

  .section-title {
    font-size: 18pt;
  }

  a {
    color: #000;
  }

  .service-card,
  .product-card,
  .process-card,
  .project-card,
  .why-card,
  .testimonial-card {
    break-inside: avoid;
    border: 1px solid #ccc;
  }
}
