/* style.css - AAA EXIM GLOBAL - Innovative Globetek Inspired Layout */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Public+Sans:wght@300;400;500;600;700;800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  --primary-dark: #0a1f44;
  --primary-blue: #1b4e9b;
  --primary-blue-light: #2a6cc7;
  --accent-red: #c8102e;
  --accent-red-light: #e63946;
  --accent-orange: #e87a1e;
  --bg-cream: #f3f0eb;
  --bg-light: #f8f7f4;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Inter', 'Public Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-badge i {
  color: var(--primary-blue);
  font-size: 16px;
}

.section-title-lg {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.7;
}

.red-underline {
  position: relative;
  display: inline-block;
}

.red-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
}

.btn-primary:hover {
  background: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,78,155,0.3);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--text-white);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-red);
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-accent:hover {
  background: var(--accent-red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,16,46,0.3);
}

/* ============================================
   HEADER - TOP BAR
   ============================================ */
.header-top {
  background: var(--primary-dark);
  color: var(--text-white);
  padding: 10px 0;
  font-size: 13px;
}

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

.header-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-top-left .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--primary-blue);
  color: #fff;
  font-size: 13px;
  transition: var(--transition);
}

.header-top-left .social-icon:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
}

.header-top-center {
  background: var(--primary-blue);
  color: #fff;
  padding: 6px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
}

.header-top-right a {
  color: rgba(255,255,255,0.8);
}

.header-top-right a:hover {
  color: #fff;
}

/* ============================================
   HEADER - MAIN NAV
   ============================================ */
.header-main {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
  object-fit: contain;
}

.tagline {
  display: none !important;
}

/* Navigation */
.sitenav ul.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.sitenav ul.menu > li {
  position: relative;
}

.sitenav ul.menu > li > a {
  display: block;
  padding: 24px 16px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.sitenav ul.menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-red);
  border-radius: 3px 3px 0 0;
  transition: width 0.3s ease;
}

.sitenav ul.menu > li:hover > a::after,
.sitenav ul.menu > li.current-menu-item > a::after {
  width: 70%;
}

.sitenav ul.menu > li:hover > a,
.sitenav ul.menu > li.current-menu-item > a {
  color: var(--primary-blue);
}

/* Header CTA Button */
.header-cta {
  margin-left: 16px;
}

.header-cta .btn-primary {
  padding: 10px 24px;
  font-size: 13px;
  background: var(--accent-red);
}

.header-cta .btn-primary:hover {
  background: var(--accent-red-light);
  box-shadow: 0 8px 25px rgba(200,16,46,0.3);
}

/* Dropdown Menu */
.sitenav ul.menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  border-top: 3px solid var(--accent-red);
}

.sitenav ul.menu li:hover ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sitenav ul.menu li ul.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.sitenav ul.menu li ul.sub-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary-blue);
  padding-left: 28px;
}

/* Mobile Toggle */
.toggle {
  display: none;
}

.toggleMenu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.toggleMenu:hover {
  background: var(--primary-blue);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.slider-main {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 120px);
  min-height: 550px;
  max-height: 750px;
  background: #000;
}

.slide-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
}

.slide-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.slide-item.active {
  opacity: 1;
  z-index: 2;
}

.slide-caption-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  padding: 0 8%;
}

.slide_info {
  max-width: 700px;
  color: #fff;
  display: none;
  background: transparent;
  border-left: none;
  padding: 0;
}

.slide-item.active .slide_info {
  display: block;
  animation: fadeInUp 0.8s ease forwards;
}

.slide_info h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.slide_info h2 span {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  line-height: 1.5;
}

.slide_info p {
  font-size: 16px;
  margin: 0 0 24px 0;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.slide-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.slide_info a.slidebtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.slide_info a.slidebtn:hover {
  background: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,78,155,0.4);
}

.slide_info a.slidebtn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.slide_info a.slidebtn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 22px;
  z-index: 30;
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.slider-arrow:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.slider-arrow-prev { left: 24px; }
.slider-arrow-next { right: 24px; }

/* ============================================
   KEY PILLARS SECTION
   ============================================ */
.pillars-section {
  background: var(--bg-light);
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 20;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.pillar-item {
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid var(--border-light);
  transition: var(--transition);
}

.pillar-item:last-child {
  border-right: none;
}

.pillar-item:hover {
  background: var(--bg-light);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27,78,155,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
  font-size: 20px;
}

.pillar-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.pillar-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   ABOUT COMPANY SECTION
   ============================================ */
#wraptwo {
  padding: 80px 0;
  background: var(--bg-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-images .about-feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-feature-card .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(27,78,155,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 22px;
  margin-bottom: 12px;
}

.about-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.about-content .section-badge {
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-content .about-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-checklist {
  margin-bottom: 32px;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-body);
}

.about-checklist li i {
  color: var(--primary-blue);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

h6.smalltitle {
  display: none;
}

h2.welcometitle {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 0;
}

h2.welcometitle::before {
  display: none;
}

h2.welcometitle span {
  color: var(--primary-blue);
}

.wrap_one_content, .wrap_one p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  text-align: left;
}

.morebutton {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  text-transform: none;
  transition: var(--transition);
}

.morebutton:hover {
  background: var(--primary-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,78,155,0.3);
}

/* ============================================
   PRODUCTS GRID SECTION
   ============================================ */
#wrapOne {
  padding: 80px 0;
  background: var(--bg-white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

h2.section_title {
  font-size: 36px;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 0;
  text-transform: none;
}

h2.section_title span {
  color: var(--primary-blue);
  position: relative;
}

h2.section_title span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

.one_four_page-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.one_four_page {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.one_four_page:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.one_four_page a {
  display: block;
  background-color: transparent !important;
  color: inherit;
  position: relative;
}

.one_four_page img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.6s ease;
  opacity: 1;
}

.one_four_page:hover img {
  transform: scale(1.05);
}

.one_four_page_content {
  padding: 36px 20px 24px 20px;
  text-align: left;
  position: relative;
  background: var(--bg-white);
}

.one_four_page_content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  text-transform: none;
}

.one_four_page:hover h3 {
  color: var(--primary-blue);
}

.product-know-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
}

.one_four_page:hover .product-know-more {
  color: var(--primary-blue-light);
}

.product-know-more i {
  transition: transform 0.3s ease;
}

.one_four_page:hover .product-know-more i {
  transform: translateX(4px);
}

/* Product card icon circle */
.product-icon-circle {
  position: absolute;
  top: 176px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  border: 3px solid var(--bg-white);
  z-index: 5;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.one_four_page:hover .product-icon-circle {
  background: var(--accent-red);
  transform: scale(1.1);
}

/* Custom Styles for missing Font Awesome 5 icons in Font Awesome 4 */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff2") format("woff2"),
       url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/webfonts/fa-solid-900.woff") format("woff");
}

.fa-door-open::before {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  content: "\f52b" !important;
}

.fa-fan::before {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  content: "\f863" !important;
}

.fa-wind::before {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  content: "\f72e" !important;
}

.fa-box::before {
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  content: "\f466" !important;
}

/* ============================================
   PHARMA EQUIPMENT / CATEGORIES SECTION
   ============================================ */
.categories-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.categories-header {
  text-align: center;
  margin-bottom: 48px;
}

.categories-header h2 {
  font-size: 36px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.categories-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

.categories-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.category-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}

.category-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

.category-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.category-card ul li:hover {
  color: var(--primary-blue);
  padding-left: 8px;
}

.category-card ul li:last-child {
  border-bottom: none;
}

.category-card ul li i {
  color: var(--primary-blue);
  font-size: 14px;
  flex-shrink: 0;
}

.category-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}

/* Machines interactive list */
.machine-item {
  cursor: pointer;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
}

.machine-item:last-child {
  border-bottom: none;
}

.machine-item:hover,
.machine-item.active {
  background: rgba(27,78,155,0.06);
  border-left: 4px solid var(--accent-red);
}

.machine-item span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.machine-item:hover span {
  transform: translateX(10px);
}

/* ============================================
   WHY CHOOSE US / FEATURES SECTION
   ============================================ */
.why-choose-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.why-choose-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.why-choose-header h2 {
  margin-bottom: 0;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-choose-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-choose-list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.why-choose-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.why-choose-list-item:hover {
  transform: translateX(4px);
}

.why-choose-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(27,78,155,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-choose-list-item:hover .why-choose-icon {
  background: var(--accent-red);
  color: #fff;
}

.why-choose-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.why-choose-text p {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

.why-choose-center-img {
  text-align: center;
}

.why-choose-center-img img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Responsive Why Choose Us layout */
@media screen and (max-width: 1024px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .why-choose-center-img {
    display: none; /* Hide center image on tablets/mobile to keep layout clean */
  }
  .why-choose-list-item {
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    padding-bottom: 24px !important;
  }
  .why-choose-list-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
  padding: 60px 0;
  background: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--bg-light);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(27,78,155,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 24px;
  flex-shrink: 0;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================
   INDUSTRIES / AUDIENCE SECTION
   ============================================ */
.industries-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.industries-header {
  text-align: center;
  margin-bottom: 48px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

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

.industry-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.industry-card-body {
  padding: 24px;
}

.industry-card-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.industry-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Card inside industry grid */
.industry-cta-card {
  background: var(--primary-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
  min-height: 400px;
}

.industry-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,68,0.3), rgba(10,31,68,0.9));
}

.industry-cta-card > * {
  position: relative;
  z-index: 2;
}

.industry-cta-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.industry-cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--primary-blue);
  font-size: 14px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27,78,155,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-quote-mark {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 48px;
  color: rgba(27,78,155,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.faq-image {
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.faq-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
}

.faq-item {
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.faq-question:hover {
  background: var(--primary-blue);
}

.faq-question i {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  background: var(--bg-light);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.faq-answer.active {
  max-height: 200px;
  padding: 16px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================
   CLIENT TICKER SECTION
   ============================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-white);
  padding: 60px 0;
  position: relative;
}

.ticker-wrap h2.section_title {
  text-align: center;
  margin-bottom: 40px;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-slide 35s linear infinite;
}

.ticker:hover {
  animation-play-state: paused;
}

.ticker-item {
  flex-shrink: 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-item img {
  height: 55px;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.7;
  border: 1px solid var(--border-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.ticker-item img:hover {
  opacity: 1;
  border-color: var(--accent-red);
  box-shadow: var(--shadow-sm);
}

@keyframes ticker-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================================
   FOOTER
   ============================================ */
#footer-wrapper {
  background: var(--primary-dark);
  color: #eaeaea;
  font-size: 14px;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

.footer-col p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-size: 13px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-col ul li a::before {
  content: '\f00c';
  font-family: FontAwesome;
  color: var(--primary-blue);
  font-size: 11px;
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.footer-contact-item i {
  color: var(--primary-blue);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
  color: #fff;
}

/* Footer Bottom Bar */
.copyright-wrapper {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.copyright-wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.copyright-wrapper a {
  color: rgba(255,255,255,0.7);
}

.copyright-wrapper a:hover {
  color: #fff;
}

/* Legacy footer classes for layout.js compatibility */
.ftrcontactinfo {
  display: none;
}

.footer {
  padding: 0;
}

.footer h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 0;
}

.footer ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.footer ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

.follow-subcribe-wrapper {
  display: none;
}

/* ============================================
   INNER PAGES
   ============================================ */
.innerbanner {
  height: 280px;
  overflow: hidden;
  background: var(--primary-dark);
  position: relative;
}

.innerbanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.innerbanner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0.8), rgba(0,0,0,0.4));
}

.content-area {
  padding: 50px 0;
}

.entry-header {
  border-bottom: 3px solid var(--accent-red);
  margin-bottom: 30px;
  padding-bottom: 12px;
}

.entry-title {
  font-size: 32px;
  color: var(--text-dark);
  margin: 0;
  text-transform: none;
  font-family: var(--font-heading);
}

.wp-block-columns {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.wp-block-column {
  flex: 1;
}

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

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

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border: 3px solid #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-red);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
  padding: 10px;
}

.lightbox-nav:hover {
  color: var(--accent-red);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left-on-load {
  animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-right-on-load {
  animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillar-item:nth-child(2) {
    border-right: none;
  }
  
  .pillar-item:nth-child(1),
  .pillar-item:nth-child(2) {
    border-bottom: 1px solid var(--border-light);
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .categories-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 980px) {
  .sitenav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    z-index: 1000;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
  }
  
  .sitenav.open {
    display: block;
  }
  
  .sitenav ul.menu {
    flex-direction: column;
  }
  
  .sitenav ul.menu > li > a {
    padding: 14px 24px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  
  .sitenav ul.menu > li > a::after {
    display: none;
  }
  
  .sitenav ul.menu > li:hover > a,
  .sitenav ul.menu > li.current-menu-item > a {
    background: rgba(255,255,255,0.05);
    color: #fff;
  }
  
  .sitenav ul.menu li ul.sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding-left: 20px;
    display: none;
  }
  
  .sitenav ul.menu li.active-sub ul.sub-menu {
    display: block;
  }
  
  .sitenav ul.menu li ul.sub-menu li a {
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .sitenav ul.menu li ul.sub-menu li a:hover {
    color: #fff;
    background: transparent;
  }
  
  .toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  .one_four_page-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .header-top-center {
    display: none;
  }
  
  .slider-main {
    height: 520px;
    min-height: 480px;
    max-height: 600px;
  }
  
  .slide-caption-wrapper {
    justify-content: center;
    padding: 0 20px;
  }
  
  .slide_info {
    text-align: center;
  }
  
  .slide_info h2 {
    font-size: 28px;
  }
  
  .slide_info h2 span {
    font-size: 14px;
  }
  
  .slide-buttons {
    justify-content: center;
    gap: 12px;
  }
  
  .section-title-lg,
  h2.section_title {
    font-size: 28px;
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillar-item {
    padding: 20px 16px;
    gap: 12px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  
  .pillar-item:nth-child(2n) {
    border-right: none;
  }
  
  .pillar-item:nth-child(3),
  .pillar-item:nth-child(4) {
    border-bottom: none;
  }
  
  .pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }
  
  .pillar-item h4 {
    font-size: 13.5px;
    font-weight: 700;
  }
  
  .pillar-item p {
    font-size: 11.5px;
    line-height: 1.4;
  }
  
  .about-images {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .about-images img {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
  
  .about-images .about-feature-card {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
  }
  
  /* Products grid 2-in-a-row on mobile/tablet */
  .one_four_page-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .one_four_page img {
    height: 140px !important;
  }
  
  .product-icon-circle {
    top: 120px !important;
    left: 16px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
    border-width: 2px !important;
  }
  
  .one_four_page_content {
    padding: 24px 12px 16px 12px !important;
  }
  
  .one_four_page_content h3 {
    font-size: 13px !important;
  }
  
  .product-know-more {
    font-size: 11px !important;
    margin-top: 6px !important;
  }
  
  /* Stats horizontal scroll snap infinite marquee ticker view */
  .stats-section {
    overflow: hidden !important;
  }
  
  .stats-grid {
    display: flex !important;
    flex-direction: row !important;
    width: max-content !important;
    padding: 16px 20px !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    animation: ticker-slide 22s linear infinite !important;
  }
  
  .stats-grid:hover,
  .stats-grid:active {
    animation-play-state: paused !important;
  }
  
  .stat-item {
    flex-shrink: 0 !important;
    width: 250px !important;
    background: var(--bg-white) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-md) !important;
    padding: 16px !important;
    box-shadow: var(--shadow-sm) !important;
    margin-right: 16px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
  }
  
  .stat-item:hover,
  .stat-item:active {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: var(--shadow-md) !important;
    background-color: #f0f7ff !important;
  }
  
  /* Engineered for Generations - Industries grid 2-in-a-row */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .industry-card-img {
    height: 140px !important;
  }
  
  .industry-card-body {
    padding: 16px 12px !important;
  }
  
  .industry-card-body h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
  }
  
  .industry-card-body p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  
  .industry-cta-card {
    min-height: 300px !important;
    padding: 24px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }
  
  .industry-cta-card h3 {
    font-size: 20px !important;
  }
  
  .industry-cta-card p {
    font-size: 12px !important;
  }
  
  /* Testimonials horizontal scroll snap infinite marquee ticker view */
  .testimonials-section {
    overflow: hidden !important;
  }
  
  .testimonials-grid {
    display: flex !important;
    flex-direction: row !important;
    width: max-content !important;
    padding: 16px 20px 24px 20px !important;
    margin: 0 !important;
    animation: ticker-slide 30s linear infinite !important;
  }
  
  .testimonials-grid:hover,
  .testimonials-grid:active {
    animation-play-state: paused !important;
  }
  
  .testimonial-card {
    flex-shrink: 0 !important;
    width: 320px !important;
    padding: 24px !important;
    margin-right: 20px !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  }
  
  .testimonial-card:hover,
  .testimonial-card:active {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-md) !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .category-card {
    padding: 20px;
  }
  
  .ticker-clone {
    display: flex !important;
  }
  .testimonial-card.ticker-clone {
    display: block !important;
  }

  /* Who We Are page mobile responsive grid & alignment overrides */
  .page-who-we-are .text-justify, 
  .page-who-we-are p {
    text-align: left !important;
  }
  
  .page-who-we-are .quality-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .page-who-we-are .quality-card {
    padding: 20px 16px !important;
  }
  
  .page-who-we-are .quality-card h3 {
    font-size: 15px !important;
  }
  
  .page-who-we-are .quality-card p {
    font-size: 11.5px !important;
  }
  
  .page-who-we-are .process-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .page-who-we-are .process-card {
    padding: 20px 12px !important;
  }
  
  .page-who-we-are .process-card h4 {
    font-size: 13.5px !important;
  }
  
  .page-who-we-are .process-card p {
    font-size: 10.5px !important;
  }
  
  .page-who-we-are .process-number {
    font-size: 32px !important;
    top: 6px !important;
    right: 12px !important;
  }
  
  .page-who-we-are .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  .page-who-we-are .services-grid > div {
    padding: 8px 10px !important;
  }
  
  .page-who-we-are .services-grid span {
    font-size: 12px !important;
  }
  
  .page-who-we-are .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .page-who-we-are .team-card {
    padding: 16px 12px !important;
  }
  
  .page-who-we-are .team-card h4 {
    font-size: 14px !important;
  }
  
  .page-who-we-are .team-card p {
    font-size: 11px !important;
  }
  
  .page-who-we-are .product-media-col img {
    height: 240px !important;
    object-fit: cover !important;
  }

  /* Consulting Services page mobile responsive grid & alignment overrides */
  .page-services .text-justify,
  .page-services p {
    text-align: left !important;
  }
  
  .page-services .services-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .page-services .service-card {
    padding: 20px 16px !important;
  }
  
  .page-services .service-card h3 {
    font-size: 15px !important;
  }
  
  .page-services .service-card p {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }
  
  .page-services .service-card .w-12 {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }

  /* Gallery page 3-in-a-row mobile layout overrides */
  #gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  
  .gallery-card {
    padding: 4px !important;
    border-radius: 12px !important;
  }
  
  .gallery-card .w-full.h-52 {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
  }
  
  /* Hide text overlay on mobile as cards are very small */
  .gallery-card .absolute.inset-0 {
    display: none !important;
  }

  /* Get In Touch page mobile responsive grid & alignment overrides */
  .page-contact .text-justify,
  .page-contact p {
    text-align: left !important;
  }
  
  .page-contact .content-area {
    padding: 30px 0 !important;
  }
  
  .page-contact .grid {
    gap: 24px !important;
  }
  
  .page-contact .bg-white.border.border-gray-100.p-8 {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }
  
  .page-contact iframe {
    height: 300px !important;
  }
}

@media screen and (max-width: 480px) {
  .one_four_page-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .one_four_page img {
    height: 110px !important;
  }
  
  .product-icon-circle {
    top: 92px !important;
    left: 10px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 12px !important;
    border-width: 2px !important;
  }
  
  .one_four_page_content {
    padding: 16px 8px 12px 8px !important;
  }
  
  .one_four_page_content h3 {
    font-size: 11px !important;
  }
  
  .product-know-more {
    font-size: 9.5px !important;
    margin-top: 4px !important;
  }
  
  .slider-main {
    height: 460px;
    min-height: 420px;
  }
  
  .slide_info h2 {
    font-size: 22px;
  }
  
  .slide_info p {
    font-size: 13.5px;
  }
  
  .slide-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .slide_info a.slidebtn,
  .slide_info a.slidebtn-outline {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
  .slider-arrow {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
  }
  
  .slider-arrow-prev { left: 10px; }
  .slider-arrow-next { right: 10px; }
  
  .pillar-item {
    padding: 16px 12px;
    gap: 10px;
  }
  
  .pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 14px;
  }
  
  .pillar-item h4 {
    font-size: 12px;
  }
  
  .pillar-item p {
    font-size: 10px;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    display: flex !important;
    width: max-content !important;
  }
  
  .stat-item {
    width: 220px !important;
    flex-shrink: 0 !important;
  }
  
  .industry-card-img {
    height: 110px !important;
  }
  
  .industry-card-body {
    padding: 10px 8px !important;
  }
  
  .industry-card-body h4 {
    font-size: 12px !important;
  }
  
  .industry-card-body p {
    font-size: 9.5px !important;
  }
  
  .industry-cta-card {
    min-height: 240px !important;
    padding: 16px !important;
  }
  
  .industry-cta-card h3 {
    font-size: 16px !important;
  }
  
  .industry-cta-card p {
    font-size: 10px !important;
  }
  
  .testimonials-grid {
    display: flex !important;
    width: max-content !important;
  }
  
  .testimonial-card {
    width: 280px !important;
    flex-shrink: 0 !important;
  }
  
  .header-top-left,
  .header-top-right {
    display: none;
  }
  
  .header-top-center {
    display: block;
    margin: 0 auto;
  }
  
  .logo img {
    height: 50px;
  }

  /* Who We Are page mobile overrides for narrow screens (<= 480px) */
  .page-who-we-are .quality-card {
    padding: 14px 10px !important;
  }
  
  .page-who-we-are .quality-card h3 {
    font-size: 13px !important;
  }
  
  .page-who-we-are .quality-card p {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }
  
  .page-who-we-are .process-card {
    padding: 14px 10px !important;
  }
  
  .page-who-we-are .process-card h4 {
    font-size: 11px !important;
  }
  
  .page-who-we-are .process-card p {
    font-size: 9.5px !important;
    line-height: 1.3 !important;
  }
  
  .page-who-we-are .process-number {
    font-size: 26px !important;
    top: 4px !important;
    right: 8px !important;
  }
  
  .page-who-we-are .team-card {
    padding: 12px 10px !important;
  }
  
  .page-who-we-are .team-card h4 {
    font-size: 12px !important;
  }
  
  .page-who-we-are .team-card p {
    font-size: 9.5px !important;
  }
  
  .page-who-we-are .product-media-col img {
    height: 180px !important;
  }

  /* Consulting Services page mobile overrides for narrow screens (<= 480px) */
  .page-services .service-card {
    padding: 14px 10px !important;
  }
  
  .page-services .service-card h3 {
    font-size: 13px !important;
  }
  
  .page-services .service-card p {
    font-size: 10px !important;
    line-height: 1.4 !important;
  }

  /* Get In Touch page mobile overrides for narrow screens (<= 480px) */
  .page-contact .bg-white.border.border-gray-100.p-8 {
    padding: 16px 12px !important;
  }
  
  .page-contact h2 {
    font-size: 24px !important;
  }
}

/* ============================================
   INNER PAGES & LAYOUT OVERHAULS
   ============================================ */
.inner-page-hero {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-white);
  overflow: hidden;
  margin-bottom: 50px;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,31,68,0.9) 0%, rgba(27,78,155,0.75) 100%);
  z-index: 1;
}

.inner-page-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner-page-hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-white) !important;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumbs {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.breadcrumbs a:hover {
  color: var(--text-white);
}

.breadcrumbs span {
  opacity: 0.5;
}

.breadcrumbs .current {
  color: var(--text-white);
  font-weight: 600;
}

/* Product & Service Overview Layout */
.product-overview-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.product-info-col {
  display: flex;
  flex-direction: column;
}

.product-overview-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: left;
}

/* Prevent headings inside entry-content from inheriting text-justify alignment */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  text-align: left;
}

.entry-content .text-center h1,
.entry-content .text-center h2,
.entry-content .text-center h3,
.entry-content .text-center h4,
.entry-content .text-center h5,
.entry-content .text-center h6,
.entry-content h1.text-center,
.entry-content h2.text-center,
.entry-content h3.text-center,
.entry-content h4.text-center,
.entry-content h5.text-center,
.entry-content h6.text-center {
  text-align: center;
}

.product-description-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
}

.product-desc-p {
  margin-bottom: 16px;
}

.product-media-col {
  position: sticky;
  top: 120px;
}

.product-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  object-fit: cover;
  max-height: 480px;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.product-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  aspect-ratio: 4/3;
}

.product-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Why Choose Section in Inner Pages */
.product-why-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 40px;
}

.product-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent-red);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,16,46,0.1);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(27,78,155,0.06);
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--accent-red);
  color: var(--text-white);
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Executive, Team, Services, Gallery, and Contact styling */
.executive-card {
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.team-card {
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
}

.service-card {
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
}

.gallery-card {
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
}

.contact-quick-card {
  background: var(--bg-light);
}

.office-card {
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
}

.process-card {
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
}

.process-number {
  color: rgba(10,31,68,0.03) !important;
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
  .product-overview-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .product-media-col {
    position: static;
  }
  
  .product-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .product-why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .why-card {
    padding: 16px 12px !important;
  }
  
  .why-card-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
    margin-bottom: 12px !important;
  }
  
  .why-card h4 {
    font-size: 13px !important;
  }
  
  .why-card p {
    font-size: 10.5px !important;
    line-height: 1.4 !important;
  }
  
  .inner-page-hero h1 {
    font-size: 28px;
  }
}

/* Mobile Infinite Ticker Animations & Classes */
.ticker-clone {
  display: none !important;
}

@keyframes ticker-slide-ltr {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

