/* ========================================
   FONT IMPORTS
   ======================================== */
@import url('http://fonts.googleapis.com/css?family=Noto+Serif:400,400italic,700|Open+Sans:400,600,700');
@import url('font-awesome.css');
@import url('animate.css');

/* ========================================
   CSS VARIABLES (CUSTOM PROPERTIES)
   ======================================== */
:root {
  --primary-color: #eb1111;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --dark-color: #1e293b;
  --light-gray: #f8fafc;
  --border-color: #e2e8f0;
  --success-color: #10b981;
  --error-color: #ef4444;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
.navbar {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.brand-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-color);
  display: none;
}

.nav-link {
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem !important;
  border-radius: 25px;
  margin: 0 0.25rem;
}

.nav-icon {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(235, 17, 17, 0.1);
  transform: translateY(-2px);
}

.nav-link:hover .nav-icon {
  opacity: 1;
  transform: scale(1.1);
}

.nav-link.active {
  color: var(--primary-color) !important;
  background: rgba(235, 17, 17, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.contact-cta {
  background: linear-gradient(135deg, var(--primary-color), #dc2626) !important;
  color: white !important;
  margin-left: 0.5rem;
}

.contact-cta:hover {
  background: linear-gradient(135deg, #dc2626, var(--primary-color)) !important;
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(235, 17, 17, 0.3);
}

.contact-cta,
.contact-cta:hover,
.contact-cta.active,
.nav-link.contact-cta.active {
    color: white !important;
}

/* ========================================
   PAGE HEADER STYLES (SHARED)
   ======================================== */
.page-header {
  background: linear-gradient(135deg, rgba(235, 17, 17, 0.9), rgba(200, 15, 15, 0.8)), url('../img/about-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 120px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-header.services-header {
  background: linear-gradient(135deg, rgba(235, 17, 17, 0.9), rgba(200, 15, 15, 0.8)), url('../img/services-bg.jpg') center/cover no-repeat;
}

.page-header.products-header {
  background: linear-gradient(135deg, rgba(235, 17, 17, 0.9), rgba(200, 15, 15, 0.8)), url('../img/products-bg.jpg') center/cover no-repeat;
}

.page-header.contact-header {
  background: linear-gradient(135deg, rgba(235, 17, 17, 0.9), rgba(200, 15, 15, 0.8)), url('../img/contact-bg.jpg') center/cover no-repeat;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.page-header p {
  position: relative;
  z-index: 2;
}

/* ========================================
   HERO SECTION STYLES (HOME PAGE)
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

/* Rotating Background Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out; 
}

.hero-slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(30, 41, 59, 0.8)); 
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 3;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-row {
  min-height: calc(100vh - 200px);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero-section h1 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* Hero Stats Column */
.hero-stats {
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.title-highlight {
  display: block;
  color: #fbbf24;
  font-size: 0.6em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.title-main {
  display: block;
  color: white;
}

/* Value Propositions */
.value-propositions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.value-prop {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.value-prop i {
  color: #fbbf24;
  margin-right: 1.25rem;
  width: 24px;
  text-align: center;
  font-size: 1.2rem;
}

/* Industry Showcase */
.industry-showcase {
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.industry-item {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 1rem;
}

.industry-item.active {
  display: flex;
  align-items: center;
  animation: slideInRight 0.8s ease-out;
}

.industry-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.industry-icon i {
  font-size: 2.2rem;
  color: white;
}

.industry-content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: white;
}

.industry-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 1s both;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-text {
  font-weight: 600;
  margin-right: 0.75rem;
  color: #fbbf24;
  font-size: 1rem;
}

.badge-year {
  font-weight: 700;
  color: white;
  font-size: 1rem;
}


/* ========================================
   BUTTON STYLES
   ======================================== */
.btn-hero {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(235, 37, 37, 0.3);
}

.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: white !important;
}

.btn-primary:hover {
  background-color: #d10f0f !important;
  border-color: #d10f0f !important;
  color: white !important;
}

.btn-primary:focus,
.btn-primary:active {
  background-color: #c20e0e !important;
  border-color: #c20e0e !important;
  color: white !important;
  box-shadow: 0 0 0 0.2rem rgba(235, 17, 17, 0.25) !important;
}

.btn-cta {
  background: var(--primary-color);
  color: white;
  padding: 15px 40px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background: #d10f0f;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(235, 17, 17, 0.4);
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border: none;
  padding: 1.25rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(235, 17, 17, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(235, 17, 17, 0.4);
  background: linear-gradient(135deg, #dc2626, var(--primary-color));
}

.btn-cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 1.25rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  transform: translateY(-3px);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), #ff4444);
  color: white;
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #d10f0f, #e63946);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(235, 17, 17, 0.3);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Certifications Box */
.certifications-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.certifications-box h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}

.cert-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cert-badge i {
  color: #fbbf24;
  margin-right: 0.75rem;
  font-size: 1.3rem;
}

.cert-badge span {
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Slider Navigation Section */
.slider-navigation-section {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.slider-btn {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  color: var(--dark-color);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.slider-btn:hover,
.slider-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(235, 17, 17, 0.3);
}

.btn-icon {
  width: 40px;
  height: 40px;
  background: rgba(235, 17, 17, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.slider-btn:hover .btn-icon,
.slider-btn.active .btn-icon {
  background: rgba(255, 255, 255, 0.2);
}

.btn-icon i {
  font-size: 1.2rem;
}

.btn-label {
  font-size: 1rem;
  font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  right: 0.5rem;
  text-align: center;
  color: white;
  z-index: 4;
  animation: bounce 2s infinite;
}

.scroll-text {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.scroll-arrow i {
  font-size: 1.3rem;
  color: #fbbf24;
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ========================================
   WELCOME SECTION STYLES
   ======================================== */
.welcome-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.welcome-section img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.welcome-section img:hover {
  transform: translateY(-10px);
}

.welcome-section h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.welcome-section p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.welcome-background {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
  padding: 120px 0;
  position: relative;
}

.welcome-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.welcome-image-container {
  position: relative;
}

.welcome-image {
  border-radius: 25px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.welcome-content {
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(235, 17, 17, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(235, 17, 17, 0.2);
}

.welcome-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.welcome-text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--dark-color);
}

.feature-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.welcome-cta {
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(235, 17, 17, 0.3);
}

.welcome-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(235, 17, 17, 0.4);
}

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

.about-page-header {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
  padding: 140px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.about-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.header-content {
  position: relative;
  z-index: 2;
}

/* Better Proportioned Typography */
.page-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.header-visual {
  position: relative;
  z-index: 2;
}

.stats-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.stat-box {
  background: white;
  padding: 1.8rem 1.2rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(235, 17, 17, 0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.stat-box .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.85rem;
}

/* About Introduction */
.about-intro {
  background: var(--light-gray);
  padding: 100px 0;
}

.about-intro h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.about-intro p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* Better Proportioned About Image */
.about-image-container {
  position: relative;
}

.about-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  max-width: 90%;
  height: auto;
}

.about-image:hover {
  transform: translateY(-10px);
}

.image-accent {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.about-section {
  padding: 100px 0;
}

/* Company Details Section */
.company-details {
  padding: 100px 0;
  background: white;
  position: relative;
}

.lead-text {
  font-size: 1.15rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.capability-item:hover {
  background: white;
  border-color: rgba(235, 17, 17, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Red Icons for Capability Items */
.capability-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.capability-content h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.capability-content p {
  color: var(--secondary-color);
  margin: 0;
  font-size: 0.9rem;
}

.products-showcase {
  background: var(--light-gray);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  position: relative;
}

.showcase-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.product-category:hover {
  border-color: var(--primary-color);
  transform: translateX(8px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Red Icons for Product Categories */
.category-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.product-category h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.product-category p {
  color: var(--secondary-color);
  margin: 0;
  font-size: 0.85rem;
}

.showcase-cta {
  text-align: center;
}

/* ========================================
   ENHANCED TIMELINE SECTION STYLES
   ======================================== */
.timeline-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.02'%3E%3Ccircle cx='60' cy='60' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.timeline-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Timeline Structure */
.enhanced-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 0;
}

.enhanced-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), #fbbf24, var(--primary-color));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(235, 17, 17, 0.3);
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: left;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

/* Timeline Marker */
.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 15px 40px rgba(235, 17, 17, 0.4);
    border: 4px solid white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.timeline-item:hover .timeline-icon::before {
    left: 100%;
}

.timeline-year {
    background: var(--dark-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.3);
    border: 2px solid white;
    letter-spacing: 1px;
}

/* Timeline Content */
.timeline-content {
    background: white;
    padding: 4.0rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(235, 17, 17, 0.1);
    position: relative;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #fbbf24);
    border-radius: 20px 20px 0 0;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* Timeline Badge */
.timeline-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(235, 17, 17, 0.3);
}

/* Timeline Headings */
.timeline-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline-text {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Timeline Highlight */
.timeline-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(235, 17, 17, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.timeline-highlight i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline-highlight span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Arrow Connectors */
.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15px;
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 50px;
    left: -15px;
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}   


/* Enhanced Why Choose Us */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.9));
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.02'%3E%3Cpath d='M60 60L30 30h60v60z'/%3E%3C/g%3E%3C/svg%3E");
}

.advantage-card {
  background: white;
  padding: 2.8rem 2rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(235, 17, 17, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-number {
  position: absolute;
  top: -8px;
  right: 1.8rem;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(235, 17, 17, 0.3);
}

.advantage-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(235, 17, 17, 0.1), rgba(251, 191, 36, 0.1));
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  color: white;
}

.advantage-card h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.advantage-card p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.advantage-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: rgba(235, 17, 17, 0.1);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(235, 17, 17, 0.2);
}

/* Professional Testimonials Section */
.testimonials-section {
  padding: 120px 0 150px 0; /* Increased bottom padding for footer spacing */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.02'%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(235, 17, 17, 0.1);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
}

.rating i {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonial-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.testimonial-content {
  margin-bottom: 2.5rem;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-color);
  font-style: italic;
  position: relative;
  margin: 0;
}

.testimonial-content p::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 4rem;
  color: rgba(235, 17, 17, 0.1);
  font-weight: bold;
  line-height: 1;
}

.testimonial-footer {
  border-top: 1px solid rgba(235, 17, 17, 0.1);
  padding-top: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.client-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.client-details h5 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.client-details span {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
}

.testimonials-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.testimonials-dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(235, 17, 17, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  transform: scale(1.3);
}

/* Animations */
@keyframes slideInTimeline {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Footer spacing adjustment */
.footer {
  margin-top: 0; /* Remove any top margin */
}


/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */
.services-intro {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.services-intro h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.services-intro p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.services-page-header {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
  padding: 140px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.services-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-stats .stat-box {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(235, 17, 17, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.service-stats .stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.stat-content .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-content .stat-label {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(235, 17, 17, 0.3);
}

.service-card h3 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card p {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.intro-visual {
  position: relative;
  text-align: center;
}

.service-logo-container {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.service-logo {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(235, 17, 17, 0.3);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary-color), #ff4444);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(235, 17, 17, 0.3);
}

.service-card h3 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.service-features li {
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--primary-color);
  margin-right: 0.8rem;
  width: 16px;
}

.detailed-services {
  padding: 100px 0;
  background: white;
}

.feature-badge {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(235, 17, 17, 0.1);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
}

.feature-badge i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.intro-content {
  padding-left: 2rem;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-badge span {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--dark-color);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.service-detail {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(235, 17, 17, 0.1);
}

.service-detail:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.service-detail-image {
  position: relative;
  min-height: 400px; /* Increased from 350px */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to contain */
  object-position: center;
  transition: transform 0.3s ease;
  padding: 2rem; /* Add padding to prevent edge touching */
  position: relative;
  z-index: 2;
}

.service-detail-image-bg {
  position: relative;
  min-height: 400px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.service-detail-content {
  padding: 3rem 2.5rem;
  position: relative;
}

.service-detail h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.service-detail p {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-detail-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(235, 17, 17, 0.1), transparent);
}

.service-benefits {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

.content-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(235, 17, 17, 0.1), rgba(0, 0, 0, 0.1));
}

.cta-section {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
  padding: 100px 0;
  position: relative;
}

.cta-section h2 {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.02'%3E%3Ccircle cx='60' cy='60' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 20px 60px rgba(235, 17, 17, 0.3);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* ========================================
   PRODUCTS PAGE SPECIFIC STYLES
   ======================================== */
.products-intro {
  padding: 100px 0;
  background: var(--light-gray);
}

.products-intro h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.products-intro p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 25px 25px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  object-position: center;
  transition: transform 0.3s ease;
  padding: 1rem; 
}

.product-card:hover .product-image img {
  transform: scale(1.05); 
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(235, 17, 17, 0.8), rgba(255, 68, 68, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.view-details-btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.product-card:hover .view-details-btn {
  transform: translateY(0);
}

.view-details-btn:hover {
  background: var(--primary-color);
  color: white;
}

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.product-content p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.spec-badge {
  background: var(--light-gray);
  color: var(--dark-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Product Modal */
.product-modal .modal-dialog {
  max-width: 900px;
}

.product-modal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}

.product-modal .modal-header {
  background: linear-gradient(135deg, var(--primary-color), #ff4444);
  color: white;
  border: none;
  padding: 2rem;
}

.product-modal .modal-title {
  font-weight: 700;
  font-size: 1.8rem;
}

.product-modal .btn-close {
  filter: brightness(0) invert(1);
}

.product-modal .modal-body {
  padding: 2rem;
}

.modal-product-image {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.specifications-table {
  background: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  margin-top: 2rem;
}

.specifications-table .table {
  margin: 0;
}

.specifications-table .table thead th {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1rem;
  font-weight: 600;
}

.specifications-table .table tbody td {
  padding: 1rem;
  border: none;
  border-bottom: 1px solid var(--border-color);
}

.specifications-table .table tbody tr:last-child td {
  border-bottom: none;
}

/* Range Overview */
.range-overview {
  padding: 80px 0;
  background: var(--light-gray);
}

.range-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
}

.range-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.range-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary-color), #ff4444);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.range-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.range-card p {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* ========================================
   ENHANCED PRODUCTS PAGE STYLES
   ======================================== */

/* Products Page Header - Less Jarring */
.products-page-header {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
  padding: 140px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.products-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.product-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.product-stats .stat-box {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(235, 17, 17, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.product-stats .stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

/* Enhanced Products Introduction */
.products-intro {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.intro-visual {
  position: relative;
  text-align: center;
}

.precision-showcase {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.precision-circle {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(235, 17, 17, 0.3);
}

.precision-icon {
  font-size: 4rem;
  color: white;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(235, 17, 17, 0.1);
}

.element-1 {
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.element-2 {
  bottom: 30%;
  left: 5%;
  animation: float 6s ease-in-out infinite 2s;
}

.element-3 {
  top: 60%;
  right: 20%;
  animation: float 6s ease-in-out infinite 4s;
}

.floating-element i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.precision-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.precision-stat {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(235, 17, 17, 0.1);
  min-width: 100px;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.intro-content {
  padding-left: 2rem;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--dark-color);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Enhanced Range Overview */
.range-overview {
  padding: 100px 0;
  background: white;
  position: relative;
}

.range-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(235, 17, 17, 0.1);
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.range-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.range-header {
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.range-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 2rem;
  color: white;
}

.range-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.range-content {
  padding: 2.5rem 2rem;
  text-align: center;
}

.range-content h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.range-content p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.range-features {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(235, 17, 17, 0.1);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(235, 17, 17, 0.2);
}

/* Enhanced Products Section */
.products-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.products-grid {
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(235, 17, 17, 0.1);
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.product-card.featured-product {
  border: 2px solid var(--primary-color);
  box-shadow: 0 20px 60px rgba(235, 17, 17, 0.2);
}

.product-card.featured-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24);
  z-index: 2;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(235, 17, 17, 0.85), rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.view-details-btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  transform: translateY(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover .view-details-btn {
  transform: translateY(0);
}

.view-details-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.featured {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.product-badge.premium {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.product-content {
  padding: 2.5rem 2rem;
}

.product-content h3 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.3;
}

.product-content p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-badge {
  background: rgba(235, 17, 17, 0.1);
  color: var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(235, 17, 17, 0.2);
}

/* Enhanced Product Modal */
.product-modal .modal-dialog {
  max-width: 1000px;
}

.product-modal .modal-content {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
}

.product-modal .modal-header {
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  color: white;
  border: none;
  padding: 2.5rem;
}

.product-modal .modal-title {
  font-weight: 700;
  font-size: 2rem;
}

.product-modal .btn-close {
  filter: brightness(0) invert(1);
  font-size: 1.2rem;
}

.product-modal .modal-body {
  padding: 3rem;
}

.specifications-table {
  background: var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.specifications-table .table {
  margin: 0;
}

.specifications-table .table thead th {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.specifications-table .table tbody td {
  padding: 1.25rem 1.5rem;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
}

.specifications-table .table tbody tr:last-child td {
  border-bottom: none;
}

/* Mobile Responsive Improvements */
@media (max-width: 992px) {
  .products-page-header {
    padding: 120px 0 60px 0;
  }
  
  .product-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .intro-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .precision-stats {
    gap: 1rem;
  }
  
  .floating-elements {
    display: none;
  }
}

@media (max-width: 768px) {
  .timeline-section {
    padding: 80px 0;
  }
  
  .timeline-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
  }
  
  .timeline-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .enhanced-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 80px !important;
    padding-right: 0 !important;
    text-align: left !important;
    margin-bottom: 3rem;
  }
  
  .timeline-marker {
    left: 30px !important;
    transform: none !important;
  }
  
  .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .timeline-year {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  
  .timeline-content {
    padding: 2rem 1.5rem;
    margin-top: 1.5rem;
  }
  
  .timeline-content::after {
    display: none;
  }
  
  .timeline-heading {
    font-size: 1.5rem;
  }
  
  .timeline-text {
    font-size: 1rem;
  }
  
  .timeline-highlight {
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .welcome-background {
    padding: 80px 0;
  }
  
  .business-fields {
    padding: 80px 0;
  }
  
  .clients-section {
    padding: 80px 0;
  }
  
  .clients-track {
    width: calc(150px * 34);
    animation-duration: 90s;
  }
  
  .client-item {
     width: 150px; 
  }
  
  .client-logo {
    max-width: 120px;
    max-height: 50px;
  }
  
  .welcome-features {
    margin: 1.5rem 0;
  }
  
  .feature-item {
    font-size: 0.95rem;
  }
  
  .nav-link {
    padding: 0.5rem 1rem !important;
    margin: 0.25rem 0;
  }
  
  .contact-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .hero-section {
    padding-top: 80px;
    min-height: 100vh;
  }
  
  .hero-container {
    padding-top: 0.5rem;
  }
  
  .hero-row {
    min-height: calc(100vh - 120px);
  }
  
  .hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
  }
  
  .title-highlight {
    font-size: 0.7em;
    margin-bottom: 0.5rem;
  }
  
  .value-propositions {
    margin-bottom: 2rem;
  }
  
  .value-prop {
    font-size: 1rem;
  }
  
  .industry-item {
    padding: 1.5rem;
  }
  
  .industry-icon {
    width: 70px;
    height: 70px;
  }
  
  .industry-icon i {
    font-size: 1.8rem;
  }
  
  .industry-content h3 {
    font-size: 1.4rem;
  }
  
  .industry-content p {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .slider-navigation-section {
    padding: 1.5rem 0;
  }
  
  .slider-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .slider-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .certifications-box {
    margin-bottom: 1.5rem;
    padding: 2rem;
  }
  
  .cert-badges {
    gap: 0.75rem;
  }
  
  .cert-badge {
    padding: 1rem;
  }

  .timeline-item {
    padding-left: 100px;
  }
  
  .enhanced-timeline::before {
    left: 25px;
  }

  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-content p {
    font-size: 1.1rem;
  }
  
  .client-info {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .category-list {
    grid-template-columns: 1fr;
  }

  .about-page-header {
    padding: 100px 0 50px 0;
  }
  
  .page-title {
    margin-bottom: 1rem;
  }
  
  .stats-highlight {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  
  .about-timeline::before {
    left: 0.5rem;
  }
  
  .timeline-item::before {
    left: -1rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .company-details,
  .why-choose-us {
    padding: 80px 0;
  }
  
  .advantage-card {
    margin-bottom: 2rem;
    padding: 2.2rem 1.5rem;
  }
  
  .advantage-number {
    right: 1.2rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .services-page-header {
    padding: 100px 0 50px 0;
  }
  
  .service-stats {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  
  .service-logo {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .service-features {
    margin-top: 2rem;
  }
  
  .service-detail-image {
    min-height: 300px;
  }

  .service-detail-image img {
    padding: 1.5rem;
  }
  
  .service-detail-content {
    padding: 2rem 1.5rem;
  }
  
  .service-benefits {
    flex-direction: column;
  }
  
  .services-intro,
  .services-section,
  .detailed-services,
  .cta-section {
    padding: 80px 0;
  }

  .contact-page-header {
    padding: 100px 0 50px 0;
  }
  
  .contact-stats {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  
  .contact-circle {
    width: 120px;
    height: 120px;
  }
  
  .contact-icon {
    font-size: 3rem;
  }
  
  .contact-features {
    margin-top: 2rem;
  }
  
  .contact-intro,
  .contact-cards,
  .contact-form-section,
  .map-section {
    padding: 80px 0;
  }
  
  .contact-form {
    padding: 3rem 2rem;
  }
  
  .map-container {
    height: 400px;
  }
  
  .map-overlay {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }

  .products-page-header {
    padding: 100px 0 50px 0;
  }
  
  .product-stats {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
  
  .precision-circle {
    width: 120px;
    height: 120px;
  }
  
  .precision-icon {
    font-size: 3rem;
  }
  
  .precision-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .products-intro,
  .range-overview,
  .products-section {
    padding: 80px 0;
  }
  
  .product-image {
    height: 220px;
  }
  
  .product-content {
    padding: 2rem 1.5rem;
  }
  
  .product-modal .modal-body {
    padding: 2rem;
  }

  @keyframes scroll-left-to-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 17));
    }
  }
}

@media (max-width: 576px) {
  .service-detail-image {
    min-height: 250px;
  }
    
  .service-detail-image img {
    padding: 1rem;
  }

  .timeline-content {
    padding: 1.5rem 1rem;
  }
  
  .timeline-heading {
    font-size: 1.3rem;
  }
  
  .timeline-highlight {
    padding: 0.5rem 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  
  .trust-badge {
    padding: 0.5rem 1.5rem;
  }
  
  .badge-text,
  .badge-year {
    font-size: 0.9rem;
  }
  
  .industry-item {
    padding: 1.25rem;
  }
  
  .industry-icon {
    width: 60px;
    height: 60px;
  }
  
  .industry-icon i {
    font-size: 1.5rem;
  }
  
  .industry-content h3 {
    font-size: 1.2rem;
  }
  
  .industry-content p {
    font-size: 0.95rem;
  }
  
  .certifications-box,
  .stat-item {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .slider-btn {
    padding: 1rem 1.5rem;
  }
  
  .btn-label {
    font-size: 0.9rem;
  }

  .section-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .welcome-title {
    margin-bottom: 1.5rem;
  }
  
  .welcome-features {
    margin: 1rem 0;
  }
  
  .card-content {
    padding: 2rem 1.5rem;
  }
  
  .clients-carousel {
    padding: 2rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonials-navigation {
    gap: 1rem;
  }
  
  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .capability-item,
  .product-category {
    flex-direction: column;
    text-align: center;
  }
  
  .capability-icon,
  .category-icon {
    margin: 0 auto 1rem;
  }
  
  .advantage-card {
    padding: 2rem 1.2rem;
  }
  
  .section-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
  
  .service-card .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .quote-section blockquote {
    font-size: 1.4rem;
  }

  .range-card {
    margin-bottom: 2rem;
  }
  
  .range-header {
    padding: 2rem 1.5rem;
  }
  
  .range-content {
    padding: 2rem 1.5rem;
  }
  
  .product-card {
    margin-bottom: 2rem;
  }
  
  .product-content h3 {
    font-size: 1.2rem;
  }
  
  .view-details-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-card {
    margin-bottom: 2rem;
  }
  
  .card-header {
    padding: 2rem 1.5rem;
  }
  
  .card-content {
    padding: 2rem 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .btn-submit {
    width: 100%;
    max-width: none;
  }
  
  .map-container {
    height: 300px;
    border-radius: 15px;
  }

  .clients-track {
      animation-duration: 80s; /* Even slower for very small screens */
  }
    
  .client-logo {
    max-width: 100px;
    max-height: 45px;
  }

  .service-logo {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  @keyframes scroll-left-to-right {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(calc(-100px * 17));
      }
  }
}


/* ========================================
   CONTACT PAGE SPECIFIC STYLES
   ======================================== */
.contact-intro {
  padding: 100px 0;
  background: var(--light-gray);
}

.contact-intro h2 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.contact-intro p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.contact-cards {
  padding: 80px 0;
  background: white;
}

.contact-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  margin-bottom: 2rem;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #ff4444);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(235, 17, 17, 0.3);
}

.contact-card h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--dark-color);
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: var(--light-gray);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-gray);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(235, 17, 17, 0.1);
  background: white;
}

.form-control.is-invalid {
  border-color: var(--error-color);
}

.form-control.is-valid {
  border-color: var(--success-color);
}

.invalid-feedback {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: white;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Success/Error Messages */
.alert-custom {
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: none;
}

.alert-success {
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
}

.alert-error {
  background: linear-gradient(135deg, var(--error-color), #f87171);
  color: white;
}

/* ========================================
   ENHANCED CONTACT PAGE STYLES
   ======================================== */

/* Contact Page Header - Less Jarring */
.contact-page-header {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(241, 245, 249, 0.9));
  padding: 140px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.contact-page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.contact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-stats .stat-box {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(235, 17, 17, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-stats .stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

/* Enhanced Contact Introduction */
.contact-intro {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.intro-visual {
  position: relative;
  text-align: center;
}

.contact-showcase {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.contact-circle {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(235, 17, 17, 0.3);
}

.contact-icon {
  font-size: 4rem;
  color: white;
}


.floating-contact-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(235, 17, 17, 0.1);
}

.element-1 {
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.element-2 {
  bottom: 30%;
  left: 5%;
  animation: float 6s ease-in-out infinite 2s;
}

.element-3 {
  top: 60%;
  right: 20%;
  animation: float 6s ease-in-out infinite 4s;
}

.floating-element i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.feature-badge {
  background: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(235, 17, 17, 0.1);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  transform: translateX(10px);
  border-color: var(--primary-color);
}

.feature-badge i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.feature-badge span {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.intro-content {
  padding-left: 2rem;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--dark-color);
}

.highlight-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

/* Enhanced Contact Cards */
.contact-cards {
  padding: 100px 0;
  background: white;
  position: relative;
}

.contact-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(235, 17, 17, 0.1);
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 2rem;
  color: white;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.card-content {
  padding: 2.5rem 2rem;
  text-align: center;
}

.card-content h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.card-content p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.card-content a:hover {
  color: var(--dark-color);
}

.contact-action {
  margin-top: 1.5rem;
}

.action-btn {
  background: rgba(235, 17, 17, 0.1);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid rgba(235, 17, 17, 0.2);
}

.action-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.status-badge.online {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.offline {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Enhanced Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: var(--light-gray);
  position: relative;
}

.contact-form {
  background: white;
  padding: 4rem 3rem;
  border-radius: 25px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(235, 17, 17, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24);
}

.form-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 15px 40px rgba(235, 17, 17, 0.3);
}

.form-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.form-subtitle {
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.form-label i {
  color: var(--primary-color);
  width: 20px;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-gray);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(235, 17, 17, 0.1);
  background: white;
  transform: translateY(-2px);
}

.form-control.is-invalid {
  border-color: var(--error-color);
}

.form-control.is-valid {
  border-color: var(--success-color);
}

.invalid-feedback {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
}

.invalid-feedback::before {
  content: '\f071';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0.5rem;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 15px 40px rgba(235, 17, 17, 0.3);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #dc2626, var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(235, 17, 17, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Enhanced Map Section */
.map-section {
  padding: 100px 0;
  background: white;
}

.map-container {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
  height: 500px;
  position: relative;
  border: 1px solid rgba(235, 17, 17, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(235, 17, 17, 0.1);
  max-width: 300px;
  z-index: 10;
}

.location-info h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.location-info h5 i {
  color: var(--primary-color);
}

.location-info p {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.map-btn {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.map-btn:hover {
  background: #dc2626;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(235, 17, 17, 0.3);
}

/* Success/Error Messages */
.alert-custom {
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: none;
  display: flex;
  align-items: center;
}

.alert-custom::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 1rem;
  font-size: 1.2rem;
}

.alert-success {
  background: linear-gradient(135deg, var(--success-color), #34d399);
  color: white;
}

.alert-success::before {
  content: '\f058';
}

.alert-error {
  background: linear-gradient(135deg, var(--error-color), #f87171);
  color: white;
}

.alert-error::before {
  content: '\f071';
}

/* Mobile Responsive Improvements */
@media (max-width: 992px) {
  .contact-page-header {
    padding: 120px 0 60px 0;
  }
  
  .contact-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .intro-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .floating-contact-elements {
    display: none;
  }
}


/* ========================================
   FEATURES SECTION STYLES
   ======================================== */
.features-section {
  padding: 100px 0;
  background: white;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  height: 100%;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #ff4444);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.feature-card h4 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--secondary-color);
}

/* ========================================
   SERVICES SECTION STYLES (SHARED)
   ======================================== */
.services-section {
  padding: 100px 0;
  background: white;
}

.service-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-accordion .accordion-header button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  border-radius: 15px;
}

.service-accordion .accordion-header button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.service-accordion .accordion-body {
  padding: 1.5rem;
  background: white;
  color: var(--secondary-color);
}

/* ========================================
   QUOTE SECTION STYLES
   ======================================== */
.quote-section {
  background: linear-gradient(135deg, var(--dark-color), #334155);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

.quote-section.services-quote blockquote {
  font-size: 1.8rem;
  position: relative;
}

.quote-section.services-quote blockquote::before,
.quote-section.services-quote blockquote::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: bold;
}

.quote-section .quote-author {
  font-size: 1.1rem;
  opacity: 0.8;
}

.quote-section.services-quote .quote-author {
  color: var(--secondary-color);
  font-weight: 500;
  opacity: 1;
}

.quote-section.services-quote {
  background: linear-gradient(135deg, var(--dark-color), #334155);
  color: white;
  padding: 80px 0;
  position: relative;
}

.quote-section.services-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.quote-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
}

.quote-section blockquote {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.quote-author {
  font-size: 1.1rem;
  color: #fbbf24;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* ========================================
   PRODUCTS PREVIEW STYLES
   ======================================== */
.products-preview {
  padding: 80px 0;
  background: white;
}

.products-preview img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.products-preview img:hover {
  transform: scale(1.05);
}

/* ========================================
   BUSINESS FIELDS SECTION STYLES
   ======================================== */
.business-fields {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(255, 255, 255, 0.9));
  padding: 120px 0;
  position: relative;
}

.business-fields::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.02'%3E%3Cpath d='M40 40L20 20h40v40z'/%3E%3C/g%3E%3C/svg%3E");
}

.section-title {
 font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.business-field-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(235, 17, 17, 0.1);
  height: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.business-field-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color), #dc2626);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.business-field-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.business-field-card h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.business-field-card p {
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.card-content {
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.card-content h5 {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card-content p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.business-field-card:hover .card-accent {
  transform: scaleX(1);
}

/* ========================================
   CLIENTS SECTION STYLES
   ======================================== */
.clients-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    position: relative;
    overflow: hidden; 
}

.clients-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.02'%3E%3Ccircle cx='60' cy='60' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.clients-scroller {
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    position: relative;
}

.clients-track {
    display: flex;
    width: calc(200px * 34);
    animation: scroll-left-to-right 120s linear infinite;
    will-change: transform; 
}


.clients-track:hover {
    animation-play-state: paused;
}

.client-item {
    flex-shrink: 0;
    width: 200px; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.client-logo {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 1;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-left-to-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 17));
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */
.footer {
  background: linear-gradient(135deg, var(--dark-color), #334155);
  color: #e2e8f0;
  padding: 60px 0 20px 0;background: linear-gradient(135deg, var(--dark-color), #334155);
  color: #e2e8f0;
  padding: 60px 0 30px 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24, var(--primary-color));
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  max-width: 120px;
  filter: brightness(1.2);
  margin-bottom: 1rem;
}

.footer-description {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer p {
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer-logo {
  max-width: 140px;
  filter: brightness(1.2);
}

social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem 0;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top:hover {
  background: var(--dark-color);
  transform: translateY(-3px);
}

.scroll-top.show {
  display: flex;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }
  
  .industry-icon {
    width: 80px;
    height: 80px;
  }
  
  .industry-icon i {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding-top: 100px;
  }
  
  .hero-container {
    padding-top: 1rem;
  }
  
  .hero-row {
    min-height: calc(100vh - 150px);
  }
  
  .industry-item {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .industry-icon {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .hero-stats {
    margin-top: 3rem;
  }
  
  .slider-nav {
    gap: 1rem;
  }
  
  .slider-btn {
    min-width: 180px;
    padding: 1.25rem 1.5rem;
  }

  .brand-text {
    display: block;
  }

  .footer {
    padding: 50px 0 25px 0;
  }

  .about-page-header {
    padding: 120px 0 60px 0;
  }
  
  .stats-highlight {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .stat-box {
    padding: 1.5rem 1rem;
  }
  
  .about-timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 2rem;
  }
  
  .capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .showcase-grid {
    gap: 1rem;
  }
  
  .about-image {
    max-width: 100%;
  }

  .services-page-header {
    padding: 120px 0 60px 0;
  }
  
  .service-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .intro-content {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .service-benefits {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================================
   INDUSTRY RECOGNITION SECTION STYLES
   ======================================== */
.awards-recognition {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.9));
    position: relative;
    overflow: hidden;
}

.awards-recognition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23eb1111' fill-opacity='0.02'%3E%3Cpath d='M60 30l8 16h18l-14.5 11 5.5 17L60 63l-17 11 5.5-17L34 46h18z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Floating Background Icons */
.awards-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(235, 17, 17, 0.1);
    font-size: 4rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

/* Awards Content */
.awards-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.awards-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #fbbf24);
    border-radius: 2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Recognition Source */
.recognition-source {
    margin-bottom: 2rem;
}

.magazine-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(235, 17, 17, 0.1);
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.magazine-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.magazine-badge i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.magazine-info {
    display: flex;
    flex-direction: column;
}

.magazine-name {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.2;
}

.year-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 0.25rem;
}

.awards-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.awards-description strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Float Animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px); 
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .awards-recognition {
        padding: 80px 0 60px;
    }
    
    .awards-content {
        padding-right: 0;
        text-align: center;
    }
    
    .awards-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        margin-bottom: 1.5rem;
    }
    
    .awards-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .floating-icon {
        font-size: 3rem;
    }
    
    .floating-icon-1 {
        top: 5%;
        left: 5%;
    }
    
    .floating-icon-2 {
        top: 15%;
        right: 5%;
    }
    
    .floating-icon-3 {
        bottom: 15%;
        left: 5%;
    }
}

@media (max-width: 576px) {
    .awards-recognition {
        padding: 60px 0 40px;
    }
    
    .magazine-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .magazine-info {
        align-items: center;
    }
    
    .floating-icon {
        font-size: 2.5rem;
        opacity: 0.05;
    }
    
    .awards-description {
        font-size: 1rem;
        text-align: left;
    }
}

/* Additional Hover Effects */
.awards-content:hover .highlight-text::after {
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}


/* Awards Visual (Right Side) */
.awards-visual {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.awards-visual .recognition-source {
    margin-top: 2rem;
    margin-bottom: 0;
}

.award-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
}

.award-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(235, 17, 17, 0.3);
    animation: gentle-pulse 4s ease-in-out infinite;
}

.award-inner {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

.trophy-icon {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.award-text .top-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.award-text .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 0.8;
    margin: 0.25rem 0;
}

.award-text .bottom-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* Decorative Stars */
.decorative-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decorative-stars i {
    position: absolute;
    color: #fbbf24;
    font-size: 1.5rem;
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.star-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.4s;
}

.star-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 0.8s;
}

.star-4 {
    bottom: 15%;
    right: 20%;
    animation-delay: 1.2s;
}

.star-5 {
    top: 50%;
    right: 5%;
    animation-delay: 1.6s;
}

/* Animations */
@keyframes gentle-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 20px 40px rgba(235, 17, 17, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 25px 50px rgba(235, 17, 17, 0.4);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Mobile Responsive for Right Side */
@media (max-width: 768px) {
    .awards-visual {
        margin-top: 3rem;
        padding: 1rem;
    }
    
    .award-showcase {
        height: 250px;
    }
    
    .award-circle {
        width: 150px;
        height: 150px;
    }
    
    .award-inner {
        width: 120px;
        height: 120px;
    }
    
    .trophy-icon {
        font-size: 1.5rem;
    }
    
    .award-text .number {
        font-size: 2rem;
    }
    
    .decorative-stars i {
        font-size: 1.2rem;
    }
}
