/* Root Colors */
:root {
  --theme-color: #b50124;
  --secondary-color: #b43336;
  --gray-color: #413131;
  --light-gray: #d4d4d4;
  --section-space: 50px;
  --white-color: #fff;
  --dark-color: #0e121d;
  --black-color: #000000;
  --border-color: #c0bfbf;
  --section-space-mobile: 50px;
}

/* Feature Item Icon Styling */
.feature-item .feature-item_icon {
  width: 65px !important;
  height: 65px !important;
  min-width: 65px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(181, 1, 36, 0.12) 0%, rgba(181, 1, 36, 0.04) 100%) !important;
  border: 1px solid rgba(181, 1, 36, 0.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 22px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.feature-item .feature-item_icon i {
  font-size: 28px !important;
  color: var(--theme-color) !important;
  transition: all 0.35s ease !important;
}

.feature-item:hover .feature-item_icon {
  background: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 22px rgba(181, 1, 36, 0.3) !important;
}

.feature-item:hover .feature-item_icon i {
  color: var(--white-color) !important;
  transform: scale(1.1) !important;
}

.mission-feature_icon img,
.mission-feature_icon svg {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.process-card_icon img,
.process-card_icon svg {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(9%) sepia(45%) saturate(3500%) hue-rotate(192deg) brightness(92%) contrast(105%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.process-card:hover .process-card_icon img,
.process-card:hover .process-card_icon svg {
  filter: brightness(0) invert(1) !important;
  transform: scale(1.08);
}

.process-card_title {
  color: var(--theme-color);
}

/* Service Card Icon (Our Expertise Page) */
.service-card-icon img,
.service-card-icon svg {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.35s ease;
}

.service-card:hover .service-card-icon img,
.service-card:hover .service-card-icon svg {
  transform: scale(1.12) translateY(-4px);
  filter: drop-shadow(0 6px 12px rgba(181, 1, 36, 0.25));
}

.service-card.style2:hover .service-card-icon img {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

/*
 =========================================
   Custom Video Hero Section
   ========================================= */
.header-layout7 .header-top {
  padding: 8px 0;
}

.main-menu>ul>li>a {
  padding: 28px 0;
}

.th-hero-video-custom {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 155px 0 150px 0;
  overflow: hidden;
  background-color: #0b0c10;
  width: 100%;
}

.th-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.th-hero-video-bg video,
.th-hero-video-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  display: block;
}

.th-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 12, 16, 0.2) 0%, rgba(11, 12, 16, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.th-hero-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
  opacity: 0.7;
}



/* Custom Polygon Subtitle in Hero */
.hero-style10 .hero-meta span:not(:last-child) {
  margin-right: 0px;
}

.hero-style10 .hero-meta span {
  border-right: 10px solid #d11111;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-meta span {
  display: inline-block;
  background-color: var(--white-color, var(--border-color));
  color: var(--theme-color, var(--border-color));
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 26px;
  clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-meta span:hover {
  background-color: var(--border-color);
  color: var(--white-color, var(--theme-color));
  transform: translateY(-3px);
}

.ani-delay-1 {
  animation: fadeInUp 0.8s ease forwards;
}

.ani-delay-2 {
  animation: fadeInUp 1s ease forwards;
}

.ani-delay-3 {
  animation: fadeInUp 1.2s ease forwards;
}

.ani-delay-4 {
  animation: fadeInUp 1.4s ease forwards;
}

.ani-delay-5 {
  animation: fadeInUp 1.6s ease forwards;
}

@media (max-width: 991px) {
  .th-hero-video-custom {
    min-height: 520px;
    padding: 110px 0 65px 0 !important;
  }

  .hero-style10 .hero-title {
    font-size: 32px !important;
    line-height: 1.25 !important;
    margin-bottom: 8px !important;
  }
}

@media (max-width: 767px) {
  .th-hero-video-custom {
    min-height: 470px;
    padding: 85px 0 45px 0 !important;
    width: 100%;
  }

  .th-hero-video-bg,
  .th-hero-video-bg video {
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
  }

  .hero-style10 .hero-meta {
    margin-bottom: 10px !important;
    gap: 3px;
  }

  .hero-style10 .hero-meta span {
    font-size: 10.5px !important;
    padding: 3px 12px !important;
    letter-spacing: 1px !important;
    border-right-width: 6px !important;
  }

  .hero-style10 .hero-title {
    font-size: 24px !important;
    line-height: 1.22 !important;
    margin-bottom: 6px !important;
  }

  .hero-style10 .hero-text {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
    max-width: 95%;
    opacity: 0.95;
  }

  .hero-style10 .btn-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }

  .hero-style10 .btn-group .th-btn {
    padding: 10px 16px !important;
    font-size: 11.5px !important;
    letter-spacing: 0.5px !important;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .th-hero-video-custom {
    min-height: 400px;
    padding: 5px 0 5px 0 !important;
  }

  .hero-style10 .hero-title {
    font-size: 21px !important;
    line-height: 1.2 !important;
  }

  .hero-style10 .btn-group .th-btn {
    padding: 9px 13px !important;
    font-size: 11px !important;
  }
}

.hero-style10 {
  padding: 0px 0 0px 0;
}

@media (min-width: 1024px) {
  .img-box16 .about-signature {
    left: -30%;
  }
}

/* Elegant Minimalist Buttons */
.btn-elegant-solid {
  background-color: var(--white-color);
  color: var(--black-color);
  border: 1px solid var(--white-color);
  border-radius: 0;
  padding: 14px 45px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.btn-elegant-solid:hover {
  background-color: transparent;
  color: var(--white-color);
}

.btn-elegant-outline {
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 14px 45px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  animation: fadeInUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

.field-bot {
  position: absolute;
  left: -9999px;
  height: 1px !important;
  width: 1px !important;
  opacity: 0 !important;
}

#name-error,
#email-error,
#contact_phone-error,
#enquiry_phone-error,
#subject-error,
#message-error {
  font-size: 13px;
  margin-bottom: 0;
}

.error {
  display: inline-block !important;
  line-height: initial;
  min-height: 19.5px;
  padding-left: 5px;
  color: var(--secondary-color);
}

/* Boxy Enquiry Form Inputs */
#enquiry_form .form-control {
  border-radius: 0 !important;
  border: 1px solid var(--theme-color) !important;
  box-shadow: none;
}

#enquiry_form .form-control:focus {
  outline: 1px solid var(--theme-color) !important;
  box-shadow: none !important;
}

/* Fix Enquiry Modal Z-Index */
#enquiryModal {
  z-index: 999999 !important;
}

.modal-backdrop {
  z-index: 999998 !important;
}

#enquiryModal,
.modal-backdrop {
  z-index: 2147483647 !important;
}

#enquiryModal {
  z-index: 2147483647 !important;
}

.modal-backdrop {
  z-index: 2147483646 !important;
}

/* =========================================
   Product Details Page Styles
   ========================================= */
.th-product .product-img {
  margin: 0 0 0px 0;
}

.product-content {
  padding: 10px;
  padding-bottom: 20px;
  border: 1px solid #eaeaea;
}

.product-details-page .product-big-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  background: var(--white-color);
  padding: 10px;
  position: relative;
  border: 1px solid #f0f0f0;
}

.product-details-page .product-big-img .img {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  background: #f8f9fa;
}

.product-details-page .product-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-details-page .product-big-img:hover img {
  transform: scale(1.05);
}

.product-details-page .product-about {
  padding-left: 25px;
}

.product-details-page .product-about .product-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
  background: linear-gradient(90deg, #1a1a1a, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-details-page .product-about .price {
  font-size: 1rem;
  color: var(--theme-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(181, 1, 36, 0.08);
  border-radius: 20px;
}

.product-details-page .product-about .text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
}

.product-details-page .product-about .actions {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eaeaea;
}

.product-details-page .product-about .th-btn {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(181, 1, 36, 0.25);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-details-page .product-about .th-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(181, 1, 36, 0.35);
}

.product-details-page .product_meta {
  background: #fdfdfd;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.product-details-page .product_meta span {
  display: block;
  margin-bottom: 10px;
  color: #555;
  font-weight: 500;
}

.product-details-page .product_meta span:last-child {
  margin-bottom: 0;
}

.product-details-page .product_meta a {
  color: var(--theme-color);
  font-weight: 600;
  margin-left: 5px;
}

.product-details-page .product_meta a:hover {
  text-decoration: underline;
}

.product-details-page .product-tab-style1 {
  margin-top: 60px;
  border-bottom: 2px solid #eaeaea;
}

.product-details-page .product-tab-style1 .nav-link {
  border-radius: 8px 8px 0 0;
  background: #f5f5f5;
  color: #666;
  font-weight: 600;
  padding: 14px 35px;
  box-shadow: none;
  border: none;
  transition: all 0.3s ease;
}

.product-details-page .product-tab-style1 .nav-link:hover {
  background: #e9e9e9;
  color: #222;
}

.product-details-page .product-tab-style1 .nav-link.active {
  background: var(--theme-color);
  color: var(--white-color);
}

.product-details-page #productTabContent {
  background: var(--white-color);
  padding: 35px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  border-top: none;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.8;
}

/* =========================================
   Sidebar Active Category Styles
   ========================================= */
.widget_categories ul li.active-category>a,
.widget_categories ul li.active>a,
.widget_categories ul li a.active {
  color: var(--theme-color) !important;
  font-weight: 700;
}

.widget_categories ul li.active-category,
.widget_categories ul li.active {
  position: relative;
}

.widget_categories ul li.active-category::before,
.widget_categories ul li.active::before {
  color: var(--theme-color) !important;
}

/* =========================================
   Image Max-Heights
   ========================================= */
.about-signature .signature img {
  max-height: 60px;
}

#brandSlide img {
  max-height: 80px;
}

.mission-content .checklist li {
  color: var(--gray-color);
}

/* =========================================
   Industries We Serve - Icon Styling
   ========================================= */
.service-list .service-list_icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: var(--theme-color);
  padding: 0;
}

/* =========================================
   Mission, Vision & Core Values Page Styling
   (Scoped to .mv-* to prevent affecting other pages)
   ========================================= */
.mv-showcase-img {
  min-height: 400px;
  object-fit: cover;
}

.mv-overlay-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.mv-floating-card {
  z-index: 3;
  max-width: 290px;
}

.mv-icon-circle {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 26, 33, 0.1);
  border-radius: 50%;
}

.service-card.style2.bg-shadow {
  border: 1px dashed;
}

.service-card.style2 {
  margin: 0px;
}

.service-card.style2:after {
  background: var(--light-gray)
}

/* Quality Assurance Page Specific Styles */
.qa-page .process-card2_text {
  font-size: 13px;
  color: var(--black-color);
}

.qa-page .team-card.style2 .team-social .icon-btn {
  --btn-size: 32px;
}

.qa-page .team-card.style2 .team-social {
  right: 24px;
  top: 38px;
}

.qa-page .team-card.style2 .team-content {
  padding: 18px;
}

/* Certificate Card Design */
.qa-page .cert-card {
  border-radius: 14px;
  background: var(--white-color);
  border: 1px solid #eef1f6;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.qa-page .cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.qa-page .cert-card .cert-img-wrap {
  height: 220px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

.qa-page .cert-card .cert-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.qa-page .cert-card:hover .cert-img-wrap img {
  transform: scale(1.05);
}

.qa-page .cert-card .cert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qa-page .cert-card:hover .cert-overlay {
  opacity: 1;
}

.qa-page .cert-card .cert-body {
  padding: 20px 22px 24px 22px;
}

.qa-page .cert-card .cert-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.img-box14 .img1 .about-text {
  font-size: 146px;
}

/* Global Export Map Board (Pure HTML/CSS/SVG Component) */
.export-map-board {
  background-color: var(--white-color);
  border: 1px solid #e2e8f0;
}

.export-map-board .country-item {
  transition: transform 0.2s ease;
  cursor: default;
}

.export-map-board .country-item:hover {
  transform: translateX(4px);
}

.export-map-board .map-marker-pin {
  position: absolute;
  z-index: 5;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.export-map-board .map-marker-pin:hover {
  transform: scale(1.3) translateY(-2px);
}

.export-map-board .map-marker-pin.pin-orange {
  color: var(--theme-color);
}

.export-map-board .map-marker-pin.pin-blue {
  color: #0284c7;
}

.export-map-board .map-marker-pin.pin-blue-pulse {
  color: #0284c7;
  animation: pinPulse 1.8s infinite;
}

@keyframes pinPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* Export Command Center Showcase Styles */
.export-command-center {
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 60%, #0b132b 100%);
  position: relative;
  padding: 80px 0;
  color: var(--white-color);
}

.export-command-center .command-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.export-command-center .command-card:hover {
  border-color: rgba(255, 94, 20, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.export-command-center .hub-badge {
  background: rgba(255, 94, 20, 0.15);
  border: 1px solid rgba(255, 94, 20, 0.4);
  color: var(--theme-color);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.export-command-center .stat-box-small {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.export-command-center .country-chip {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  transition: all 0.25s ease;
}

.export-command-center .country-chip:hover {
  background: rgba(255, 94, 20, 0.2);
  border-color: var(--theme-color);
}

/* Export Map Banner Showcase Styles */
.export-map-showcase-wrapper {
  background: var(--white-color);
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.export-map-showcase-wrapper:hover {
  box-shadow: 0 16px 40px rgba(181, 1, 36, 0.1);
  border-color: rgba(181, 1, 36, 0.3);
}

.export-map-showcase-wrapper .banner-img-box img {
  transition: transform 0.5s ease;
}

.export-map-showcase-wrapper:hover .banner-img-box img {
  transform: scale(1.015);
}

.banner-stat-chip {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 18px;
  transition: all 0.25s ease;
}

.banner-stat-chip:hover {
  background: var(--white-color);
  border-color: #b50124;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(181, 1, 36, 0.08);
}

/* =========================================
   Clean Minimalist Policy Pages Styling
   ========================================= */
.clean-policy-sec {
  background-color: #fcfcfd;
}

.clean-policy-card {
  background: var(--white-color);
  border-radius: 16px;
  border: 1px solid #eaedf1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 45px 50px;
}

@media (max-width: 767px) {
  .clean-policy-card {
    padding: 25px 20px;
  }
}

.clean-policy-meta {
  color: #777777;
  font-size: 0.88rem;
  margin-bottom: 25px;
}

.clean-policy-title {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(181, 1, 36, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.clean-policy-title span.number {
  color: var(--theme-color);
  font-weight: 800;
}

.clean-policy-text {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.clean-policy-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.clean-policy-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #4a5568;
  font-size: 0.98rem;
  line-height: 1.7;
}

.clean-policy-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--theme-color);
  font-size: 1.3rem;
  line-height: 1;
}

.clean-policy-contact-box {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 35px;
}

.clean-policy-contact-box h5 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 12px;
}

.clean-policy-contact-box p {
  color: #64748b;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.clean-policy-contact-box a {
  color: var(--theme-color);
  font-weight: 600;
}

.clean-policy-contact-box a:hover {
  text-decoration: underline;
}

/* =========================================
   Form Validation Error Space & Captcha Styling
   ========================================= */
.error-placeholder {
  min-height: 22px;
  margin-top: 4px;
  display: block;
}

label.error {
  display: block !important;
  color: var(--theme-color);
  font-size: 0.825rem;
  line-height: 1.3;
  margin-bottom: 0;
  margin-top: 0;
}

label.error:empty {
  visibility: hidden;
  display: block !important;
  height: 0;
}

.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-input {
  width: 100%;
}

.captcha-img {
  height: 55px !important;
  width: 135px;
  border-radius: 4px;
  border: 1px solid #c02026;
  object-fit: cover;
  background-color: var(--white-color);
  flex-shrink: 0;
}

.captcha-refresh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0 4px;
  flex-shrink: 0;
}

.captcha-refresh-btn:hover {
  color: var(--secondary-color, #b43336);
}

/* =========================================
   Clean Form Input Borders
   ========================================= */
.form-control,
.form-select,
textarea.form-control,
input.form-control {
  border: 1px solid var(--border-color) !important;
  background-color: var(--white-color) !important;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus,
input.form-control:focus {
  border-color: var(--theme-color) !important;
  background-color: var(--white-color) !important;
  box-shadow: 0 0 0 3px rgba(181, 1, 36, 0.1);
}

.form-control.error,
textarea.form-control.error,
input.form-control.error {
  border-color: var(--theme-color) !important;
}

.our-expertise .service-card.style2:hover .service-card-text {
  color: var(--gray-color);
}

.our-expertise .service-card.style2:hover .box-title a {
  color: var(--theme-color);
}

.our-expertise .service-card {
  min-height: -webkit-fill-available;
  margin-bottom: 18px;
}

/* =========================================
   Contact Feature Cards (Equal Height & Refined Border)
   ========================================= */
.contact-feature {
  height: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color, #e2e8f0) !important;
  background-color: var(--white-color);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-feature:hover {
  border-color: var(--theme-color, #b50124) !important;
  box-shadow: 0 8px 25px rgba(181, 1, 36, 0.08);
  transform: translateY(-2px);
}

.contact-map iframe {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}

.contact-wrap2 {
  margin-top: 50px;
  border: 1px solid var(--border-color);
}

/* =========================================
   Footer Color Management & Light Background Theme
   ========================================= */
.footer-wrapper.footer-layout5 {
  background-color: #f8fafc !important;
  color: #333333 !important;
  position: relative;
  border-top: 1px solid #e2e8f0;
}

.footer-wrapper .footer-top {
  border-bottom: 1px solid rgb(89 89 89 / 31%);
}

/* Vertical Divider between Footer Logo and Subscribe Box */
@media (min-width: 992px) {
  .footer-top-logo-col {
    border-right: 1px solid rgb(89 89 89 / 31%);
    padding-right: 35px;
  }

  .footer-wrapper .footer-top .col-lg-8,
  .footer-wrapper .footer-top .col-xl-9 {
    padding-left: 35px;
  }
}

.footer-wrapper .subscribe-box_text {
  color: var(--theme-color) !important;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-wrapper .subscribe-box_title {
  color: #1a1a1a !important;
  font-weight: 700;
}

.footer-wrapper .widget-area {
  padding: 60px 0 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.footer-wrapper .widget_title {
  color: #1a1a1a !important;
  font-weight: 700 !important;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}



.footer-wrapper .about-text {
  color: #4a5568 !important;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Social media buttons */
.footer-wrapper .th-social.style3 a,
.footer-wrapper .th-social a {
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: var(--white-color) !important;
  border: 1px solid #cbd5e1 !important;
  color: #334155 !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-right: 6px;
  font-size: 15px;
}

.footer-wrapper .th-social.style3 a:hover,
.footer-wrapper .th-social a:hover {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: var(--white-color) !important;
  transform: translateY(-2px);
}

/* Quick links and categories menu */
.footer-wrapper .widget_nav_menu ul.menu {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.footer-wrapper .widget_nav_menu ul.menu li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-wrapper .widget_nav_menu ul.menu li a {
  color: #334155 !important;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-wrapper .widget_nav_menu ul.menu li a::before {
  content: "→";
  margin-right: 8px;
  color: var(--theme-color) !important;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.25s ease;
}

.footer-wrapper .widget_nav_menu ul.menu li a:hover {
  color: var(--theme-color) !important;
  transform: translateX(4px);
}

/* Contact Details Widget */
.footer-wrapper .th-widget-contact .info-box-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-wrapper .th-widget-contact .info-box_icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background-color: var(--theme-color) !important;
  color: var(--white-color) !important;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.footer-wrapper .th-widget-contact .info-box_text,
.footer-wrapper .th-widget-contact .info-box_text a,
.footer-wrapper .th-widget-contact .info-box_link {
  color: #2d3748 !important;
  font-size: 0.925rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 0;
  transition: color 0.25s ease;
}

.footer-wrapper .th-widget-contact .info-box_text a:hover,
.footer-wrapper .th-widget-contact .info-box_link:hover {
  color: var(--theme-color) !important;
}

/* Copyright Row */
.footer-wrapper .copyright-wrap {
  background-color: #fffdfda6 !important;
  padding: 18px 0;
  border-top: 1px solid #e2e8f0;
}

.footer-wrapper .copyright-text,
.footer-wrapper .copyright-text p {
  color: #4a5568 !important;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-wrapper .copyright-text .footer-link a {
  color: var(--theme-color) !important;
  font-weight: 700 !important;
  transition: color 0.2s ease;
}

.footer-wrapper .copyright-text .footer-link a:hover {
  color: var(--secondary-color) !important;
  text-decoration: underline !important;
}

.footer-wrapper .footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-wrapper .footer-links ul li {
  display: inline-block;
}

.footer-wrapper .footer-links ul li a {
  color: #4a5568 !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-wrapper .footer-links ul li a:hover {
  color: var(--theme-color) !important;
}

/* =========================================
   Modern Header Dropdown & Navigation Styling
   ========================================= */

/* Desktop Navigation Menu Links */
.main-menu>ul>li {
  position: relative;
  margin: 0 14px;
}

.main-menu>ul>li>a {
  position: relative;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  padding: 28px 0;
  transition: color 0.3s ease;
  display: inline-block;
}

.main-menu>ul>li.menu-item-has-children>a::after {
  content: "\f107";
  font-family: var(--icon-font, "Font Awesome 6 Pro");
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
  display: inline-block !important;
  text-decoration: none !important;
  vertical-align: middle;
}

.main-menu>ul>li:hover>a,
.main-menu>ul>li.active>a,
.main-menu>ul>li.th-active>a {
  color: var(--theme-color) !important;
}

.main-menu>ul>li.menu-item-has-children:hover>a::after,
.main-menu>ul>li.active.menu-item-has-children>a::after,
.main-menu>ul>li.th-active.menu-item-has-children>a::after {
  color: var(--white-color) !important;
  text-decoration: none !important;
}

.main-menu ul li.active>a,
.main-menu ul li.th-active>a {
  text-decoration: underline;
}

/* Desktop Sub-Menu Dropdown Container */
.main-menu ul li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background-color: var(--white-color) !important;
  border-radius: 12px;
  padding: 10px;
  margin: 0;
  list-style: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaedf1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 99;
}

/* Sub-Menu Visibility on Hover */
.main-menu ul li:hover>ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sub-Menu Items */
.main-menu ul li ul.sub-menu li {
  margin: 4px 0;
  padding: 0;
  display: block;
  width: 100%;
}

.main-menu ul li ul.sub-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.925rem;
  font-weight: 600;
  color: #1e293b !important;
  border-radius: 8px;
  transition: all 0.25s ease;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  line-height: 1.4;
  text-transform: capitalize;
}

.main-menu ul li ul.sub-menu li a .menu-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: rgba(181, 1, 36, 0.08);
  color: var(--theme-color) !important;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.main-menu ul li ul.sub-menu li a:hover,
.main-menu ul li ul.sub-menu li.active>a,
.main-menu ul li ul.sub-menu li.th-active>a {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color) !important;
  color: var(--white-color) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(181, 1, 36, 0.25);
}

.main-menu ul li ul.sub-menu li a:hover .menu-icon,
.main-menu ul li ul.sub-menu li.active>a .menu-icon,
.main-menu ul li ul.sub-menu li.th-active>a .menu-icon {
  background-color: var(--white-color) !important;
  color: var(--theme-color) !important;
}

.main-menu ul li ul.sub-menu li a::before {
  display: none !important;
}

/* =========================================
   Mobile Responsive Navigation & Drawer Styling
   ========================================= */

/* Mobile Backdrop */
.th-menu-wrapper {
  background-color: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(4px);
}

/* Mobile Sidebar Drawer Panel */
.th-menu-wrapper .th-menu-area {
  background-color: var(--white-color) !important;
  border-right: 3px solid var(--theme-color) !important;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15) !important;
  overflow: visible !important;
  position: relative !important;
}

.th-menu-wrapper .mobile-logo {
  background-color: var(--white-color) !important;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 15px !important;
}

/* Mobile Close Button (Half-On-Edge Badge) */
.th-menu-wrapper .th-menu-toggle {
  position: absolute !important;
  top: 22px !important;
  right: -18px !important;
  transform: none !important;
  z-index: 99999 !important;
  background-color: var(--theme-color) !important;
  color: var(--white-color) !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(181, 1, 36, 0.4) !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
}

.th-menu-wrapper .th-menu-toggle:hover {
  transform: rotate(90deg) !important;
  background-color: #1a1a1a !important;
}

/* Mobile Menu Items List */
.th-mobile-menu {
  padding: 15px 20px 20px 20px !important;
}

.th-mobile-menu ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #f1f5f9 !important;
  position: relative !important;
  list-style: none !important;
}

.th-mobile-menu ul li a {
  font-size: 0.975rem !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  padding: 13px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: color 0.25s ease !important;
  text-decoration: none !important;
}

/* Fix overlapping pseudo elements on main menu links */
.th-mobile-menu>ul>li>a::before,
.th-mobile-menu>ul>li>a::after {
  content: none !important;
  display: none !important;
}

.th-mobile-menu ul li a:hover,
.th-mobile-menu ul li.th-active>a,
.th-mobile-menu ul li.active>a {
  color: var(--theme-color) !important;
}

/* Mobile Sub-Menu Container */
.th-mobile-menu ul li ul.sub-menu {
  background-color: #f8fafc !important;
  border-left: 3px solid var(--theme-color) !important;
  border-radius: 0 10px 10px 0 !important;
  padding: 10px 10px !important;
  margin: 6px 0 12px 0 !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03) !important;
  list-style: none !important;
}

.th-mobile-menu ul li ul.sub-menu li {
  border-bottom: none !important;
  margin-bottom: 4px !important;
}

.th-mobile-menu ul li ul.sub-menu li a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: #475569 !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
}

.th-mobile-menu ul li ul.sub-menu li a .menu-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  background-color: rgba(181, 1, 36, 0.08) !important;
  color: var(--theme-color) !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 10px !important;
  font-size: 12px !important;
  transition: all 0.25s ease !important;
}

.th-mobile-menu ul li ul.sub-menu li a:hover,
.th-mobile-menu ul li ul.sub-menu li.active>a,
.th-mobile-menu ul li ul.sub-menu li.th-active>a {
  color: var(--theme-color) !important;
  background-color: rgba(181, 1, 36, 0.06) !important;
}

/* Mobile Expand Badge Icon (+ / -) */
.th-mobile-menu ul .th-item-has-children>a .th-mean-expand,
.th-mobile-menu ul .menu-item-has-children>a .th-mean-expand,
.th-mobile-menu ul .th-item-has-children>a:after,
.th-mobile-menu ul .mean-expand {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  border-radius: 50% !important;
  background-color: #e2e8f0 !important;
  color: #1e293b !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  transition: all 0.25s ease !important;
}

.th-mobile-menu ul .th-item-has-children.th-active>a .th-mean-expand,
.th-mobile-menu ul .menu-item-has-children.th-active>a .th-mean-expand,
.th-mobile-menu ul .th-item-has-children.active>a .th-mean-expand,
.th-mobile-menu ul .menu-item-has-children.active>a .th-mean-expand {
  background-color: var(--theme-color) !important;
  color: var(--white-color) !important;
}

.footer-links li {
  border-right: 1px solid var(--theme-color);
}

/* ===== MOBILE DRAWER FOOTER & RESPONSIVE SUB-HEADER ===== */
@media (max-width: 1023.98px) {
  .header-top {
    display: none !important;
  }
}

.th-menu-wrapper .th-menu-area {
  max-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.th-menu-wrapper .th-mobile-footer {
  padding: 20px 20px 30px 20px !important;
  border-top: 1px solid #e2e8f0 !important;
  margin-top: auto !important;
  background-color: var(--white-color) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.th-menu-wrapper .mobile-contact-info ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 14px 0 !important;
}

.th-menu-wrapper .mobile-contact-info ul li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 10px !important;
  font-size: 0.9rem !important;
  color: #475569 !important;
  border: none !important;
  padding: 0 !important;
  list-style-type: none !important;
}

.th-menu-wrapper .mobile-contact-info ul li::before,
.th-menu-wrapper .mobile-contact-info ul li::after {
  content: none !important;
  display: none !important;
}

.th-menu-wrapper .mobile-contact-info ul li i {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  background-color: rgba(181, 1, 36, 0.08) !important;
  color: var(--theme-color) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
}

.th-menu-wrapper .mobile-contact-info ul li a {
  color: var(--theme-color) !important;
  font-weight: 600 !important;
  font-size: 0.925rem !important;
  text-decoration: none !important;
  padding: 0 !important;
  background: transparent !important;
  font-family: inherit !important;
}

.th-menu-wrapper .mobile-contact-info ul li a:hover {
  color: #1e293b !important;
}

.th-menu-wrapper .mobile-social {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 10px !important;
}

.th-menu-wrapper .mobile-social a {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 50% !important;
  background-color: #f1f5f9 !important;
  color: var(--theme-color) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  border: none !important;
  padding: 0 !important;
}

.th-menu-wrapper .mobile-social a:hover {
  background-color: var(--theme-color) !important;
  color: var(--white-color) !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 600px) {

  .index .img2 {
    display: none;
  }
}

@media (max-width: 991px) {
  .img-box16 {
    height: 480px;
  }

  .about-wrapper .about-desc {
    max-width: none;
  }
}

/* Why Choose Section - Display Title & Details First, Image Second on Mobile/Tablet (< 1200px) */
@media (max-width: 1199.98px) {

  .row.flex-row-reverse:has(.wcu-img-5),
  .space .row.flex-row-reverse {
    flex-direction: column-reverse !important;
  }
}

@media (max-width: 767.98px) {

  /* Center all section titles, subtitles, and text on phone devices (< 768px) */
  .title-area,
  .about-title-area,
  .sec-title-area {
    text-align: center !important;
  }

  .title-area [class*="sub-title"],
  .about-title-area [class*="sub-title"],
  .sec-title-area [class*="sub-title"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .title-area .sec-title,
  .title-area .sec-text,
  .about-title-area .sec-title,
  .about-title-area .sec-text,
  .sec-title-area .sec-title,
  .sec-title-area .sec-text {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center footer subscribe box text and button on phone (< 768px) */
  .subscribe-box {
    justify-content: center !important;
    text-align: center !important;
  }

  /* Center section buttons on phone (< 768px) */
  .about-wrapper,
  .sec-btn {
    text-align: center !important;
  }

  .about-wrapper a.th-btn,
  .sec-btn a.th-btn,
  .subscribe-box a.th-btn,
  a.th-btn.mx-auto {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center Company Achievements counter items on phone devices (< 768px) with inline icon & text */
  .counter-grid.style4 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: left !important;
  }

  .counter-grid.style4 .counter-grid_icon {
    margin-right: 15px !important;
    margin-bottom: 0 !important;
  }

  .counter-grid.style4 .details {
    text-align: left !important;
  }
}

/* Industries We Serve Section - Alternating Left/Right Alignment on Mobile/Tablet ONLY (< 992px) */
@media (max-width: 991.98px) {
  .service-area11 .service-list-wrap:nth-child(even) .service-list {
    text-align: right !important;
  }

  .service-area11 .service-list-wrap:nth-child(even) .service-list_icon {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .service-area11 .service-list-wrap:nth-child(even) .service-list_content {
    text-align: right !important;
  }

  .service-area11 .service-list-wrap:nth-child(odd) .service-list {
    text-align: left !important;
  }

  .service-area11 .service-list-wrap:nth-child(odd) .service-list_icon {
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  .service-area11 .service-list-wrap:nth-child(odd) .service-list_content {
    text-align: left !important;
  }
}

.process-card_subtitle {
  font-size: 22px;
}

/* Quality Assurance Page - Managed Positioning for Spinning Badge & Experience Text */
@media(max-width:600px) {
  #quality-sec {
    overflow: visible !important;
  }

  .faq-img5 {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 30px !important;
  }

  .faq-img5 .img1 {
    position: relative !important;
    z-index: 2 !important;
  }

  .about-company-since-wrap {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 3 !important;
  }

  .about-company-since-wrap .about-tag {
    position: absolute !important;
    left: 0px !important;
    top: -50px !important;
    width: 338px !important;
    height: 338px !important;
    border-radius: 50% !important;
    z-index: 1 !important;
    animation: spin 10s infinite alternate-reverse !important;
    pointer-events: auto !important;
  }

  .about-company-since-wrap .experience-wrap {
    position: absolute !important;
    left: 12% !important;
    top: 18% !important;
    bottom: auto !important;
    right: auto !important;
    z-index: 4 !important;
    transform: rotate(334deg) !important;
    font-family: var(--title-font) !important;
    font-weight: 800 !important;
    font-size: 58px !important;
    line-height: 48px !important;
    color: var(--white-color) !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4) !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    pointer-events: auto !important;
  }

  .about-company-since-wrap .experience-wrap span {
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    display: block !important;
    color: var(--white-color) !important;
  }
}

/* Tablet & Large Mobile Adjustments (< 992px) */
@media (max-width: 991.98px) {
  .img-box14 .img1 .about-text {
    font-size: 108px;
  }

  .faq-img5 {
    margin-top: 50px !important;
    margin-bottom: 40px !important;
  }

  .about-company-since-wrap .about-tag {
    top: -40px !important;
    left: 0 !important;
    transform: scale(0.75) !important;
    transform-origin: top left !important;
  }

  .about-company-since-wrap .experience-wrap {
    top: 22% !important;
    left: 15% !important;
    font-size: 42px !important;
    line-height: 36px !important;
  }

  .about-company-since-wrap .experience-wrap span {
    font-size: 13px !important;
    line-height: 20px !important;
  }
}

/* Phone Screen Adjustments (< 576px) */
@media (max-width: 575.98px) {
  .faq-img5 {
    margin-top: 40px !important;
    margin-bottom: 30px !important;
  }

  .about-company-since-wrap .about-tag {
    position: absolute !important;
    top: -35px !important;
    left: -10px !important;
    transform: scale(0.55) !important;
    transform-origin: top left !important;
  }

  .about-company-since-wrap .experience-wrap {
    position: absolute !important;
    top: 8% !important;
    left: 10% !important;
    bottom: auto !important;
    font-size: 32px !important;
    line-height: 28px !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
  }

  .about-company-since-wrap .experience-wrap span {
    font-size: 11px !important;
    line-height: 16px !important;
  }
}

.project-card .box-title {
  color: var(--theme-color);
}

.project-card.style1-1:hover h4 {
  color: var(--white-color);
}

.service-card.style2 .service-card-icon {
  border-right: 0px solid var(--smoke-color);
  border-bottom: 0px solid var(--smoke-color);
  top: -54px;
  left: -44px;
}

.our-expertise .service-card.style2:hover .box-title a {
  padding: 10px;
}

/* Mobile Menu - Remove '>' Arrow Icon */
.th-mobile-menu ul li a:before {
  display: none !important;
  content: none !important;
}

.th-mobile-menu ul li a {
  padding-left: 0 !important;
}

@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 0px;
  }
}

@media (max-width: 599px) {
  .contact-form-wrap {
    margin-top: 0px;
  }

  .form-group {
    margin-bottom: 5px;
  }
}

/* Accordion Images Overlay */
.th-accordion_images {
  position: relative;
  overflow: hidden;
}

.th-accordion_images::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--theme-color);
  opacity: 0.2;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
}

.process-card.style2 {
  text-align: center;
}

[data-opacity="1"]:before {
  opacity: 0;
}

.about-tag:before {
  background-color: #222;
}

.about-company-since-wrap .experience-wrap {
  left: 10%;
  top: 6%;
  font-size: 62px;
  transform: rotate(329deg);
}

.img-box14 .img1 .about-text {
  -webkit-text-stroke-color: #625c5c;
}

.img-box14 .img1 .about-text {
  left: -39%;
}

.our-expertise .service-card.style2 .service-card-text {
  color: var(--black-color) !important;
  font-size: 18px;
}

/* Header Active Menu Style */
.main-menu ul li.active>a,
.main-menu ul li.th-active>a {
  color: var(--white-color) !important;
}

/* This makes the theme's active bar white instead of red */
.main-menu ul li.active>a::before,
.main-menu ul li.th-active>a::before,
.main-menu ul li.active::before,
.main-menu ul li.th-active::before {
  background-color: var(--white-color) !important;
}

/* This makes the dropdown caret white instead of red */
.main-menu ul li.active>a::after,
.main-menu ul li.th-active>a::after,
.main-menu ul li.active::after,
.main-menu ul li.th-active::after {
  color: var(--white-color) !important;
}

.main-menu ul li.active>a::after,
.main-menu ul li.th-active>a::after {
  display: inline-block !important;
  text-decoration: none !important;
}

.breadcumb-menu li:after,
.breadcumb-title,
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  color: var(--dark-color);
}

.breadcumb-menu li a {
  color: var(--theme-color);
}

/* Mobile Phone View - Blur Breadcrumb Background Image */
@media (max-width: 767px) {
  .breadcumb-wrapper {
    position: relative;
    overflow: hidden;
  }

  .breadcumb-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(6px);
    background-color: rgba(255, 255, 255, 0.25);
    z-index: 1;
  }

  .breadcumb-wrapper>.container,
  .breadcumb-wrapper .breadcumb-content {
    position: relative;
    z-index: 2;
  }
}

.breadcumb-wrapper {
  padding: 110px 0;
  border-bottom: 2px solid var(--border-color);
}

.th-header,
.sticky-active {
  box-shadow: 0px 3px 10px #38383870;
}

textarea.form-control,
textarea {
  min-height: 100px;
}

.logo-style1 {
  padding: 0 60px 20px 0;
}

.logo-style1:before {
  background-image: url('../images/logo/logo-bg.png');
  background-repeat: no-repeat;
  background-position: right 292px center;
  background-size: 196px 208px;
}

.logo-style1::after {
  opacity: 0.9;
}

.header-layout7 .header-top-inner {
  padding-left: 292px;
}

.header-layout7 .sticky-wrapper.sticky .logo-style1 {
  padding: 6px 80px 6px 0;
}

/* Background Accent Element Opacity Control */
img[src*="bg-element.png"],
.shape-mockup img[src*="bg-element.png"] {
  opacity: 0.25;
}

.index .service-item_content {
  min-height: 220px;
}

.index .service-item {
  padding: 20px 20px 0px 20px;
}

.product-content {
  min-height: 130px;
}

.th-pagination span.active,
.th-pagination span:hover,
.th-pagination a.active,
.th-pagination a:hover {
  margin-bottom: 5px;
}

/* About Section Quote Box */
.about-quote-box {
  position: relative;
  background: linear-gradient(135deg, rgba(181, 1, 36, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-left: 4px solid var(--theme-color);
  padding: 20px 26px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(181, 1, 36, 0.08);
  border-right: 1px solid rgba(181, 1, 36, 0.08);
  border-bottom: 1px solid rgba(181, 1, 36, 0.08);
  margin-top: 68px !important;
}

.about-quote-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-quote-icon {
  color: var(--theme-color);
  font-size: 28px;
  opacity: 0.9;
  flex-shrink: 0;
  line-height: 1;
}

.about-quote-text {
  font-family: var(--body-font);
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--dark-color, #1a1a1a);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about-quote-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-quote-icon {
    font-size: 22px;
  }

  .about-quote-text {
    font-size: 14.5px;
  }
}

/* Why Choose Us Feature Cards */
.wcu-feature-card {
  background: #fdfaf9;
  border: 1px solid rgba(181, 1, 36, 0.1);
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
}

.wcu-feature-card:hover {
  background: #ffffff;
  border-color: rgba(181, 1, 36, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(181, 1, 36, 0.08);
}

.wcu-feature-card .wcu-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(181, 1, 36, 0.12) 0%, rgba(181, 1, 36, 0.04) 100%);
  border: 1px solid rgba(181, 1, 36, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.35s ease;
}

.wcu-feature-card .wcu-feature-icon i {
  font-size: 20px;
  color: var(--theme-color);
  transition: all 0.35s ease;
}

.wcu-feature-card:hover .wcu-feature-icon {
  background: var(--theme-color);
  border-color: var(--theme-color);
}

.wcu-feature-card:hover .wcu-feature-icon i {
  color: #ffffff;
  transform: scale(1.08);
}

.wcu-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 8px;
  line-height: 1.35;
}

.wcu-feature-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body-color);
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .hero-style10 .hero-meta {
    display: none;
  }

  .hero-style10 .hero-text {
    font-size: 12px !important;
  }

  .logo-style1 {
    padding: 7px 27px 5px 0;
  }


}