/*====================================================
 * CSS VARIABLES
 *====================================================*/
:root {
  /* Primary Brand Colors */
  --primary-red: #C11D2B;
  --premium-black: #111111;
  --pure-white: #FFFFFF;

  /* Secondary Colors */
  --dark-charcoal: #1E1E1E;
  --slate-grey: #444444;
  --light-grey: #F5F5F5;
  --border-grey: #E8E8E8;
  --soft-background: #FAFAFA;

  /* Accent Colors */
  --premium-silver: #C9CDD2;
  --light-silver: #ECECEC;
  --hover-red: #D92B3B;
  --dark-red: #991421;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --transition: 0.35s ease;
}

/*====================================================
 * PROFESSIONAL PRELOADER
 *====================================================*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #ffffff 0%, #f5f6f8 100%);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  /* More pronounced scale out */
  filter: blur(4px);
  /* Cinematic blur on exit */
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.preloader-logo {
  max-width: 260px;
  height: auto;
  opacity: 0;
  /* Multi-step entrance: fade in, slide up, then float */
  animation: logo-entrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, logo-float 4s ease-in-out infinite 1.2s;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.05));
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background-color: #e2e8f0;
  /* very light gray track */
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: bar-entrance 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.preloader-progress {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary-red), var(--primary-red), transparent);
  animation: progress-slide 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  border-radius: 6px;
}

@keyframes logo-entrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(5px);
  }

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

@keyframes logo-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes bar-entrance {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes progress-slide {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/*====================================================
 * GLOBAL RESET & BASE
 *====================================================*/
html,
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.3px;
  color: var(--slate-grey);
  background-color: var(--pure-white);
  overflow-x: clip !important;
  min-height: auto !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--premium-black);
  margin-top: 0;
}

h1 {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px) !important;
}

h2 {
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
  font-weight: 600;
  font-size: clamp(18px, 2vw, 22px);
}

h5 {
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 18px);
}

h6 {
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
}

p {
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.3px;
  color: var(--slate-grey);
  margin-bottom: 15px;
  font-size: 15px;
}

a {
  text-decoration: none;
  transition: var(--transition);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.3px;
  color: var(--slate-grey);
  font-size: 15px;
}

.text-orange {
  color: var(--primary-red) !important;
}

.bg-orange {
  background-color: var(--primary-red) !important;
}

.container-custom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/*====================================================
 * BUTTONS
 *====================================================*/
.btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0 15px;
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--primary-red);
  border: 1px solid var(--primary-red);
  color: var(--pure-white);
}

/* Professional classic dual-fill effect for primary button */
.btn-primary::before,
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--premium-black);
  z-index: -1;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary::before {
  left: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.btn-primary::after {
  right: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-primary:hover::after,
.btn-primary:focus::after {
  transform: scaleY(1);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  color: var(--pure-white) !important;
  border-color: var(--premium-black) !important;
  /* background-color remains var(--primary-red) but pseudo-elements cover it */
}

.btn-primary .btn-arrow {
  margin-left: 10px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--pure-white);
  color: var(--pure-white);
}

/* Professional classic dual-fill effect for secondary button */
.btn-secondary::before,
.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--pure-white);
  z-index: -1;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-secondary::before {
  left: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.btn-secondary::after {
  right: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.btn-secondary:hover::before,
.btn-secondary:focus::before,
.btn-secondary:hover::after,
.btn-secondary:focus::after {
  transform: scaleY(1);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  color: var(--premium-black) !important;
  border-color: var(--pure-white) !important;
}

/*====================================================
 * SITE HEADER
 *====================================================*/
.site-header {
  width: 100%;
  z-index: 1030;
  transition: background-color var(--transition), box-shadow var(--transition);
  background-color: transparent;
}

.site-header.scrolled {
  background-color: var(--pure-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Soft shadow on scroll */
}

/* TOP HEADER */
.top-header {
  background-color: var(--pure-white);
  border-bottom: 1px solid var(--border-grey);
  font-size: 14px;
  padding: 5px 0;
  transition: all var(--transition);
  position: relative;
  z-index: 1000;
}

.site-header.scrolled .top-header {
  height: 0;
  overflow: hidden;
  opacity: 0;
  border-bottom: none;
  padding: 0;
}

.contact-link {
  color: var(--dark-charcoal);
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-link:hover {
  color: var(--primary-red);
}

.vertical-divider {
  width: 1px;
  height: 16px;
  background-color: var(--border-grey);
  margin-right: 20px;
}

.mobile-contact-link {
  color: var(--slate-grey);
  transition: color var(--transition);
}

.mobile-contact-link:hover {
  color: var(--primary-red) !important;
}

.social-icon {
  width: 30px;
  height: 30px;
  font-size: 13px;
  border: 1px solid var(--border-grey);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-grey);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-red);
  z-index: -1;
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: inherit;
}

.social-icon:hover {
  color: var(--pure-white);
  border-color: var(--primary-red);
}

.social-icon:hover::after {
  transform: scale(1);
}

/* MAIN HEADER */
.main-header {
  height: 90px;
  background-color: var(--pure-white);
  transition: var(--transition);
  position: relative;
  z-index: 999;
}

/* Adjust transparency for top */
.site-header:not(.scrolled) .main-header {
  background-color: rgba(255, 255, 255, 0.98);
}

.site-header.scrolled .main-header {
  height: 80px;
  /* slightly shrink */
  background-color: var(--pure-white);
}

.logo-placeholder {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--premium-black);
  height: 55px;
  display: flex;
  align-items: center;
}

.site-logo {
  height: auto;
  width: 175px;
}

/* NAVIGATION */
.main-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--premium-black);
  letter-spacing: 0.5px;
  padding: 8px 10px !important;
  margin: 0 4px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 16px;
}

.main-nav .nav-link:hover {
  color: var(--primary-red);
}

.main-nav .nav-link.active {
  color: var(--primary-red);
  font-weight: 700;
}

/* Orange underline animation */
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 10px;
  right: 10px;
  height: 2px;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 2px;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  transform: scaleX(1);
  background-color: var(--primary-red);
}

/* LANGUAGE SELECTOR */
.custom-lang-selector {
  margin-right: 24px;
}

.btn-lang {
  background: var(--pure-white);
  border: none;
  border-radius: 2px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--premium-black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-lang:hover,
.btn-lang[aria-expanded="true"] {
  background: var(--pure-white);
  color: var(--primary-red);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: var(--pure-white);
  border: 1px solid var(--border-grey);
  border-radius: 2px;
  padding: 5px 0;
  min-width: 180px;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all var(--transition);
  z-index: 1050;
}

/* Custom scrollbar for dropdown (Hidden) */
.lang-dropdown-menu::-webkit-scrollbar {
  display: none;
}

.lang-dropdown-menu {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.custom-lang-selector.show .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 8px 16px;
  color: var(--premium-black);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.lang-option:hover,
.lang-option.active {
  color: var(--pure-white);
  background-color: var(--primary-red);
}

/*====================================================
 * OFFCANVAS & BURGER MENU
 *====================================================*/
.custom-toggler {
  border: none;
  box-shadow: none !important;
}

.custom-toggler:focus {
  outline: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 30px;
  height: 20px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon div {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--premium-black);
  transition: var(--transition);
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon::after {
  bottom: 0;
}

.navbar-toggler-icon div {
  top: 50%;
  transform: translateY(-50%);
}

.custom-offcanvas {
  background-color: var(--pure-white);
}

.mobile-nav .nav-link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--premium-black);
  padding: 5px;
  margin-bottom: 4px;
  transition: all var(--transition);
  border-radius: 8px;
  position: relative;
}

.mobile-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: all 0.3s ease;
  opacity: 0;
}

.mobile-nav .nav-link:hover {
  background-color: rgba(242, 101, 34, 0.05);
  color: var(--primary-red);
  padding-left: 20px;
}

.mobile-nav .nav-link:hover::before {
  width: 10px;
  opacity: 1;
  left: 5px;
}

.mobile-nav .nav-link.active {
  background-color: var(--primary-red);
  color: var(--pure-white);
  font-weight: 700;
  padding-left: 20px;
}

.mobile-nav .dropdown-menu {
  padding: 0;
  border: none;
  background-color: #f8f9fa;
  /* slightly distinct background for offcanvas dropdown */
}

.mobile-nav .dropdown-menu li {
  padding: 0 15px;
  margin: 4px 0;
}

.mobile-nav .dropdown-item {
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-radius: 4px;
  font-size: 15px;
  display: block;
  background-color: transparent !important;
  color: var(--premium-black);
}

.mobile-nav .dropdown-item::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 0px;
  height: 2px !important;
  background-color: var(--primary-red) !important;
  transition: all 0.3s ease !important;
  opacity: 0;
  z-index: 99 !important;
}

.mobile-nav .dropdown-item:hover,
.mobile-nav .dropdown-item:focus {
  background-color: transparent !important;
  color: var(--primary-red) !important;
  padding-left: 18px !important;
}

.mobile-nav .dropdown-item:hover::before,
.mobile-nav .dropdown-item:focus::before {
  width: 10px !important;
  opacity: 1 !important;
}

/* Mobile Contact Styles */
.mobile-contact a {
  color: var(--premium-black);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.mobile-contact a::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: all 0.3s ease;
  opacity: 0;
}

.mobile-contact a:hover {
  color: var(--primary-red);
  padding-left: 15px;
}

.mobile-contact a:hover::before {
  width: 10px;
  opacity: 1;
  left: 0;
}

.mobile-social .social-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border-color: var(--border-grey);
  color: var(--premium-black);
}

.mobile-social .social-icon:hover {
  background-color: var(--primary-red);
  color: var(--pure-white);
  border-color: var(--primary-red);
}

/*====================================================
 * ANIMATIONS
 *====================================================*/
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.slide-left {
  animation: slideLeft 0.8s ease forwards;
}

/*====================================================
 * PRODUCT DETAIL PAGE STYLES
 *====================================================*/
.pd-section-bg {
  padding: 3rem 0;
  background-color: #fcfcfc;
}

.product-image-container {
  position: sticky;
  top: 130px;
  /* Offset for fixed header */
  z-index: 10;
}

.product-image-container .pd-main-img {
  object-fit: contain;
  width: 100%;
}

.pd-wrapper {
  background-color: var(--pure-white);
  border-radius: 1rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 2rem;
}

@media (min-width: 768px) {
  .pd-wrapper {
    padding: 3rem;
  }
}

.product-image-container {
  top: 120px;
}


.pd-image-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
}


.pd-image-box:hover .pd-main-img {
  transform: scale(1.08);
}

.product-info-content {
  padding-left: 0;
}

@media (min-width: 992px) {
  .product-info-content {
    padding-left: 2rem;
  }
}

.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pd-cat-badge {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(227, 0, 15, 0.2);
  display: inline-flex;
  align-items: center;
}

.pd-cat-badge i {
  margin-right: 0.35rem;
}

.pd-subcat-badge {
  background-color: #f8f9fa;
  color: var(--dark-charcoal);
  border: 1px solid var(--border-grey);
  padding: 0.5rem 1rem;
  border-radius: 50rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  display: inline-flex;
  align-items: center;
}

.pd-subcat-badge i {
  color: var(--primary-red);
  margin-right: 0.35rem;
}

.pd-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--premium-black);
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.pd-title-accent {
  width: 60px;
  height: 4px;
  background: var(--primary-red);
  border-radius: 2px;
  margin-bottom: 2rem;
}


.pd-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--premium-black);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.pd-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-color: rgba(227, 0, 15, 0.1);
  color: var(--primary-red);
  margin-right: 0.5rem;
}

.pd-table-wrapper {
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.pd-table {
  font-size: 0.95rem;
}

.pd-table-key {
  width: 35%;
  font-weight: 600;
  color: var(--premium-black);
  padding: 1rem 1.25rem;
  background-color: #f8f9fa;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.pd-table-val {
  padding: 1rem 1.25rem;
  color: var(--slate-grey);
}

.pd-desc-section {
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pd-desc-content strong {
  font-weight: 700;
  color: var(--premium-black);
  font-size: 20px;
  display: block;
  font-family: var(--font-heading);
}

.whatsapp-footer-style-btn {
  padding: 0 1.25rem;
  height: 45px;
  background-color: #25D366;
  color: var(--pure-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.whatsapp-footer-style-btn:hover {
  background-color: #20BA56;
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-classic-effect {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pd-modal-title {
  color: var(--primary-red);
}

.pd-modal-icon {
  top: 0;
  transform: none;
}

.pd-modal-textarea {
  height: 100px;
  padding-top: 15px;
}

.pd-inquiry-btn {
  height: 45px;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
}

.btn-classic-effect:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/*====================================================
 * HERO SECTION
 *====================================================*/
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 130px;
  /* Offset for desktop fixed header (90px main + ~40px top) */
}

.heroSwiper {
  width: 100%;
  height: calc(100vh - 130px);
}

/* Adjust slider height on smaller screens to prevent extreme image cropping */
@media (max-width: 991.98px) {
  .heroSwiper {
    height: 60vh;
  }
}

@media (max-width: 767.98px) {
  .heroSwiper {
    height: 35vh;
  }
}

.heroSwiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-heading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 950px;
  z-index: 2;
  /* above the overlay */
}

.hero-slider-heading {
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
  z-index: 1;
}

.hero-slide-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

/* Hero Section Product Image */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

@media (max-width: 991.98px) {
  .hero-image-wrapper {
    margin-top: 30px;
    margin-bottom: 0;
    padding: 0;
  }
}

.hero-product-image {
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .hero-product-image {
    max-width: 100%;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .hero-content {
    padding-top: 30px;
    padding-bottom: 80px;
    text-align: center;
  }

  .hero-desc {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }
}

.hero-content::before {
  content: 'SKYLINE';
  position: absolute;
  top: 15%;
  left: 0;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
  z-index: -1;
  pointer-events: none;
  line-height: 1.1;
  white-space: pre;
}

@media (max-width: 991.98px) {
  .hero-content::before {
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  max-width: 650px;
  line-height: 1.6;
}

/* Secondary Button for Hero */
.btn-secondary-hero {
  background: transparent;
  border: 1px solid var(--pure-white);
  border-radius: 2px;
  padding: 0 15px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: var(--pure-white);
  color: var(--premium-black);
}

/* Trust Badges */
.hero-trust-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}

.badge-item {
  color: var(--pure-white);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.badge-item i {
  color: var(--dark-red);
  font-size: 18px;
}

/* Swiper Navigation Customization */
.hero-controls-container {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  z-index: 10;
}

.hero-next,
.hero-prev {
  color: var(--pure-white);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-next::after,
.hero-prev::after {
  font-size: 18px;
  font-weight: 700;
}

.hero-next:hover,
.hero-prev:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--pure-white);
  transform: scale(1.05);
}

.swiper-pagination-bullet {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  width: 10px;
  height: 10px;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: scale(1.3);
}

/*====================================================
 * CATEGORIES SECTION
 *====================================================*/
.categories-section {
  background-color: #fafafa;
  position: relative;
  overflow: hidden;
}

.categories-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(227, 0, 15, 0.03), transparent 40%),
    radial-gradient(circle at bottom left, rgba(242, 101, 34, 0.03), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.categories-section .container-custom {
  position: relative;
  z-index: 1;
}

/* Force Swiper slides to be equal height */
.categoriesSwiper .swiper-slide {
  height: auto;
}

.category-card {
  background: var(--pure-white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 285px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

}

.card-image-wrapper img {
  border-radius: 12px 12px 0px 0px;
}

.card-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-45deg);
  transition: all 0.7s ease;
  z-index: 2;
  pointer-events: none;
}

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

}

.category-img img {
  border-radius: 12px 12px 0px 0px;
}

.card-content {
  padding: 15px 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-title {
  color: var(--premium-black);
  transition: color 0.3s ease;
  word-spacing: -1px;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.explore-link {
  color: var(--primary-red);
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 2px;
  margin-top: auto;
  align-self: flex-start;
}

.explore-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.explore-link i {
  transition: transform 0.3s ease;
}

/* Hover Effects */
.category-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.1);
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-card:hover .card-image-wrapper::after {
  left: 150%;
}

.category-card:hover .category-title {
  color: var(--primary-red);
}

.category-card:hover .explore-link {
  color: var(--primary-red);
}

.category-card:hover .explore-link::after {
  width: 100%;
}

.category-card:hover .explore-link i {
  transform: translateX(4px);
}

/* Categories Slider Controls */
.categories-controls-container {
  position: relative;
  z-index: 10;
}

.categories-next,
.categories-prev {
  background: transparent;
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  color: var(--premium-black);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.categories-next::after,
.categories-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.categories-next:hover,
.categories-prev:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--pure-white);
}

.categories-pagination.swiper-pagination-bullets {
  bottom: 0;
}

.categories-pagination .swiper-pagination-bullet {
  border-color: var(--primary-red);
}

.categories-pagination .swiper-pagination-bullet-active {
  background: var(--primary-red);
}

/*====================================================
 * MODERN ABOUT SECTION
 *====================================================*/
.about-section {
  position: relative;
  overflow: hidden;
  background-color: var(--pure-white);
}

.about-image-wrapper {
  position: relative;
  padding: 40px 40px 60px 40px;
  z-index: 1;
}

.about-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 90%;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  border-radius: 20px;
  z-index: -1;
  box-shadow: 10px 15px 40px rgba(193, 29, 43, 0.15);
}

.about-main-image {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--pure-white);
}

.about-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.5s ease;
}

.about-main-image:hover img {
  transform: scale(1.03);
}

/* Glassmorphism Badges */
.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

.about-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.experience-badge {
  left: 0;
  top: 15%;
  min-height: 180px;
  width: 180px;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-red), #ff4a5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate-grey);
  line-height: 1.5;
}

.iso-badge {
  right: 10px;
  bottom: 10px;
  width: 190px;
  min-height: 170px;
}

.iso-badge .iso-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.iso-badge .iso-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate-grey);
  line-height: 1.6;
}

.title-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

.text-primary-red {
  color: var(--primary-red);
}

/* About Content Styles */
.about-subtitle {
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about-subtitle .title-line {
  margin-right: 15px;
}

.theme-product-card .card-image-wrapper {
  background-color: var(--soft-background);
  padding: 0;
  overflow: hidden;
}

/* Image Preview Icon */
.theme-product-card .preview-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--pure-white);
  color: var(--premium-black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  transform: translateY(-10px);
}

.theme-product-card:hover .preview-icon {
  opacity: 1;
  transform: translateY(0);
}

.theme-product-card .preview-icon:hover {
  background-color: var(--primary-red);
  color: var(--pure-white);
}

/* Custom Tooltip */
.theme-product-card .custom-tooltip {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: var(--premium-black);
  color: var(--pure-white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.theme-product-card .custom-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--premium-black);
}

.theme-product-card .preview-icon:hover .custom-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Modal Custom Close Button */
.modal-custom-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-red);
  color: var(--pure-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1055;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.modal-custom-close:hover {
  background-color: var(--premium-black);
  color: var(--pure-white);
  transform: scale(1.1);
}

.theme-product-card .product-img {
  width: 100%;
  height: 100%;
  /* aspect-ratio: 1.2; */
  object-fit: cover;
  /* display: block; */
  transition: transform 0.5s ease;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

@media (max-width: 576px) {
  .theme-product-card {
    margin: 0 auto;
    max-width: 380px;
    /* Limits width and centers nicely on mobile */
  }
}


.theme-product-card:hover .product-img {
  transform: scale(1.05);
}

.theme-product-card .card-content {
  padding: 14px;
  flex-grow: 1;
}

.theme-product-card .product-category {
  font-size: 13px;
  font-weight: 500;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.theme-product-card .product-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--premium-black);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.theme-product-card:hover .product-title {
  color: var(--primary-red);
}

.theme-product-card .product-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.theme-product-card .product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 15px;
}

.card-btn-primary {
  background-color: var(--primary-red);
  color: var(--pure-white);
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--primary-red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.card-btn-primary:disabled,
.card-btn-primary.disabled {
  background-color: var(--primary-red);
  color: var(--pure-white);
  border-color: var(--primary-red);
  opacity: 0.7;
}

.card-btn-primary::before,
.card-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--premium-black);
  z-index: -1;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-btn-primary::before {
  left: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.card-btn-primary::after {
  right: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.card-btn-primary:hover::before,
.card-btn-primary:hover::after {
  transform: scaleY(1);
}

.card-btn-primary:hover {
  color: var(--pure-white);
  border-color: var(--premium-black);
}

.card-btn-secondary {
  background-color: var(--premium-black);
  color: var(--pure-white);
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--premium-black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.card-btn-secondary:disabled,
.card-btn-secondary.disabled {
  background-color: transparent;
  color: var(--primary-red);
  border-color: var(--primary-red);
  opacity: 0.7;
}

.card-btn-secondary::before,
.card-btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--primary-red);
  z-index: -1;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-btn-secondary::before {
  left: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.card-btn-secondary::after {
  right: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}

.card-btn-secondary:hover::before,
.card-btn-secondary:hover::after {
  transform: scaleY(1);
}

.card-btn-secondary:hover {
  color: var(--pure-white);
  border-color: var(--primary-red);
}

.about-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--premium-black);
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-desc {
  font-size: 16px;
  color: var(--slate-grey);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-action-area {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 35px;
}

.btn-discover {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(193, 29, 43, 0.15);
}

.btn-discover .icon-right {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-discover:hover .icon-right {
  transform: translateX(5px);
}

/* 24/7 Support Block Professional Design */
.about-support-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.support-icon-box {
  width: 55px;
  height: 55px;
  background-color: #f4f5f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.support-icon-box i {
  color: var(--primary-red);
  font-size: 22px;
}

.about-support-info:hover .support-icon-box {
  background-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(193, 29, 43, 0.2);
}

.about-support-info:hover .support-icon-box i {
  color: var(--pure-white);
}

.support-text-box {
  display: flex;
  flex-direction: column;
}

.support-label {
  display: block;
  color: var(--slate-grey);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.support-number {
  color: var(--premium-black);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1;
}

.support-number:hover {
  color: var(--primary-red);
}

@media (max-width: 575.98px) {
  .about-action-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/*====================================================
 * MODERN WHY CHOOSE US SECTION
 *====================================================*/

.why-content-wrapper {
  padding-right: 3rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-card-modern {
  display: flex;
  align-items: flex-start;
  background-color: var(--pure-white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease;
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(193, 29, 43, 0.25);
  background-color: var(--primary-red);
}

.feature-icon-box {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(193, 29, 43, 0.1), rgba(193, 29, 43, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: background 0.4s ease, transform 0.3s ease;
}

.feature-icon-box i {
  font-size: 24px;
  color: var(--primary-red);
  transition: color 0.4s ease;
}

.feature-card-modern:hover .feature-icon-box {
  background: var(--pure-white);
  transform: scale(1.05);
}

.feature-card-modern:hover .feature-icon-box i {
  color: var(--primary-red);
}

.feature-text-content {
  flex-grow: 1;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--premium-black);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.feature-desc {
  font-size: 15px;
  color: var(--slate-grey);
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s ease;
}

.feature-card-modern:hover .feature-title,
.feature-card-modern:hover .feature-desc {
  color: var(--pure-white);
}

/* Why Image Styles */
.why-image-wrapper {
  position: relative;
  padding: 0 40px 40px 0;
  z-index: 1;
}

.why-bg-shape {
  position: absolute;
  top: 40px;
  right: 0;
  bottom: 0;
  left: 40px;
  background: linear-gradient(135deg, #99999982 0%, #010101 100%);
  border-radius: 20px;
  z-index: 0;
  box-shadow: inset 0 0 0 2px var(--border-grey);
}

.why-main-image {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 4px solid var(--pure-white);
}

.why-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.5s ease;
}

.why-main-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 991.98px) {
  .why-content-wrapper {
    padding-right: calc(var(--bs-gutter-x) * .5);
  }
}

/*====================================================
 * FOOTER SECTION
 *====================================================*/
.footer-section {
  background-color: #111111;
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 1rem;
  font-family: var(--font-body);
}

/* Dotted Map Background */
.footer-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/World_map_blank_without_borders.svg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(white 2px, transparent 2px);
  -webkit-mask-size: 10px 10px;
  mask-image: radial-gradient(white 2px, transparent 2px);
  mask-size: 10px 10px;
  opacity: 0.2;
  z-index: 0;
}

.container-custom {
  position: relative;
  z-index: 1;
}

/* Contact CTA Block */
.footer-contact-cta {
  background-color: transparent;
  border-bottom: 2px solid #3d3d3d;
  padding: 1.5rem 0;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .footer-contact-cta {
    padding: 2rem 0;
  }
}

.cta-left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-left-content {
    flex-direction: row;
    text-align: left;
    margin-bottom: 0;
  }
}

.cta-icon {
  background-color: transparent;
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-bottom: 1rem;
  font-size: 3rem;
}

@media (min-width: 768px) {
  .cta-icon {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}

.cta-text h3 {
  color: var(--pure-white);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 1rem;
}

.cta-right-content {
  text-align: center;
}

@media (min-width: 768px) {
  .cta-right-content {
    text-align: right;
  }
}

.cta-right-content .btn {
  font-weight: 700;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  font-family: var(--font-heading);
}


/* Main Footer Columns */
.footer-main-content {
  color: var(--pure-white);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.footer-col-intro,
.footer-col-links,
.footer-col-categories {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .footer-col-intro {
    padding-right: 1.5rem;
    margin-bottom: 0;
  }

  .footer-col-links {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .footer-col-categories {
    margin-bottom: 0;
  }
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}


.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  line-height: 2;
}

.social-links {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--pure-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-icon:hover {
  color: var(--pure-white);
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--pure-white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: var(--font-heading);
  display: inline-block;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-red);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: all 0.3s ease;
  opacity: 0;
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 18px;
}

.footer-links a:hover::before {
  width: 10px;
  opacity: 1;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  line-height: 1.8;
}

/* Footer Bottom */
.footer-bottom {
  /* margin-top: 3rem; */
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.footer-copyright {
  text-align: center;
}

.footer-credits {
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .footer-copyright {
    text-align: left;
  }

  .footer-credits {
    text-align: right;
    margin-top: 0;
  }
}

.footer-copyright p,
.footer-credits p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.footer-copyright a {
  color: var(--pure-white);
  font-weight: 500;
}

.footer-credits p {
  font-size: 16px;
}

.footer-credits a {
  color: var(--primary-red);
  font-weight: 500;
  text-decoration: none;
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/*====================================================
 * TOP HEADER SOCIAL ICONS
 *====================================================*/
.top-social-icon {
  width: 32px;
  height: 32px;
  background-color: transparent;
  color: #666666;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.top-social-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-red);
  z-index: -1;
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: inherit;
}

.top-social-icon:hover {
  color: var(--pure-white);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.top-social-icon:hover::after {
  transform: scale(1);
}

/* Hide default Bootstrap dropdown caret */
.nav-link.dropdown-toggle::after,
.dropdown-toggle::after {
  display: none !important;
}

/*====================================================
 * DROPDOWN MENU STYLING
 *====================================================*/
.dropdown-menu {
  border: none;
  border-radius: 0px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  margin-top: 0;
  min-width: 250px;
  background-color: var(--pure-white);
}

.dropdown-item {
  font-family: var(--font-body);
  color: var(--slate-grey);
  padding: 12px 25px;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  background-color: transparent !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  white-space: normal;
}

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

/* Horizontal line effect on hover */
.dropdown-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: all 0.3s ease;
  opacity: 0;
}

.dropdown-item:hover {
  color: var(--primary-red);
  padding-left: 45px;
}

.dropdown-item:hover::before {
  width: 15px;
  opacity: 1;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeInDown 0.3s ease forwards;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Dropdown Fix */
@media (max-width: 991.98px) {
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    float: none;
    border-top: none;
    box-shadow: none;
    padding: 0 0 10px 0 !important;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 0;
  }

  .dropdown-item {
    padding: 10px 25px;
  }

  .dropdown-item:hover {
    padding-left: 35px;
    background-color: rgba(242, 101, 34, 0.05) !important;
  }

  .dropdown-item::before {
    display: none;
  }
}

/*====================================================
 * BREADCRUMB SECTION
 *====================================================*/
.breadcrumb-section {
  /* background-color: var(--premium-black); */
  background: linear-gradient(135deg, var(--slate-grey) 0%, var(--premium-black) 100%);
  padding: 180px 0 60px 0;
  /* Huge top padding to clear the fixed header */
  border-bottom: none;
}

.breadcrumb-section .breadcrumb-title {
  font-family: var(--font-heading);
  color: var(--pure-white);
  font-size: 48px !important;
  text-transform: capitalize;
  font-weight: 700;
}

.breadcrumb-section .breadcrumb {
  --bs-breadcrumb-divider: '>';
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  align-items: center;
}

.breadcrumb-section .breadcrumb-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color var(--transition);
  font-size: 18px;
}

/* .breadcrumb-section .breadcrumb-item a:hover {
  color: var(--primary-red);
} */

.breadcrumb-section .breadcrumb-item.active {
  color: var(--pure-white);
  transition: color var(--transition);
  cursor: pointer;
  font-size: 18px;
}

.breadcrumb-section .breadcrumb-item.active:hover {
  color: var(--primary-red);
}

/*====================================================
 * ABOUT PAGE - MODERN DESIGN
 *====================================================*/
.about-page-modern {
  background-color: var(--pure-white);
  overflow: hidden;
}

.about-page-modern .image-stack {
  position: relative;
  z-index: 1;
  padding: 0 30px 40px 0;
}

.about-page-modern .img-main {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-page-modern .experience-badge-modern {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--primary-red);
  color: var(--pure-white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  z-index: 3;
  min-width: 220px;
}

.about-page-modern .experience-badge-modern .num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}

.about-page-modern .experience-badge-modern .text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}

@media (max-width: 991px) {
  .about-page-modern .image-stack {
    padding: 0 20px 25px 0;
  }

  .about-page-modern .experience-badge-modern {
    padding: 20px 25px;
    min-width: unset;
    width: max-content;
    bottom: 0px;
    right: 0px;
  }

  .about-page-modern .experience-badge-modern .num {
    font-size: 44px;
  }

  .about-page-modern .experience-badge-modern .text {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .about-page-modern .image-stack {
    padding: 0;
    margin-bottom: 30px;
  }

  .about-page-modern .experience-badge-modern {
    padding: 10px 15px;
    min-width: unset;
    width: auto;
    bottom: 10px;
    right: 10px;
  }

  .about-page-modern .experience-badge-modern .num {
    font-size: 32px;
  }

  .about-page-modern .experience-badge-modern .text {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

.section-subtitle-modern {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

.section-subtitle-modern::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
}

.section-title-modern {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--premium-black);
  margin-bottom: 30px;
}

.about-page-modern .stat-box {
  background: var(--pure-white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.about-page-modern .stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(227, 0, 15, 0.1);
}

.about-page-modern .stat-box .icon {
  width: 60px;
  height: 60px;
  background: #fdf2f2;
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.about-page-modern .stat-box:hover .icon {
  background: var(--primary-red);
  color: var(--pure-white);
}

/*====================================================
 * INDUSTRIES WE SERVE SECTION
 *====================================================*/
.industries-serve-section {
  overflow: hidden;
}

.industry-card {
  background: var(--pure-white);
  padding: 35px 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  z-index: 1;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-red);
}

.industry-card .icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: #fdf2f2;
  border: 1px solid rgba(227, 0, 15, 0.1);
  color: var(--primary-red);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.industry-card:hover .icon-wrapper {
  background-color: var(--primary-red);
  color: var(--pure-white);
  border-color: var(--primary-red);
}

.industry-card .industry-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--premium-black);
  margin-bottom: 15px;
  transition: color 0.35s ease;
}

.industry-card:hover .industry-title {
  color: var(--primary-red);
}

.industry-card .industry-desc {
  font-size: 16px;
  color: var(--slate-grey);
  line-height: 1.6;
  margin-bottom: 0;
}

/*====================================================
 * MISSION, VISION & CORE VALUES SECTION (BENTO BOX)
 *====================================================*/
.mission-vision-section {
  background-color: var(--pure-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}


.section-header-wrapper {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header-wrapper .section-subtitle {
  color: var(--primary-red);
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  /* display: flex;
  justify-content: center; */
}

.section-header-wrapper .section-title {
  margin-bottom: 0;
}

.bento-grid {
  --bento-radius: 12px;
}

.bento-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bento-box {
  background-color: var(--pure-white);
  border-radius: var(--bento-radius);
  border: 2px solid rgba(227, 0, 15, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
  padding: 3rem;
}

@media (max-width: 768px) {
  .bento-box {
    padding: 1.5rem;
  }
}

.bento-box:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 20px 40px rgba(227, 0, 15, 0.1);
  border-color: var(--primary-red); */
}

.bento-box-primary {
  background-color: var(--primary-red);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
}

.bento-box-primary:hover {
  background-color: var(--primary-red);
}

.bento-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bento-content-wrapper {
    flex-direction: row;
    /* align-items: center; */
  }
}

.bento-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background-color: var(--pure-white);
  color: var(--primary-red);
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.bento-box:hover .bento-icon-wrapper {
  transform: scale(1.05);
}

.bento-box-primary .bento-icon-wrapper {
  color: var(--primary-red);
}

.bento-icon-small {
  width: 50px;
  height: 50px;
  font-size: 24px;
}

.bento-title {
  font-weight: bold;
  margin-bottom: 1rem;
}

.bento-box:not(.bento-box-primary) .bento-title {
  color: var(--pure-white);
}

.bento-box-primary .bento-title {
  color: var(--pure-white);
}

.bento-desc {
  margin-bottom: 0;
}

.bento-box:not(.bento-box-primary) .bento-desc {
  color: rgba(255, 255, 255, 0.9);
}

.bento-box-primary .bento-desc {
  color: rgba(255, 255, 255, 0.9);
}

.bento-values-box {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bento-values-header {
  /* display: flex;
  align-items: center; */
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bento-values-header .bento-title {
  margin-bottom: 0;
}

.bento-values-desc {
  margin-bottom: 1.5rem;
}

.bento-values-list {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.core-value-item {
  display: flex;
  align-items: flex-start;
}

.core-value-icon {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.core-value-title {
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #212529;
}

.bento-box-dark .core-value-title {
  color: var(--pure-white);
}

.core-value-desc {
  color: #6c757d;
  font-size: 0.875em;
}

.bento-box-dark .core-value-desc {
  color: rgba(255, 255, 255, 0.7);
}

.bento-box-dark {
  background-color: var(--premium-black);
  /* Dark color */
  border-color: rgba(255, 255, 255, 0.05);
  color: var(--pure-white);
}

.bento-box-dark:hover {
  background-color: var(--dark-charcoal);
}

.bento-box-dark .bento-title {
  color: var(--pure-white);
}

.bento-box-dark .bento-desc,
.bento-box-dark .bento-values-desc {
  color: rgba(255, 255, 255, 0.7);
}

.bento-box-dark .bento-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  box-shadow: none;
}

/*====================================================
 * CONTACT PAGE
 *====================================================*/
.contact-page-section {
  position: relative;
  overflow: hidden;
}

.contact-link-hover {
  transition: color var(--transition);
}

.contact-link-hover:hover {
  color: var(--primary-red) !important;
}

.contact-form-wrapper {
  transition: box-shadow var(--transition);
}


.contact-form .form-control {
  border: 1px solid var(--border-grey);
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.contact-form .form-control:focus {
  border-color: var(--primary-red);
  background-color: var(--pure-white);
  box-shadow: 0 0 0 3px rgba(227, 0, 15, 0.1);
}

.contact-form .form-floating label {
  color: var(--slate-grey);
  padding: 12px 15px;
}

.contact-form .form-floating>.form-control:focus~label,
.contact-form .form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--primary-red);
  transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

.map-wrapper {
  transition: box-shadow 0.3s ease;
}

.map-wrapper:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Contact Item Modern Hover Effects */
.contact-item-box {
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 8px;
  margin-left: -15px;
  margin-right: -15px;
  border-bottom: 1px solid var(--border-grey);
}

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

.contact-item-box:hover {
  background-color: #fcfcfc;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
  border-bottom-color: transparent;
}

.contact-icon-box {
  width: 55px;
  height: 55px;
  font-size: 24px;
  background-color: var(--pure-white);
  border: 1px solid var(--border-grey);
  color: var(--primary-red);
  transition: all 0.4s ease;
  border-radius: 4px;
}

.contact-item-box:hover .contact-icon-box {
  background-color: var(--primary-red);
  color: var(--pure-white);
  border-color: var(--primary-red);
  transform: translateY(-5px);
}

.contact-item-box .title {
  transition: color 0.3s ease;
}

.contact-item-box:hover .title {
  color: var(--primary-red);
}

/*====================================================
 * CONTACT FORM CLASSIC & MODERN UI
 *====================================================*/
.contact-form-wrapper {
  transition: all 0.4s ease;
  border: 1px solid var(--border-grey);
  border-radius: 4px;
}

.form-group-classic .classic-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-charcoal);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group-classic .input-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: #f8f9fa;
}

.form-group-classic .input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #a0a0a0;
  transition: color 0.3s ease;
  z-index: 2;
}

.form-group-classic .classic-input {
  border: 1px solid transparent;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 15px 14px 45px;
  background-color: transparent !important;
  font-size: 15px;
  color: var(--premium-black);
  transition: all 0.3s ease;
  box-shadow: none !important;
  width: 100%;
}

.form-group-classic .classic-input::placeholder {
  color: #adb5bd;
  font-weight: 400;
}

/* Hover State */
.form-group-classic .input-wrapper:hover .classic-input {
  background-color: #f1f3f5 !important;
  border-bottom-color: #ced4da;
}

/* Focus State */
.form-group-classic .classic-input:focus {
  background-color: var(--pure-white) !important;
}

.form-group-classic .classic-input:focus+.focus-border {
  width: 100%;
}

.form-group-classic .classic-input:focus~.input-icon {
  color: var(--primary-red);
}

/* Animated Bottom Border */
.form-group-classic .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
  z-index: 3;
}

/* Form Background Shape & Decor */
.form-col-wrapper {
  position: relative;
  z-index: 1;
}

/* .form-background-shape {
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: 15px;
  background: repeating-linear-gradient(45deg,
      rgba(227, 0, 15, 0.05),
      rgba(227, 0, 15, 0.05) 2px,
      transparent 2px,
      transparent 10px);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
} */

.form-background-shape::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -15px;
  width: 35%;
  height: 35%;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  z-index: -1;
}

.form-background-shape::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -15px;
  width: 50%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  z-index: -1;
}

@media (max-width: 991px) {
  .form-background-shape {
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
  }

  .form-background-shape::before {
    top: -10px;
    right: -10px;
  }

  .form-background-shape::after {
    bottom: -10px;
    left: -10px;
  }
}

/* Form Status Messages (Professional & Classic) */
.form-status-msg {
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.form-status-msg.success-msg {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-status-msg.error-msg {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Loader Button Styling */
.btn-primary.btn-loading {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff;
  opacity: 1 !important;
  cursor: wait !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Category Sidebar */
.category-sidebar {
  background: var(--pure-white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-sidebar .list-group-item {
  border: none;
  padding: 12px 15px;
  border-bottom: 1px solid var(--border-grey);
  color: var(--slate-grey);
  font-weight: 500;
  transition: var(--transition);
}

.category-sidebar .list-group-item:last-child {
  border-bottom: none;
}

.category-sidebar .list-group-item:hover,
.category-sidebar .list-group-item.active {
  background-color: var(--primary-red);
  color: var(--pure-white);
}

.transition-transform {
  transition: transform 0.3s ease;
}

[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

/* Sidebar Specific Styles (moved from inline) */
@media (min-width: 992px) {
  .category-sidebar.sticky-lg-top {
    top: 140px;
    z-index: 10;
  }
}

.category-sidebar .bi-chevron-down {
  font-size: 14px;
}

.category-sidebar .collapse .list-group-item {
  font-size: 0.95rem;
}

/* Sidebar Utility Class Extraction */
.category-sidebar .sidebar-item-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-sidebar .sidebar-sub-menu {
  background-color: var(--light, #f8f9fa);
  border-bottom: 1px solid var(--border, #dee2e6);
}

.category-sidebar .sidebar-sub-menu .sidebar-sub-item {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border: none;
  background-color: transparent;
  color: var(--text-muted, #6c757d);
  line-height: 1.4;
}

.category-sidebar .sidebar-sub-menu .sidebar-sub-item:hover,
.category-sidebar .sidebar-sub-menu .sidebar-sub-item:focus {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-gray, #495057);
}

.category-sidebar .sidebar-sub-menu .sidebar-sub-item .bi-dash {
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Multi-level Dropdown */
@media (min-width: 992px) {
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -8px;
    margin-left: 0;
    /* border-radius: 4px;  */
    display: none !important;
  }

  .dropdown-submenu:hover>.dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .dropdown-submenu>.dropdown-menu {
    display: none;
    position: static;
    margin-left: 15px;
    margin-top: 0;
    border: none;
    box-shadow: none;
  }

  .dropdown-submenu:hover>.dropdown-menu,
  .dropdown-submenu.show>.dropdown-menu {
    display: block !important;
  }
}

/*====================================================
 * FLOATING CONTACT BUTTONS
 *====================================================*/
.floating-contact-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--pure-white) !important;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.float-call {
  background-color: var(--primary-red);
}

.float-call:hover {
  background-color: #c9000d;
}

.float-whatsapp {
  background-color: #25d366;
}

.float-whatsapp:hover {
  background-color: #20b858;
}

/* Pulse animation for WhatsApp */
.float-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.6);
  z-index: -1;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-contact-container {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/*====================================================
 * BACK TO TOP BUTTON
 *====================================================*/
.back-to-top {
  position: fixed;
  bottom: 155px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-red);
  color: var(--pure-white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.back-to-top:hover {
  background-color: #c9000d;
  color: var(--pure-white);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/*====================================================
 * CUSTOM LANGUAGE SELECTOR
 *====================================================*/
.custom-lang-selector {
  position: relative;
  display: inline-block;
}

.custom-lang-selector .btn-lang {
  border: none;
  background: transparent;
  padding: 4px 8px;
  font-size: 13px;
  color: var(--premium-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  transition: var(--transition);
}

.custom-lang-selector .btn-lang:hover {
  color: var(--primary-red);
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--pure-white);
  min-width: 160px;
  max-height: 500px;
  overflow-y: auto;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--border-grey);
}

.custom-lang-selector.show .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lang-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.lang-dropdown-menu .lang-option {
  display: block;
  padding: 8px 16px;
  color: var(--dark-charcoal);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  font-family: var(--font-body);
}

.lang-dropdown-menu .lang-option:hover,
.lang-dropdown-menu .lang-option.active {
  background-color: var(--soft-background);
  color: var(--primary-red);
  padding-left: 20px;
}

/* Custom Scrollbar for Dropdown (Hidden) */
.lang-dropdown-menu::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 24px;
    bottom: 140px;
    right: 20px;
  }
}

/*====================================================
 * MARQUEE SECTION
 *====================================================*/
.marquee-section {
  background-color: var(--soft-background);
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee-scroll 70s linear infinite;
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-text {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 17, 17, 0.3);
  /* Lower opacity */
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

/* Fallback for browsers that don't support -webkit-text-stroke */
@supports not (-webkit-text-stroke: 1px rgba(17, 17, 17, 0.3)) {
  .marquee-text {
    color: var(--pure-white);
    text-shadow:
      -1px -1px 0 rgba(17, 17, 17, 0.3),
      1px -1px 0 rgba(17, 17, 17, 0.3),
      -1px 1px 0 rgba(17, 17, 17, 0.3),
      1px 1px 0 rgba(17, 17, 17, 0.3);
  }
}

.marquee-text:hover {
  color: var(--primary-red);
  -webkit-text-stroke: 1px var(--primary-red);
}

.marquee-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-red);
  -webkit-text-stroke: 0;
  white-space: nowrap;
}

/*====================================================
 * MEGA MENU / MULTI-COLUMN DROPDOWN
 *====================================================*/
@media (min-width: 992px) {
  .dropdown-menu.multi-column-dropdown {
    min-width: 530px;
    /* Increase width for 3 columns */
    padding: 15px;
    column-count: 2;
    column-gap: 20px;
    margin-left: -20px !important;
    /* Shift left to prevent cutoff on the right */
  }

  .dropdown-menu.multi-column-dropdown li {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 5px;
  }

  .multi-column-dropdown .dropdown-item {
    white-space: normal;
    /* Allow long category names to wrap */
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
  }

  .multi-column-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    /* background-color: var(--primary-red); */
    transition: all 0.3s ease;
    opacity: 0;
  }

  .multi-column-dropdown .dropdown-item:hover,
  .multi-column-dropdown .dropdown-item:focus {
    color: var(--primary-red) !important;
    /* background-color: rgba(193, 29, 43, 0.05) !important; */
    text-decoration: none !important;
    padding-left: 25px !important;
    /* Room for the line */
  }

  .multi-column-dropdown .dropdown-item:hover::before,
  .multi-column-dropdown .dropdown-item:focus::before {
    width: 10px;
    opacity: 1;
  }

  .multi-column-dropdown .dropdown-item::after {
    display: none !important;
  }
}

/* Professional Alert Styles */
.custom-alert {
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  animation: slideInDown 0.4s ease-out;
  border-left: 5px solid;
}

.custom-alert.alert-success {
  background-color: #f0fdf4;
  color: #166534;
  border-left-color: #22c55e;
}

.custom-alert.alert-danger {
  background-color: #fef2f2;
  color: #991b1b;
  border-left-color: #ef4444;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loader color adjustment to theme */
#btnCatalogueSubmit.is-loading {
  background-color: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  color: var(--pure-white) !important;
  cursor: not-allowed;
  opacity: 0.9;
}

/*====================================================
 * GLOBAL MATERIAL DESIGN FORM CONTROLS
 *====================================================*/
.form-control,
.form-select {
  border: none !important;
  border-bottom: 1px solid #c9cdd2 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  transition: border-color 0.3s ease !important;
}

.form-control:focus,
.form-select:focus {
  border-bottom: 2px solid var(--premium-black) !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Specific styling for Bootstrap form-floating */
.form-floating>.form-control,
.form-floating>.form-select {
  padding-left: 0;
  padding-right: 0;
}

.form-floating>label {
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: var(--dark-charcoal);
  transition: transform 0.2s ease-out, color 0.2s ease-out;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  transform: scale(0.85) translateY(-1.2rem) translateX(0) !important;
  color: var(--premium-black) !important;
  opacity: 1;
}

/* Hide placeholder so only label shows */
.form-floating>.form-control::placeholder {
  color: transparent !important;
}

.form-floating>.form-control:focus::placeholder {
  color: transparent !important;
}

/*====================================================
 * HOME PRODUCTS FILTER
 *====================================================*/
.product-filter-nav {
  margin-bottom: 2rem;
}

.filter-btn {
  background: var(--pure-white);
  color: var(--premium-black);
  border: 1px solid var(--border-grey);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-heading, sans-serif);
  cursor: pointer;
  transition: var(--transition);
}

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

.product-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

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

/*====================================================
 * BEST SELLING PRODUCTS SECTION
 *====================================================*/


.best-selling-header {
  margin-bottom: 24px;
}

.best-selling-slider-wrapper {
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
}


.best-selling-slide {
  height: auto;
  width: 100%;
}

.bs-prev {
  color: var(--primary-red);
  left: -15px;
}

.bs-next {
  color: var(--primary-red);
  right: -15px;
}

/*====================================================
 * THEME PRODUCT CARD BASE STYLES
 *====================================================*/
.theme-product-card {
  background-color: var(--pure-white);
  border: 1px solid #e0e0e0;
  /* Visible border on all 4 sides */
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.theme-product-card:hover {
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); */
  border-color: var(--premium-silver);
  transform: translateY(-5px);
}

/*====================================================
 * QUOTE MODAL STYLES
 *====================================================*/
.quote-modal-content {
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  border-radius: 1rem;
  overflow: hidden;
}

.quote-modal-header {
  background-color: #f8f9fa;
  border: none;
  padding: 1.5rem;
}

.quote-modal-header .modal-title {
  font-weight: 700;
  color: var(--premium-black);
}

.quote-modal-body {
  padding: 1.5rem;
}

.quote-selected-product-wrapper {
  margin-bottom: 1rem;
}

.quote-label {
  color: #6c757d;
  font-size: 0.875em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-selected-product {
  font-weight: 700;
  color: var(--primary-red);
  font-size: 1.25rem;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.quote-input-group {
  margin-bottom: 1.5rem;
}

.quote-textarea {
  height: 100px;
}

/* --- Hero Image Professional Design --- */
.hero-image-wrapper {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

/* Classic Circular Backdrop */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Subtle Accent Ring */
.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: -1;
  animation: hero-premium-spin 25s linear infinite;
}

.hero-product-image {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@keyframes hero-premium-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/*====================================================
 * WORKFLOW SECTION (QUALITY PROCESS)
 *====================================================*/
.workflow-grid {
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.workflow-connecting-line {
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(227, 0, 15, 0.2);
  top: 120px;
  z-index: -1;
  display: none;
}

@media (min-width: 992px) {
  .workflow-connecting-line {
    display: block;
  }
}

.workflow-card {
  background-color: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .workflow-card {
    padding: 25px 25px;
  }
}

.workflow-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 40px rgba(227, 0, 15, 0.08) !important; */
  border: 1px solid var(--primary-red);
}

.workflow-bg-number {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 90px;
  font-weight: 800;
  z-index: 0;
  line-height: 1;
  opacity: 0.08;
  color: var(--primary-red);
  user-select: none;
  font-family: var(--font-heading);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.workflow-card:hover .workflow-bg-number {
  opacity: 0.15;
  transform: scale(1.05) translate(-5px, 5px);
}

@media (min-width: 768px) {
  .workflow-bg-number {
    font-size: 130px;
    top: 20px;
    right: 30px;
  }
}

.workflow-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.workflow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-red);
  color: #ffffff;
  border-radius: 4px;
  margin-bottom: 2rem;
  width: 50px;
  height: 50px;
  font-size: 22px;
  border: 6px solid #fff;
  transition: transform 0.3s ease;
}

.workflow-card:hover .workflow-icon {
  transform: scale(1.1) translateY(-3px);
  /* box-shadow: 0 12px 25px rgba(227, 0, 15, 0.3), 0 0 0 2px var(--primary-red) !important; */
}

@media (min-width: 768px) {
  .workflow-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 8px;
  }
}

.workflow-title {
  /* font-weight: 700; */
  margin-bottom: 1.25rem;
  color: var(--premium-black);
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.workflow-card:hover .workflow-title {
  color: var(--primary-red);
}

.workflow-desc {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 400;
}

/*====================================================
 * QUALITY PAGE CUSTOM STYLES
 *====================================================*/
.quality-hero-section {}

.quality-hero-img-col {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .quality-hero-img-col {
    margin-bottom: 0;
  }
}

.quality-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.quality-badge-icon {
  color: #ffffff;
  margin-bottom: 0.25rem;
  display: block;
  font-size: 2.5rem;
}


@media (min-width: 992px) {
  .quality-text-col {
    padding-left: 3rem;
  }
}

.quality-subtitle-wrapper {
  margin-bottom: 1.5rem;
}

.quality-main-title {
  margin-bottom: 1.5rem;
}

.quality-text-para {
  color: #6c757d;
  margin-bottom: 1rem;
}

.quality-text-para:last-child {
  margin-bottom: 0;
}

.quality-pillars-section {
  background-color: #f8f9fa;
}

.quality-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quality-section-subtitle {
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  gap: 15px;
}

.quality-section-subtitle .title-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 2px;
}

.quality-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--premium-black);
  margin-bottom: 1.5rem;
}

.quality-subtitle-left {
  justify-content: flex-start;
  margin-left: 0;
}

.quality-title-left {
  text-align: left;
}

@media (max-width: 991px) {
  .quality-subtitle-left {
    justify-content: center;
    margin-left: auto;
  }

  .quality-title-left {
    text-align: center;
  }
}

.quality-pillar-card {
  height: 100%;
  padding: 25px 25px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quality-pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-red);
}

.quality-pillar-icon {
  width: 50px;
  height: 50px;
  font-size: 26px;
  border-radius: 4px;
  background-color: rgba(227, 0, 15, 0.05);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.quality-pillar-card:hover .quality-pillar-icon {
  background-color: var(--primary-red);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.quality-pillar-title {
  /* font-weight: 700; */
  margin-bottom: 1rem;
  color: var(--premium-black);
  font-size: 1.25rem;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.quality-pillar-card:hover .quality-pillar-title {
  color: var(--primary-red);
}

.quality-pillar-desc {
  margin-bottom: 0;
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}


/*====================================================
 * CUSTOM SIMPLE TABS (MISSION/VISION)
 *====================================================*/
.mission-vision-tabs {
  margin-top: 2.5rem;
  text-align: left;
}

.custom-simple-tabs {
  border-bottom: 1px solid #e5e7eb !important;
  margin-bottom: 2rem;
  justify-content: flex-start;
  gap: 1rem;
}

.custom-simple-tabs .nav-link {
  color: #4b5563;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background-color: transparent !important;
  font-size: 18px;
  padding: 0.6rem 0;
  margin-right: 2rem;
  transition: all 0.3s ease;
  font-weight: 700;
}

.custom-simple-tabs .nav-link:hover {
  color: var(--primary-red);
  border-bottom-color: rgba(193, 29, 43, 0.3);
}

.custom-simple-tabs .nav-link.active {
  color: var(--primary-red) !important;
  border-bottom: 2px solid var(--primary-red) !important;
}

.mv-tab-title {
  color: var(--premium-black);
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.4rem;
}

.mv-tab-desc {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 1.05rem;
}

/*====================================================
 * ABOUT PAGE REFACTORED SECTIONS (CORE VALUES & INFRA & STATS)
 *====================================================*/
/* Core Values Tab Pane */
.cv-card {
  display: flex;
  align-items: flex-start;
  padding: 2rem;
  background-color: var(--pure-white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #f3f4f6;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.cv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(193, 29, 43, 0.15);
}

.cv-icon {
  width: 55px;
  height: 55px;
  border-radius: 4px;
  background-color: rgba(193, 29, 43, 0.06);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-right: 1.25rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cv-card:hover .cv-icon {
  background-color: var(--primary-red);
  color: var(--pure-white);
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(193, 29, 43, 0.25);
}

.cv-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--premium-black);
  transition: color 0.3s ease;
}

.cv-card:hover .cv-title {
  color: var(--primary-red);
}

.cv-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Manufacturing Infrastructure */
.manufacturing-infra-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.manufacturing-infra-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.infra-icon {
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.infra-icon i {
  color: var(--primary-red);
  font-size: 1.25rem;
}

.infra-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--premium-black);
}

.infra-desc {
  font-size: 0.9rem;
  color: var(--slate-grey);
  margin-bottom: 0;
  line-height: 1.6;
}

.manufacturing-stat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--pure-white);
  padding: 2rem;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 16px;
  box-shadow: 10px -10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-grey);
}

.manufacturing-stat-overlay .stat-number {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.manufacturing-stat-overlay .stat-text {
  color: var(--slate-grey);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* Quality Assurance & Stats (Modern Classic Card) */
.quality-stats-section {
  background-color: transparent;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.stats-card-wrapper {
  background-color: var(--premium-black);
  border-radius: 16px;
  padding: 25px 25px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
  position: relative;
  overflow: hidden;
}

.stats-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.stat-col {
  position: relative;
}

.stat-col:not(.last-col)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-item {
  padding: 1rem;
}

.stat-count {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}

/*====================================================
 * PRODUCT PAGE CATEGORY HEADER
 *====================================================*/
.product-category-header {
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 3rem;
  /* Desktop default */
}

.product-category-header-title {
  font-weight: 700;
  margin: 0;
  color: var(--premium-black);
  font-size: 1.75rem;
  /* Desktop default */
}

.product-category-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .product-category-header {
    margin-bottom: 2.5rem;
  }

  .product-category-header-title {
    font-size: 1.5rem;
  }
}

.cv-card:hover .cv-icon {
  background-color: var(--primary-red);
  color: var(--pure-white);
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(193, 29, 43, 0.25);
}

.cv-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--premium-black);
  transition: color 0.3s ease;
}

.cv-card:hover .cv-title {
  color: var(--primary-red);
}

.cv-desc {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Manufacturing Infrastructure */
.manufacturing-infra-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.manufacturing-infra-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.infra-icon {
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.infra-icon i {
  color: var(--primary-red);
  font-size: 1.25rem;
}

.infra-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--premium-black);
}

.infra-desc {
  font-size: 0.9rem;
  color: var(--slate-grey);
  margin-bottom: 0;
  line-height: 1.6;
}

.manufacturing-stat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--pure-white);
  padding: 2rem;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 16px;
  box-shadow: 10px -10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-grey);
}

.manufacturing-stat-overlay .stat-number {
  color: var(--primary-red);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.manufacturing-stat-overlay .stat-text {
  color: var(--slate-grey);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* Quality Assurance & Stats (Modern Classic Card) */
.quality-stats-section {
  background-color: transparent;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.stats-card-wrapper {
  background-color: var(--premium-black);
  border-radius: 16px;
  padding: 25px 25px;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
  position: relative;
  overflow: hidden;
}

.stats-card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.stat-col {
  position: relative;
}

.stat-col:not(.last-col)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-item {
  padding: 1rem;
}

.stat-count {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0;
}

/*====================================================
 * PRODUCT PAGE CATEGORY HEADER
 *====================================================*/
.product-category-header {
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 3rem;
  /* Desktop default */
}

.product-category-header-title {
  font-weight: 700;
  margin: 0;
  color: var(--premium-black);
  font-size: 1.75rem;
  /* Desktop default */
}

.product-category-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .product-category-header {
    margin-bottom: 2.5rem;
  }

  .product-category-header-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .product-category-header {
    margin-bottom: 1.5rem;
  }

  .product-category-header-title {
    font-size: 1.25rem;
  }
}

/*====================================================
 * PRODUCT DETAIL PAGE PREMIUM STYLES
 *====================================================*/
.pd-premium-img-wrapper {
  overflow: hidden;
  position: relative;
}

.pd-premium-img-wrapper .pd-main-img {
  width: 100%;
  object-fit: contain;
}

.pd-premium-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.pd-premium-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--premium-black);
  margin-bottom: 1rem;
}

.pd-premium-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--premium-black);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pd-premium-section-icon {
  color: var(--primary-red);
  font-size: 1.2rem;
}

.pd-premium-table-wrapper {
  background-color: var(--pure-white);
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.pd-premium-table {
  width: 100%;
  margin-bottom: 0;
}

.pd-premium-table th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: var(--premium-black);
  padding: 14px 20px;
  width: 40%;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

.pd-premium-table td {
  padding: 14px 20px;
  color: #4b5563;
  background-color: var(--pure-white);
  border-bottom: 1px solid #f0f0f0;
}

.pd-premium-table tr:last-child th,
.pd-premium-table tr:last-child td {
  border-bottom: none;
}

.pd-premium-desc {
  color: var(--dark-charcoal);
  line-height: 1.8;
  font-size: 16px;
}

.pd-premium-desc h1,
.pd-premium-desc h2,
.pd-premium-desc h3,
.pd-premium-desc h4,
.pd-premium-desc h5,
.pd-premium-desc h6 {
  color: var(--premium-black);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.pd-premium-desc h2 {
  font-size: 1.6rem;
}

.pd-premium-desc h3 {
  font-size: 1.35rem;
}

.pd-premium-desc h4 {
  font-size: 1.2rem;
}

.pd-premium-desc p {
  margin-bottom: 1.25rem;
}

.pd-premium-desc p:last-child {
  margin-bottom: 0;
}

.pd-premium-desc ul,
.pd-premium-desc ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.pd-premium-desc li {
  margin-bottom: 0.5rem;
}

.pd-premium-desc strong,
.pd-premium-desc b {
  color: var(--premium-black);
  font-weight: 700;
}

.pd-premium-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-charcoal);
  font-family: var(--font-heading);
}

@media (min-width: 992px) {
  .pd-premium-img-wrapper {
    width: 500px;
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pd-premium-img-wrapper .pd-main-img {
    max-height: 100%;
    object-fit: contain;
  }
}

/* Custom Best Selling Pagination */
.bs-pagination .swiper-pagination-bullet {
  border-color: rgba(0, 0, 0, 0.3) !important;
}

.bs-pagination .swiper-pagination-bullet-active {
  border-color: var(--primary-red) !important;
  background: var(--primary-red) !important;
}

/* Custom Best Selling Nav */
.bs-custom-nav {
  background: var(--primary-red) !important;
  color: var(--pure-white) !important;
  border-color: var(--primary-red) !important;
}

.bs-custom-nav:hover {
  background: var(--dark-charcoal) !important;
  color: var(--pure-white) !important;
  border-color: var(--dark-charcoal) !important;
}

/* ====================================================
 * MOBILE RESPONSIVENESS FOR MODALS 
 * ==================================================== */
@media (max-width: 767.98px) {

  /* Common Modal Adjustments */
  .modal-dialog {
    margin: 10px;
  }

  /* Quote Modal Fixes */
  .quote-modal-header,
  .quote-modal-body {
    padding: 1.25rem !important;
  }

  .quote-selected-product {
    font-size: 1.1rem !important;
    word-break: break-word;
  }

  .quote-input-group {
    margin-bottom: 1rem !important;
  }

  #quoteModal .d-flex {
    flex-direction: column !important;
    gap: 10px !important;
  }

  #quoteModal .btn {
    width: 100% !important;
    margin-bottom: 5px;
  }

  /* Catalogue Modal Fixes */
  #catalogueModal .modal-body {
    padding: 1.25rem !important;
  }

  #catalogueModal .form-floating.mb-4 {
    margin-bottom: 1rem !important;
  }

  #btnCatalogueSubmit {
    width: 100% !important;
  }
}

/* ====================================================
 * GLOBAL EXPORT SECTION
 * ==================================================== */
.mw-800 {
  max-width: 800px;
}

#world-map {
  width: 100%;
  height: 500px;
}

@media (max-width: 767.98px) {
  #world-map {
    height: 320px;
  }
}

.map-container {
  overflow: hidden;
}

.skiptranslate {
  display: none !important;
}