/* =========================================================
   MECTECH / AMPERON ENGINEERING — RED & DARK THEME
   Vibrant industrial red, dark slate accents, glassmorphism header,
   clipped corners, smooth animations, responsive typography.
   ========================================================= */

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

:root {
  /* Core Theme Colors from Mectech Projects */
  --primary: #db2329;
  --primary-hover: #af1d21;
  --primary-light: rgba(219, 35, 41, 0.08);
  --primary-glow: rgba(219, 35, 41, 0.25);

  --secondary: #2a2c38;
  --dark-bg: #14161a;
  --dark-card: #1e2128;
  --dark-border: #2e3340;

  --heading-color: #0d1117;
  --body-color: #4a5568;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;

  --white: #ffffff;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fira Code', monospace;

  /* Container & Radius */
  --max-width: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  --shadow-red: 0 10px 30px -5px rgba(177, 67, 62, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--body-color);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Selection */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* Headings & Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.95rem;
}

.sub-title {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
}

.sub-title::before {
  content: "// ";
  color: var(--primary);
}

.lede {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 65ch;
}

/* Cut Corner Effect (Opal Clip Box Theme Style) */
.clip-corner {
  position: relative;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.clip-corner-left {
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

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

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

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

/* =========================================================
   Top Contact Bar & Header Navigation
   ========================================================= */
.top-bar {
  background: #db2329;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-info a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff;
}

.top-bar-info a:hover {
  opacity: 0.9;
}

.top-bar-info i,
.top-bar-info svg {
  color: #ffffff;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--dark-bg);
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(177, 67, 62, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--body-color);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--heading-color);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  /* background: var(--primary); */
  border-radius: 2px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

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

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--primary);
  padding-left: 1.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-bg);
  cursor: pointer;
}

/* =========================================================
   Hero Slider / Section
   ========================================================= */
.hero-slider {
  position: relative;
  background: var(--dark-bg);
  color: var(--white);
  overflow: hidden;
  min-height: 650px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(52 54 59 / 59%) 0%, rgb(15 17 21 / 24%) 60%, rgba(15, 17, 21, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title span {
  color: var(--primary);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}

.hero-btn-prev,
.hero-btn-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.hero-btn-prev:hover,
.hero-btn-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Trust / Stats Strip */
.trust-strip {
  background: #0c0c0c;
  color: var(--white);
  padding: 2.2rem 0;
  border-bottom: 3px solid var(--primary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item h3 {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

/* =========================================================
   Sections & Component Styling
   ========================================================= */
section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-head.left-align {
  text-align: left;
  margin-left: 0;
}

.section-head h2 {
  margin-top: 0.25rem;
}

/* Who We Are / About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  min-height: 380px;
}

.about-badge-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
}

.about-badge-overlay .years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-overlay .label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Vision & Mission Cards */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.vm-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

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

.vm-card h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.vm-card h4 i {
  color: var(--primary);
}

/* Services Featured Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-size: 1.25rem;
}

.service-content {
  padding: 2rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.service-content p {
  color: var(--body-color);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-link:hover {
  color: var(--primary-hover);
  gap: 0.8rem;
}

/* Why Choose Us Feature Items */
.why-section {
  background: var(--light-bg);
  padding: 5.5rem 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--white);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(177, 67, 62, 0.2);
}

.why-card:hover::before {
  background: var(--primary);
}

.why-card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.why-icon {
  width: 54px;
  height: 54px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  margin: 0;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.why-card-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #cbd5e1;
  transition: var(--transition);
}

.why-card:hover .why-card-num {
  color: var(--primary);
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--heading-color);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--body-color);
  line-height: 1.6;
  margin: 0;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--primary);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-text h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

/* Quality Services Section (Exact Reference Design) */
.services-pure-section {
  padding: 5rem 0 5.5rem 0;
  background-color: #ffffff;
}

.services-pure-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-pure-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.services-pure-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 0.25rem;
  letter-spacing: -0.02em;
}

.services-pure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .services-pure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-pure-grid {
    grid-template-columns: 1fr;
  }
}

.service-pure-card {
  position: relative;
  display: block;
  height: 310px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  background: #000000;
}

.service-pure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-pure-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 45%, transparent 70%);
  z-index: 1;
  transition: background 0.3s ease;
}

.service-pure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.service-pure-card:hover img {
  transform: scale(1.07);
}

.service-pure-card:hover::after {
  background: linear-gradient(to top, rgba(177, 67, 62, 0.92) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 75%);
}

.service-pure-text {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}

.service-pure-text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.18);
color: var(--white);
padding: 0.35rem 0.85rem;
border-radius: 30px;
font-family: var(--font-heading);
font-weight: 700;
font-size: 0.85rem;
display: flex;
align-items: center;
gap: 0.4rem;
transition: all 0.35s ease;
}

.service-tile-card:hover .service-number-badge {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Content Bottom */
.service-tile-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.service-tile-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transition: transform 0.35s ease;
}

.service-tile-card:hover .service-tile-title {
  transform: translateY(-4px);
}

/* Arrow Action Circle Button Bottom Right */
.service-arrow-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.35s ease;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

.service-tile-card:hover .service-arrow-btn {
  background: #ffffff;
  color: var(--primary);
  transform: scale(1.1) translateX(3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Gallery & Filter Component */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 260px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 17, 21, 0.9) 0%, rgba(15, 17, 21, 0.2) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
}

.gallery-overlay p {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 900px;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-height: 80vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

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

/* =========================================================
   Our Major Clients Section
   ========================================================= */
.clients-section {
  padding: 5rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

.client-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 125px;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px -6px rgba(177, 67, 62, 0.12);
}

.client-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.client-card:hover::after {
  width: 50%;
}

.client-logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 50%;
}

.client-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading-color);
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.client-sub {
  font-size: 0.8rem;
  color: var(--body-color);
  font-weight: 500;
}

/* =========================================================
   Footer Styling
   ========================================================= */
.site-footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem 0;
  font-size: 0.92rem;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 0.3rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact-item i,
.footer-contact-item svg {
  color: var(--primary);
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

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

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-red);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-4px);
}

/* Mobile Menu Drawer Header & Close Button */
.mobile-menu-header {
  display: none;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-close-btn {
  background: rgba(177, 67, 62, 0.1);
  color: var(--primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Mobile Nav Dark Blur Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 21, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
  /* opacity: 1; */
  visibility: visible;
}

/* Mobile Sidebar CTA Contact Button */
.mobile-nav-cta {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}

/* =========================================================
   Responsive Breakpoints
   ========================================================= */
@media (max-width: 992px) {
  .navbar {
    height: 75px;
  }

  .mobile-menu-header {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    z-index: 1050;
  }

  .nav-menu.active {
    left: 0;
  }

  .desktop-contact-btn {
    display: none !important;
  }

  .mobile-nav-cta {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .vm-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-bar {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Company History Timeline */
.timeline-section {
  background: var(--light-bg);
  position: relative;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.timeline-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--body-color);
  line-height: 1.7;
}

/* =========================================================
   CREATIVE WOW-FACTOR COMPONENTS & ANIMATIONS
   ========================================================= */

/* Hero Creative Banner Background Glow */
.hero-creative-banner {
  background: radial-gradient(circle at 85% 20%, rgba(177, 67, 62, 0.2) 0%, transparent 55%),
    linear-gradient(135deg, var(--dark-bg) 0%, #1c1f26 50%, var(--secondary) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  border-bottom: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.hero-creative-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.creative-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(177, 67, 62, 0.15);
  border: 1px solid rgba(177, 67, 62, 0.4);
  color: #fca5a5;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

/* Founders Leadership Spotlight */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.founder-card {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #e25852);
  transition: height 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(177, 67, 62, 0.2);
  border-color: rgba(177, 67, 62, 0.3);
}

.founder-card:hover::before {
  height: 6px;
}

.founder-photo-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid var(--card-bg);
  box-shadow: 0 10px 25px rgba(177, 67, 62, 0.25), 0 0 0 3px var(--primary-light);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: var(--light-bg);
}

.founder-card:hover .founder-photo-wrapper {
  transform: scale(1.06);
  box-shadow: 0 14px 35px rgba(177, 67, 62, 0.35), 0 0 0 3px var(--primary);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.founder-card:hover .founder-photo {
  transform: scale(1.08);
}

.founder-avatar-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px -5px rgba(177, 67, 62, 0.25);
  transition: transform 0.3s ease;
}

.founder-card:hover .founder-avatar-icon {
  transform: scale(1.1) rotate(-4deg);
  background: var(--primary);
  color: var(--white);
}

.founder-role-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: rgba(177, 67, 62, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.founder-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.founder-degree {
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1rem;
}

.gold-medal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #fef08a, #fde047);
  color: #713f12;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.3);
}

.founder-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body-color);
}

/* Feature Counter Bar */
.counter-bar {
  background: var(--dark-card);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}

.counter-bar::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(177, 67, 62, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.counter-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.counter-number span {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
}

.counter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Creative Timeline Upgrade */
.timeline-card-creative {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: all 0.35s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.timeline-card-creative:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px -10px rgba(177, 67, 62, 0.18);
  border-color: rgba(177, 67, 62, 0.4);
}

.timeline-icon-box {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}

/* =========================================================
   WORKSPACE PAGE DESIGN — ORIGINAL MATCHING STYLES
   ========================================================= */

/* Hero Banner with Background Image */
.ws-hero-section {
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.8)),
    url('../images/banner2.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 6rem 0 9rem 0;
  text-align: center;
  position: relative;
}

.ws-hero-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.ws-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.ws-breadcrumb a {
  color: #ffffff;
  transition: color 0.2s ease;
}

.ws-breadcrumb a:hover {
  color: var(--primary);
}

.ws-breadcrumb .slash {
  color: var(--primary);
  font-weight: 700;
}

/* Elevating Performance Floating Card */
.ws-feature-wrapper {
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  margin-bottom: 4rem;
}

.ws-feature-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(226, 232, 240, 0.8);
  padding: 3.5rem 4rem;
  background-image: radial-gradient(rgba(177, 67, 62, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.ws-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 1rem;
}

.ws-tag .slash {
  color: var(--primary);
  font-weight: 900;
}

.ws-feature-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.ws-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ws-feature-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 1.25rem;
}

.ws-feature-text p:last-child {
  margin-bottom: 0;
}

.ws-feature-image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.ws-feature-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ws-feature-image-box:hover img {
  transform: scale(1.04);
}

/* 3-Column Workspace Photo Grid */
.ws-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.ws-gallery-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  height: 280px;
}

.ws-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(177, 67, 62, 0.25);
  border-color: rgba(177, 67, 62, 0.4);
}

.ws-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ws-gallery-card:hover img {
  transform: scale(1.08);
}

/* Red Highlight Overlay Card (Card 5 style from screenshot) */
.ws-gallery-card.red-accent-card {
  background: linear-gradient(135deg, var(--primary) 0%, #8d3531 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  color: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-red);
}

.ws-gallery-card.red-accent-card .accent-content {
  z-index: 2;
}

.ws-gallery-card.red-accent-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ws-gallery-card.red-accent-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

/* Bottom Quality Banner */
.ws-cta-banner {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9)),
    url('../images/banner.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  border-top: 4px solid var(--primary);
}

.ws-cta-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

@media (max-width: 992px) {
  .ws-feature-grid {
    grid-template-columns: 1fr;
  }

  .ws-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ws-feature-card {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .ws-gallery-grid {
    grid-template-columns: 1fr;
  }

  .ws-hero-title {
    font-size: 2.5rem;
  }

  .ws-feature-title {
    font-size: 1.8rem;
  }

  .ws-cta-title {
    font-size: 1.8rem;
  }
}

/* =========================================================
   DITTO HOMEPAGE SPECIFIC LAYOUT STYLES (MATCHING TARGET IMAGE)
   ========================================================= */

/* Hero Banner */
.ditto-hero-section {
  position: relative;
  background: #000000;
  color: #ffffff;
  padding: 6.5rem 0 7.5rem 0;
  text-align: center;
  overflow: hidden;
}

.ditto-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center bottom, rgba(219, 35, 41, 0.45) 0%, rgba(0, 0, 0, 0.85) 60%, #000000 100%),
    url('../images/banner.webp') center/cover no-repeat;
  opacity: 0.7;
  z-index: 1;
}

.ditto-hero-content {
  position: relative;
  z-index: 5;
  max-width: 920px;
  margin: 0 auto;
}

.ditto-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

/* Overlapping Card Container (Who We Are) */
.ditto-whoweare-card {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  padding: 4rem 3.5rem;
  margin-top: -4rem;
  position: relative;
  z-index: 10;
  border: 1px solid #e2e8f0;
}

.ditto-section-tag {
  color: #db2329;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.ditto-whoweare-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0d1117;
  margin-bottom: 1.25rem;
}

.ditto-whoweare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid #edf2f7;
}

.ditto-img-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.ditto-img-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.ditto-badge-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: #db2329;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(219, 35, 41, 0.4);
}

.ditto-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}

.ditto-slider-btn {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s;
}

.ditto-slider-btn:hover {
  background: #db2329;
}

/* Quality Services Section (5 Grid Items) */
.ditto-services-section {
  background-color: #f8fafc;
  padding: 5.5rem 0;
}

.ditto-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .ditto-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ditto-services-grid {
    grid-template-columns: 1fr;
  }

  .ditto-whoweare-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ditto-whoweare-card {
    padding: 2rem 1.5rem;
  }
}

.ditto-service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: block;
}

.ditto-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ditto-service-card:hover img {
  transform: scale(1.08);
}

.ditto-service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.ditto-service-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Why Choose Us & Split Statistics Block */
.ditto-why-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  min-height: 550px;
}

@media (max-width: 992px) {
  .ditto-why-split-section {
    grid-template-columns: 1fr;
  }
}

.ditto-why-left {
  padding: 5rem 4rem;
  background: #f9fafb;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ditto-why-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 33.333% 100%;
  pointer-events: none;
}

.ditto-why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}

.ditto-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #0d1117;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.3;
}

.ditto-why-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #db2329;
  color: #db2329;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.ditto-why-item.red-highlight {
  grid-column: 1 / -1;
}

.ditto-why-right {
  display: flex;
  flex-direction: column;
}

.ditto-why-top-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
}

@media (max-width: 576px) {
  .ditto-why-top-split {
    grid-template-columns: 1fr;
  }
}

.ditto-25yr-box {
  background: #db2329;
  color: #ffffff;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ditto-25yr-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.ditto-25yr-num {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.85;
  font-family: var(--font-heading);
}

.ditto-25yr-lbl {
  font-size: 1.35rem;
  font-weight: 700;
}

.ditto-25yr-desc {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: #ffffff;
}

.ditto-why-img {
  background: url('../images/banner2.webp') center/cover no-repeat;
  min-height: 260px;
}

.ditto-stats-grid {
  background: #0d0e12;
  color: #ffffff;
  padding: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  text-align: center;
  flex: 1;
}

.ditto-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ditto-stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #db2329;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.ditto-stat-lbl {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ditto-stat-icon {
  font-size: 1.75rem;
  color: #ffffff;
}

/* Major Clients Grid */
.ditto-clients-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
  text-align: center;
}

.ditto-clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .ditto-clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .ditto-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ditto-client-item {
  border: 1px solid #edf2f7;
  border-radius: 6px;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all 0.3s ease;
  height: 110px;
}

.ditto-client-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #db2329;
  transform: translateY(-3px);
}

.ditto-client-item img {
  max-height: 70px;
  max-width: 85%;
  object-fit: contain;
}

/* =========================================================
   DITTO ABOUT US PAGE SPECIFIC LAYOUT STYLES
   ========================================================= */

.ditto-page-banner {
  position: relative;
  background: linear-gradient(rgba(15, 17, 21, 0.75), rgba(15, 17, 21, 0.85)),
    url('../images/banner2.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 5.5rem 0 6.5rem 0;
  text-align: center;
}

.ditto-page-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ditto-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.ditto-breadcrumb a {
  color: #db2329;
}

.ditto-breadcrumb a:hover {
  text-decoration: underline;
}

/* About Us Card Split */
.ditto-about-split {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 992px) {
  .ditto-about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.ditto-stacked-imgs {
  display: flex;
  flex-direction: column;
}

.ditto-stacked-imgs img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.ditto-about-text-content p {
  color: #768492;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Board of Directors Section */
.ditto-directors-section {
  padding: 5.5rem 0;
  background: #f8fafc;
}

.ditto-directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 3rem auto 0 auto;
}

@media (max-width: 768px) {
  .ditto-directors-grid {
    grid-template-columns: 1fr;
  }
}

.ditto-director-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
}

.ditto-director-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: #db2329;
}

.ditto-director-img-wrap {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #f1f5f9;
}

.ditto-director-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ditto-director-info {
  padding: 1.75rem 1.5rem;
  text-align: left;
}

.ditto-director-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0d1117;
  margin-bottom: 0.25rem;
}

.ditto-director-qual {
  font-size: 0.85rem;
  color: #db2329;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ditto-director-role {
  font-size: 0.88rem;
  color: #768492;
  font-weight: 500;
  margin: 0;
}

/* Projects Grid Layout (4 Columns) */
.ditto-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 1100px) {
  .ditto-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ditto-projects-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   EXACT FEATURED PROJECTS SECTION (MATCHING TARGET SCREENSHOT)
   ========================================================= */
.featured-projects-section {
  padding: 5.5rem 0 6.5rem 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.vertical-bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: 1;
}

.vertical-bg-lines span {
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.035);
}

.featured-projects-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  color: #000000;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1100px) {
  .featured-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .featured-projects-grid {
    grid-template-columns: 1fr;
  }
}

.featured-project-card {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 0px;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.featured-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-project-card:hover img {
  transform: scale(1.08);
}

.featured-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem 1rem;
  text-align: center;
}

.featured-project-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =========================================================
   EXACT WORKSPACE PAGE STYLES (MATCHING TARGET SCREENSHOT)
   ========================================================= */

.ditto-workspace-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin: 3.5rem 0 5rem 0;
}

@media (max-width: 992px) {
  .ditto-workspace-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ditto-workspace-gallery {
    grid-template-columns: 1fr;
  }
}

.ditto-ws-card {
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ditto-ws-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ditto-ws-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ditto-bottom-cta-banner {
  background: linear-gradient(rgba(15, 17, 21, 0.75), rgba(15, 17, 21, 0.85)),
    url('../images/banner.webp') center/cover no-repeat;
  color: #ffffff;
  padding: 5.5rem 0;
  border-top: 4px solid #db2329;
}

.ditto-bottom-cta-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  max-width: 650px;
  line-height: 1.25;
}

/* =========================================================
   EXACT CONTACT PAGE STYLES (MATCHING TARGET SCREENSHOT)
   ========================================================= */
.ditto-contact-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2f7;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

@media (max-width: 992px) {
  .ditto-contact-split {
    grid-template-columns: 1fr;
  }
}

.ditto-contact-left {
  background: #ffffff;
  padding: 3.5rem 3rem;
}

.ditto-contact-right {
  background: #14161a;
  color: #ffffff;
  padding: 3.5rem 2.5rem;
}

.ditto-contact-field-light {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 0.85rem 1rem;
  width: 100%;
  font-size: 0.95rem;
  color: #0d1117;
  outline: none;
  transition: border-color 0.2s ease;
}

.ditto-contact-field-light:focus {
  border-color: #db2329;
  background: #ffffff;
}

.ditto-contact-info-block {
  margin-bottom: 2rem;
}

.ditto-contact-info-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.ditto-contact-info-val {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.ditto-contact-info-val a {
  color: rgba(255, 255, 255, 0.9);
}

.ditto-contact-info-val a:hover {
  color: #db2329;
}

/* =========================================================
   ENTRANCE ANIMATION SYSTEM (SCROLL REVEAL & STAGGER)
   ========================================================= */

/* Base entrance transition styles */
.reveal,
.reveal-up,
.reveal-down,
.reveal-left,
.reveal-right,
.reveal-zoom,
.reveal-fade {
  opacity: 0;
  will-change: opacity, transform;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up,
.reveal {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(-45px);
}

.reveal-right {
  transform: translateX(45px);
}

.reveal-zoom {
  transform: scale(0.92);
}

.reveal-fade {
  transform: none;
}

/* Active trigger state when scrolled into view */
.reveal.in,
.reveal-up.in,
.reveal-down.in,
.reveal-left.in,
.reveal-right.in,
.reveal-zoom.in,
.reveal-fade.in {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger animation utilities for grids & lists */
.stagger-parent>*,
.ditto-services-grid>*,
.ditto-clients-grid>*,
.ditto-stats-grid>*,
.ditto-why-features-grid>*,
.gallery-grid>*,
.footer-grid>* {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-parent.in>*,
.ditto-services-grid.in>*,
.ditto-clients-grid.in>*,
.ditto-stats-grid.in>*,
.ditto-why-features-grid.in>*,
.ditto-why-left.in .ditto-why-features-grid>*,
.gallery-grid.in>*,
.footer-grid.in>* {
  opacity: 1;
  transform: translateY(0);
}

/* Children Stagger Delays */
:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(1) {
  transition-delay: 0.05s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(2) {
  transition-delay: 0.12s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(3) {
  transition-delay: 0.19s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(4) {
  transition-delay: 0.26s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(5) {
  transition-delay: 0.33s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(6) {
  transition-delay: 0.40s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(7) {
  transition-delay: 0.47s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(8) {
  transition-delay: 0.54s;
}

:is(.stagger-parent, .ditto-services-grid, .ditto-clients-grid, .ditto-stats-grid, .ditto-why-features-grid, .gallery-grid, .footer-grid).in>*:nth-child(n+9) {
  transition-delay: 0.60s;
}

/* Explicit Stagger Delays */
.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

/* Hero entrance keyframes */
@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(35px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slide.active .ditto-hero-title {
  animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-up,
  .reveal-down,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .reveal-fade,
  .stagger-parent>*,
  .ditto-services-grid>*,
  .ditto-clients-grid>*,
  .ditto-stats-grid>*,
  .ditto-why-features-grid>*,
  .gallery-grid>*,
  .footer-grid>* {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}