/* 
========================================
INDIGO TMT - Custom Styles
========================================
*/
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap');

/* Font Face Declaration for Switzer */
@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Switzer';
  src: url('../fonts/Switzer-VariableItalic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* 
----------------------------------------
1. VARIABLES & ROOT
----------------------------------------
*/
:root {
  /* Brand Colors - Professional steel industry palette */
  --primary: #E84E1B;
  --primary-dark: #C43D0F;
  --primary-light: #FF6B3D;
  --secondary: #1B3C87;
  --secondary-dark: #142D66;
  --secondary-light: #2650B3;
  --dark: #1A1A1A;
  --light: #F8F9FA;
  --gray: #6C757D;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --success: #26a69a;
  --info: #29b6f6;
  --white: #ffffff;
  --black: #000000;
  --warning: #fdd835;
  --danger: #ef5350;

  /* Font Families */
  --font-heading: 'Poppins', sans-serif;
  /* Industrial, strong, technical */
  --font-body: 'Inter', sans-serif;
  /* Modern, clean, professional */

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 24px;

  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* 
----------------------------------------
2. TYPOGRAPHY
----------------------------------------
*/
body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

/* Horizontal rule */
hr {
  border-color: var(--light-gray);
  opacity: 0.5;
  margin: 2rem 0;
}

/* Focus styling */
:focus {
  outline: 2px solid var(--primary-light);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Container adjustments */
.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* 
----------------------------------------
3. BUTTONS & LINKS
----------------------------------------
*/
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.625rem 1.5rem;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover::after {
  height: 100%;
}

/* Global Primary Button Metallic Styling */
.btn-primary {
  background: linear-gradient(135deg, #E84E1B, #FF6B3D) !important;
  border: none !important;
  color: white !important;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(232, 78, 27, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.4s ease;
  z-index: 1;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #D43D0F, #E84E1B) !important;
  border: none !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 78, 27, 0.4);
  text-decoration: none;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: linear-gradient(135deg, #1b3c87, #2650B3) !important;
  border: none !important;
  color: white !important;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(27, 60, 135, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.4s ease;
  z-index: 1;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: linear-gradient(135deg, #142d66, #1b3c87) !important;
  border: none !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 60, 135, 0.4);
  text-decoration: none;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-outline-primary {
  background-color: transparent;
  border: 2px solid;
  border-image: linear-gradient(135deg, #E84E1B, #FF6B3D) 1;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: linear-gradient(135deg, #E84E1B, #FF6B3D) !important;
  border: 2px solid transparent !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 78, 27, 0.4);
  text-decoration: none;
}

.btn-outline-secondary {
  background-color: transparent;
  border: 2px solid;
  border-image: linear-gradient(135deg, #1b3c87, #2650B3) 1;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background: linear-gradient(135deg, #1b3c87, #2650B3) !important;
  border: 2px solid transparent !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 60, 135, 0.4);
  text-decoration: none;
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* 
----------------------------------------
4. NAVBAR
----------------------------------------
*/
/* in navbar.css */
/* 
----------------------------------------
5. SECTIONS
----------------------------------------
*/
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

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

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #E84E1B, #FF6B3D);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(232, 78, 27, 0.3);
}

.section-title p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 1rem auto;
  color: var(--medium-gray);
}

.bg-light {
  background-color: var(--lightest);
}

.bg-dark {
  background-color: var(--dark);
  color: white;
}

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

.bg-primary-dark {
  background-color: var(--primary-dark);
  color: white;
}

.bg-secondary {
  background: linear-gradient(135deg, #1b3c87, #2650B3);
  color: white;
}

.bg-gray {
  background-color: var(--light-gray);
}

.text-primary {
  background: linear-gradient(135deg, #FF6B3D, #E84E1B) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
}

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

.text-secondary {
  background: linear-gradient(135deg, #2650B3, #1b3c87) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
}

.text-secondary-light {
  background: linear-gradient(135deg, #2650B3, #1b3c87) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
}

/* About section image height fix */
.about-section {
  position: relative;
}

.about-section .row {
  min-height: auto;
}

.about-section .col-lg-6 {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 500px;
}

.image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: .5s all;
}

.image-container img {
  width: 98%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  transition: .5s all;
}

@media (max-width: 991.98px) {
  .about-section .col-lg-6 {
    min-height: 300px;
  }

  .image-container {
    position: relative;
    min-height: 300px;
  }

  .image-container img {
    width: 100%;
  }
}

.about-section .image-container img:hover {
  box-shadow: 0 0 33px #e84e1b81;
  border-radius: 20px;
  transition: .5s all;
}

/* 
----------------------------------------
6. CARDS & FEATURES
----------------------------------------
*/
.card {
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

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

.card-img-top {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--medium-gray);
  margin-bottom: 1.25rem;
}

.card-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(232, 78, 27, 0.3));
}

/* 
----------------------------------------
7. ACCORDION & TABLES
----------------------------------------
*/
.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 1.2rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 86, 179, 0.05);
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-300);
}

.accordion-button::after {
  background-size: 16px;
  transition: all 0.3s ease;
}

.table {
  vertical-align: middle;
}

.table-primary {
  --bs-table-bg: rgba(0, 86, 179, 0.1);
  --bs-table-striped-bg: rgba(0, 86, 179, 0.15);
  --bs-table-striped-color: var(--dark);
  --bs-table-active-bg: rgba(0, 86, 179, 0.2);
  --bs-table-active-color: var(--dark);
  --bs-table-hover-bg: rgba(0, 86, 179, 0.15);
  --bs-table-hover-color: var(--dark);
  color: var(--dark);
  border-color: rgba(0, 86, 179, 0.1);
}

.table th {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* 
----------------------------------------
8. FORMS
----------------------------------------
*/
.form-control,
.form-select {
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-300);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.15);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* 
----------------------------------------
9. FOOTER
----------------------------------------
*/
footer {
  background-color: var(--dark);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  font-weight: 600;
}

footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #E84E1B, #FF6B3D);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(232, 78, 27, 0.3);
}

footer p,
.footer ul {
  opacity: 0.8;
}

.footer-links {
  list-style-type: none;
  padding-left: 0;
}

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

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

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  color: var(--primary);
}

/* Footer newsletter styles */
.newsletter-form .input-group {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-form .form-control {
  border: none;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background-color: white;
}

.newsletter-form .btn {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Map container in footer */
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary) !important;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer hr {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.footer .text-decoration-none {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer .text-decoration-none:hover {
  color: white;
  text-decoration: underline !important;
}

/* 
----------------------------------------
10. ANIMATIONS & TRANSITIONS
----------------------------------------
*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

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

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

  50% {
    transform: scale(1.05);
  }

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

/* 
----------------------------------------
11. FLOATING ELEMENTS (Back to Top & Message)
----------------------------------------
*/
.floating-buttons {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-buttons.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top,
.message-button,
.toll-free-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.message-button {
  background: linear-gradient(135deg, #1b3c87, #2650B3);
}

.toll-free-button {
  background: linear-gradient(135deg, #E84E1B, #ff7846);
}

.back-to-top:hover,
.message-button:hover,
.toll-free-button:hover {
  transform: translateY(-5px);
  color: white !important;
}

.back-to-top i,
.message-button i,
.toll-free-button i {
  font-size: 1.25rem;
}

.floating-button-tooltip {
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  background-color: var(--dark);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  z-index: 1001;
  transition: opacity 0.3s, transform 0.3s;
}

.floating-button-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid var(--dark);
}

.back-to-top:hover .floating-button-tooltip,
.message-button:hover .floating-button-tooltip,
.toll-free-button:hover .floating-button-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-8px);
}

@media (max-width: 767.98px) {
  .floating-button-tooltip {
    display: none;
  }
}

/* 
----------------------------------------
12. PRELOADER
----------------------------------------
*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
}

.preloader .spinner {
  width: 60px;
  height: 60px;
  position: relative;
}

.preloader .spinner:before,
.preloader .spinner:after {
  content: '';
  position: absolute;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1.5s ease infinite;
}

.preloader .spinner:before {
  width: 100%;
  height: 100%;
  border-top-color: var(--primary);
  border-bottom-color: var(--primary);
  animation-delay: 0.2s;
}

.preloader .spinner:after {
  width: 75%;
  height: 75%;
  top: 12.5%;
  left: 12.5%;
  border-left-color: #1b3c87;
  border-right-color: #2650B3;
  animation-delay: 0.4s;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 
----------------------------------------
13. RESPONSIVE ADJUSTMENTS
----------------------------------------
*/
@media (max-width: 1199.98px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-section h1 {
    font-size: 2.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .navbar-collapse {
    background: rgba(27, 59, 135, 0) !important;
    box-shadow: 0 8px 32px rgba(27, 60, 135, 0.15);
    border-radius: 0 0 32px 32px;
    /* padding: 1rem; */
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-nav .nav-link,
  .dropdown-menu .dropdown-item {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover,
  .dropdown-menu .dropdown-item.active,
  .dropdown-menu .dropdown-item:hover {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
  }

  .dropdown-menu {
    background: rgba(27, 60, 135, 0.98) !important;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 16px rgba(27, 60, 135, 0.12);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    padding: 5rem 0 3rem;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .floating-buttons {
    right: 1rem;
    bottom: 1rem;
  }

  .back-to-top,
  .message-button {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.5rem 1.25rem;
  }

  .btn-lg {
    padding: 0.625rem 1.5rem;
  }
}

/* Utility classes */
.rounded-4 {
  border-radius: var(--border-radius-lg) !important;
}

.d-grid {
  display: grid;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

/* Added for new Home Page Sections */
.application-icon-box {
  transition: transform 0.3s ease;
}

.application-icon-box:hover {
  transform: translateY(-5px);
}

.application-icon-box h6 {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--dark-gray);
}

.bg-gradient-primary-secondary {
  background: linear-gradient(45deg, #E84E1B, #1b3c87);
}

.stats-section h2 {
  background: linear-gradient(135deg, #2650B3, #1b3c87) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
  filter: drop-shadow(0 1px 2px rgba(27, 60, 135, 0.3));
}

.stats-section p {
  color: var(--dark);
  font-family: "khand";
  font-weight: 600;
  font-size: 22px;
  /* text-transform: uppercase; */
}

/* .stats-section {
  background: var(--primary-dark) !important;
} */
footer .credit-link {
  background: linear-gradient(135deg, #FF6B3D, #E84E1B) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  /* text-transform: uppercase; */
  font-weight: 600;
  filter: drop-shadow(0 1px 2px rgba(232, 78, 27, 0.3));
}

footer .credit-link:hover {
  background: linear-gradient(135deg, #E84E1B, #D43D0F) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  filter: drop-shadow(0 2px 4px rgba(232, 78, 27, 0.4));
}

/* 
----------------------------------------
14. CUSTOM SCROLLBAR
----------------------------------------
*/

/* WebKit browsers (Chrome, Safari, Opera) */
::-webkit-scrollbar {
  background: #000000;
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 10px;
  border: 3px solid var(--lightest);
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--lightest);
}

html {
  overflow-x: hidden !important;
}

/* Microsoft Edge and IE */
@supports (-ms-overflow-style: none) {
  html {
    scrollbar-face-color: var(--primary);
    scrollbar-track-color: var(--lightest);
    scrollbar-arrow-color: #1b3c87;
    scrollbar-shadow-color: var(--primary-dark);
  }
}

.ms-wire-quality-image {
  /* max-height: 500px !important; */
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 700px;
}

.stirrups-page-hero-image {
  object-fit: contain;
  height: auto;
  max-height: 500px !important;
  width: 100%;
  backdrop-filter: blur(4px);
  min-height: 350px !important;
}

.shapes-stirrups-page {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  /* gap: 1rem;  */
}

.shape-card-stirrups-page {
  /* flex: 1; */
  /* min-width: 300px; */
  /* max-width: 400px; */
  width: min-content;
}

.social-icons i {
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 100%;
  padding: 8px 10px;
  font-size: 16px !important;
  transition: .5s;
}

.social-icons i:hover {
  color: var(--white);
  background: linear-gradient(135deg, #1b3c87, #2650B3);
  transition: .5s;
}

/* Premium Theme Styles */
.premium-theme {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--light);
}

/* Navbar Styles */
.navbar {
  padding: 1.5rem 0;
  background: transparent;
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(27, 60, 135, 0.98), rgba(20, 45, 102, 0.95));
  background-color: rgba(27, 60, 135, 0.98);
  padding: 1rem 0;
  color: var(--white) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(27, 60, 135, 0.4);
  border-bottom: 1px solid rgba(38, 80, 179, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(39, 39, 39, 0.9);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .scrolled .navbar-dark .navbar-nav .nav-link {
  color: var(--white) !important;
}

.navbar-light {
  /* background: linear-gradient(90deg, rgba(241, 243, 246, 0.8) 0%, rgba(236, 240, 246, 0.5) 50%, rgba(241, 243, 246, 0.1) 100%); */
  backdrop-filter: blur(5px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid transparent;
}
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary-light);
  font-weight: 600;
}
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-light);
  font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-light .navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}

/* Add active link style for navbar-light (scrolled state) */
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Dropdown menu in light navbar */
.navbar-light .navbar-nav .dropdown-menu {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
  padding: 1rem 0 !important;
  margin-top: 0.5rem !important;
  transition: all 0.3s ease !important;
  border-top: 3px solid var(--primary) !important;
}

/* Button styles in light navbar */
.navbar-light .btn-outline-dark {
  border-color: #212529;
  color: #212529;
  transition: all 0.3s ease;
}

.navbar-light .btn-outline-dark:hover {
  background-color: #f8f9fa;
  color: #212529;
  border-color: #dee2e6;
}

/* .navbar-light{
  padding: 1.5rem 0;
} */
/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e16 0%, #1a1f2e 100%);
  background-image: url('../images/dna.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .hero-section {
    background-attachment: fixed;
  }
}

/* Products page specific logo handling */
.products-page .logo-light {
  opacity: 0;
}

.products-page .logo-dark {
  opacity: 1;
}

.products-page .navbar-light .logo-light {
  opacity: 0;
}

.products-page .navbar-light .logo-dark {
  opacity: 1;
}

.products-page .scrolled .logo-light {
  opacity: 1;
}

.products-page .scrolled .logo-dark {
  opacity: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 22, 0.92) 0%,
    rgba(26, 31, 46, 0.88) 50%,
    rgba(232, 78, 27, 0.15) 100%
  );
  z-index: 1;
}

.hero-video-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: calc(100% - 100px);
  display: flex;
  align-items: center;
}

.hero-text {
  color: white;
  max-width: 800px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-title .text-primary {
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

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

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 1.5rem 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats {
  gap: 2.5rem;
}

.stat-item {
  color: white;
}

.stat-item h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(232, 78, 27, 0.3));
}

.stat-item p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.8;
}

.quick-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.quick-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  text-wrap: nowrap;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-btn:hover {
  opacity: 1;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 78, 27, 0.3);
  transform: translateY(-2px);
}

.quick-action-btn i {
  font-size: 1.1rem;
}

@media (max-width: 1199.98px) {
  .quick-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .quick-actions .quick-action-btn {
    width: 100% !important;
    justify-content: center;
  }
}

.scroll-indicator {
  color: white;
  font-size: 0.875rem;
}

.scroll-indicator span {
  margin-right: 0.5rem;
  opacity: 0.8;
}

.scroll-indicator i {
  animation: bounce 2s infinite;
}

/* Featured Product Section */
.featured-product-section {
  padding: 6rem 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  position: relative;
  overflow: hidden;
}

.featured-product-section .section-title {
  text-align: left;
}

.product-showcase {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  padding-top: 75%;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: .5s;
  height: 100%;
  object-position: center;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(27, 59, 135, 0.534), transparent);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 1 !important;
  transition: .5s;
  color: white;
}

.featured-product-section .product-showcase:hover .product-image img {
  height: 103% !important;
  /* width: 110% !important; */
  transition: .5s;
}

.featured-product-section h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: -5px;
  line-height: 1.2;
}

.featured-product-section .product-showcase p {
  color: var(--primary);
  margin-bottom: -5px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-info {
  padding-left: 3rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.feature-list li i {
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 1rem;
  font-size: 1.25rem;
  filter: drop-shadow(0 1px 2px rgba(232, 78, 27, 0.3));
}

@keyframes bounce {

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

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .product-info {
    padding-left: 0;
    margin-top: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-item h4 {
    font-size: 1.25rem;
  }

  .stat-item p {
    font-size: 0.875rem;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Products Section Background */
.bg-gradient-overlay {
  background: linear-gradient(135deg, #ffffff 0%, #e8f0fe 50%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.bg-gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 78, 27, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(27, 60, 135, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Premium Product Cards */
.premium-product-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(232, 78, 27, 0.2);
}

.premium-product-card .product-image {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: linear-gradient(45deg, var(--secondary-light), var(--secondary));
}

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

.premium-product-card:hover .product-image img {
  transform: scale(1.08);
}

.premium-product-card .product-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(232, 78, 27, 0.25);
  z-index: 2;
}

.premium-product-card .product-content {
  padding: 35px;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.premium-product-card h3 {
  background: linear-gradient(135deg, #2650B3, #1b3c87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  filter: drop-shadow(0 1px 2px rgba(27, 60, 135, 0.3));
}

.premium-product-card .product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.premium-product-card .spec-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.premium-product-card .spec-item i {
  color: var(--primary);
  font-size: 22px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(232, 78, 27, 0.1);
  transition: all 0.3s ease;
}

.premium-product-card:hover .spec-item i {
  background: rgba(232, 78, 27, 0.15);
  transform: scale(1.05);
}

.premium-product-card .spec-item span {
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(135deg, #2650B3, #1b3c87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.4;
}

.premium-product-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

.premium-product-card .btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
  text-align: center;
  margin-top: auto;
}

.premium-product-card .btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 78, 27, 0.2);
}

@media (max-width: 767.98px) {
  .premium-product-card .product-content {
    padding: 25px;
  }

  .premium-product-card h3 {
    font-size: 1.5rem;
  }

  .premium-product-card .product-specs {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .premium-product-card .spec-item i {
    font-size: 20px;
    padding: 10px;
  }

  .premium-product-card .spec-item span {
    font-size: 15px;
  }
}

/* CTA Premium Section */
.cta-premium {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(45deg, #142d66, #1b3c87);
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232, 78, 27, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-premium .cta-content {
  position: relative !important;
  z-index: 2 !important;
  padding: 0 !important;
  display: block !important;
  background: transparent !important;
}

.cta-premium h2 {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-premium p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-premium .btn {
  position: relative;
  z-index: 2;
  padding: 15px 35px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cta-premium .btn-primary {
  background: white;
  color: var(--primary);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.cta-premium .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
}

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

/* Responsive Styles */
@media (max-width: 991.98px) {
  .premium-product-card .product-image {
    height: 200px;
  }

  .cta-premium {
    padding: 4rem 0;
  }
}

@media (max-width: 767.98px) {
  .premium-product-card .product-specs {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-premium .btn {
    width: 100%;
  }
}

/* Applications Section */
.applications-section {
  background: linear-gradient(135deg, #ffffff00 0%, #f8f9fa00 100%);
  position: relative;
  overflow: hidden;
}

.applications-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 78, 27, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(27, 60, 135, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.application-categories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.category-item {
  background: rgba(255, 255, 255, 0.212);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  min-width: 0;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.category-item:hover,
.category-item.active {
  background: linear-gradient(135deg, rgba(232, 78, 27, 0.03) 0%, rgba(27, 60, 135, 0.03) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: rgba(232, 78, 27, 0.1);
}

.category-item i {
  font-size: 2rem;
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(232, 78, 27, 0.3));
}

.category-item:hover i {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(232, 78, 27, 0.4));
}

.category-item h6 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.category-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

.applications-section-content-parent {
  display: flex;
  align-items: stretch;
}

.applications-section-content-parent>.col-lg-5,
.applications-section-content-parent>.col-lg-6 {
  display: flex;
  flex-direction: column;
}

.applications-content,
.applications-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Main image grid */
.visual-grid {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1.5rem;
  /* spacing between big and small images */
}

/* Big top image */
.visual-grid .grid-item.large {
  flex: 1;
  width: 100%;
  display: flex;
}

/* Bottom two images row */
.visual-grid .bottom-row {
  flex: 1;
  display: flex;
  gap: 1.5rem;
  /* spacing between two small images */
}

/* Each small image */
.visual-grid .bottom-row .grid-item {
  flex: 1;
  display: flex;
}

/* Image styling */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  /* rounded-4 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

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

/* Responsive behavior */
@media (max-width: 991.98px) {
  .applications-section-content-parent {
    flex-direction: column;
  }

  .applications-visual {
    margin-top: 2rem;
  }

  .visual-grid {
    gap: 1rem;
  }

  .visual-grid .bottom-row {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 767.98px) {
  .grid-item img {
    border-radius: 12px;
  }
}


.hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: scale(1.2);
}

.hero-image::before,
.hero-image::after {
  display: none;
}

.hero-image img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
  mask-image: radial-gradient(ellipse at center,
      black 40%,
      rgba(0, 0, 0, 0.6) 50%,
      transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center,
      black 40%,
      rgba(0, 0, 0, 0.6) 50%,
      transparent 75%);
}

@media (max-width: 1199.98px) {
  .hero-image {
    margin-top: 2rem;
    transform: scale(1.15);
  }

  .hero-image img {
    max-height: 400px;
  }
}

@media (max-width: 991.98px) {
  .hero-image {
    display: none;
  }

  .hero-content {
    text-align: center;
    padding: 0 1rem;
  }

  .hero-text {
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .hero-image {
    margin-top: 2rem;
    transform: scale(1);
  }

  .hero-image img {
    max-height: 300px;
  }

  .hero-stats {
    gap: 1.5rem;
    justify-content: center;
    text-align: center;
    align-items: center;
  }

  .quick-actions {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .hero-image {
    margin-top: 2rem;
  }

  .hero-image img {
    max-height: 250px;
  }
}

@media (max-width: 502px) {
  .hero-buttons .btn {
    margin-block: 5px;
    width: 100%;
  }
}
.hero-buttons .btn {
  text-align: center !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .category-row {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .category-item {
    min-height: 120px;
    padding: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .category-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .category-item {
    min-height: 110px;
    padding: 1rem;
  }
}

@media (max-width: 400px) {
  .category-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .category-item {
    min-height: 100px;
    padding: 0.85rem;
  }
}

/* 
----------------------------------------
15. CONTACT PAGE STYLES
----------------------------------------
*/

/* Contact Hero Section */
.contact-hero-section {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(rgba(27, 60, 135, 0.7), rgba(232, 78, 27, 0.5)), url('../images/contact-hero-bg.webp');
  /* Add a suitable background image */
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 60vh;
}

.contact-hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 25, 50, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.contact-hero-section .container {
  position: relative;
  z-index: 2;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  /* Reduced margin */
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero-content .title-accent {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 30px;
}

.contact-hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Contact Info Section */
.contact-info-section {
  padding: 6rem 0;
  background-color: transparent;
  /* Rely on global background */
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  /* Needed for stretched-link */
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.contact-info-card .icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #E84E1B, #FF6B3D);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(232, 78, 27, 0.3);
  transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(232, 78, 27, 0.4);
}

.contact-info-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--secondary-dark);
}

.contact-info-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 10px;
}

.contact-info-card a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none !important;
}

.contact-info-card a::after {
  content: none;
  /* Remove underline effect from stretched link */
}

.contact-info-card .stretched-link:hover {
  color: var(--primary-dark);
}

/* Contact Form & Map Section */
.contact-form-map-section {
  padding: 6rem 0;
  background-color: transparent;
}

.contact-form-container,
.contact-map-container,
.request-callback-card {
  background: rgba(255, 255, 255, 0.8);
  /* Slightly more opaque */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  /* Ensure padding is consistent */
  border-radius: 16px;
  /* Ensure radius is consistent */
  height: auto;
  /* Let content determine height */
}

.contact-form-map-section h2 {
  font-size: 2rem;
  color: var(--secondary-dark);
}

.contact-form-container h5,
.contact-map-container h5 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-form-container p,
.request-callback-card p {
  color: var(--gray);
}

.contact-form-container .form-control,
.contact-form-container .form-select,
.request-callback-card .form-control,
.request-callback-card .form-select {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius-md);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-form-container .form-control::placeholder,
.request-callback-card .form-control::placeholder {
  color: var(--gray);
  opacity: 0.8;
}

.contact-form-container .form-control:focus,
.contact-form-container .form-select:focus,
.request-callback-card .form-control:focus,
.request-callback-card .form-select:focus {
  background-color: white;
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(232, 78, 27, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.05);
  outline: none;
}

/* Style Checkbox */
.contact-form-container .form-check-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-form-container .form-check-input {
  border-color: rgba(0, 0, 0, 0.2);
}

.contact-form-container .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.contact-form-container .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 78, 27, 0.15);
}

/* Validation Feedback */
.invalid-feedback {
  font-size: 0.85rem;
  color: var(--danger);
}

/* Style Buttons */
.contact-form-container .btn-primary,
.request-callback-card .btn-secondary {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Remove specific background override for callback card */
/* .request-callback-card {
   background: rgba(232, 78, 27, 0.08); 
   border-color: rgba(232, 78, 27, 0.15);
} */

.request-callback-card h4 {
  font-size: 1.4rem;
  /* Keep specific heading size if needed */
  color: var(--secondary-dark);
  /* Match form heading color */
}

/* Ensure callback button uses primary style like the inquiry form */
.request-callback-card .btn-secondary {
  background-color: var(--primary);
  /* Change to primary */
  border-color: var(--primary);
  /* Change to primary */
  color: white;
  padding: 0.8rem 1.5rem;
  /* Match inquiry button padding */
  font-size: 1rem;
  /* Match inquiry button font size */
  font-weight: 600;
  /* Match inquiry button font weight */
}

.request-callback-card .btn-secondary:hover {
  background-color: var(--primary-dark);
  /* Change to primary dark */
  border-color: var(--primary-dark);
  /* Change to primary dark */
}

/* FAQ Section Styling */
.contact-faq-section {
  padding: 6rem 0;
  background-color: transparent;
}

.faq-accordion-custom .accordion-item {
  background-color: rgba(255, 255, 255, 0.7);
  /* Slightly more opaque */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  /* Ensure rounded corners are respected */
}

.faq-accordion-custom .accordion-button {
  background-color: transparent;
  color: var(--secondary-dark);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem;
  border-radius: 0 !important;
  /* Remove radius from button itself */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  /* Add subtle separator */
}

.faq-accordion-custom .accordion-item:last-child .accordion-button.collapsed {
  border-bottom: none;
}

.faq-accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(232, 78, 27, 0.03);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .05);
  /* Subtle inset shadow */
  border-bottom-color: transparent;
}

.faq-accordion-custom .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 78, 27, 0.15);
  z-index: 3;
  /* Ensure focus outline is visible */
}

.faq-accordion-custom .accordion-body {
  padding: 1.5rem;
  color: var(--gray);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.3);
  /* Slightly different background for body */
}

/* Ensure contact form and map/callback column have equal height */
.contact-form-map-section .row>div[class^="col-"] {
  display: flex;
  flex-direction: column;
}

.contact-form-container,
.contact-map-container,
.request-callback-card {
  flex-grow: 1;
  /* Allow map/callback to take space */
}

.contact-map-container {
  margin-bottom: 2rem;
  /* Add space between map and callback card */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .contact-hero-content h1 {
    font-size: 3rem;
  }

  .contact-form-container,
  .contact-map-container,
  .request-callback-card {
    padding: 30px;
  }

  .contact-map-container {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-section {
    padding: 140px 0 80px;
    min-height: 50vh;
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .contact-hero-content p {
    font-size: 1.1rem;
  }

  .contact-info-section,
  .contact-form-map-section,
  .contact-faq-section {
    padding: 4rem 0;
  }

  .contact-info-card h4 {
    font-size: 1.2rem;
  }

  .contact-form-map-section h2 {
    font-size: 1.8rem;
  }

  .faq-accordion-custom .accordion-button {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }
}

/* 
----------------------------------------
16. QUOTE FORM STYLES
----------------------------------------
*/
.quote-form-section {
  padding: 6rem 0;
  background-color: transparent;
}

/* Adjust the quote-form-container to use the same glassmorphism styling */
.quote-form-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styles for Quote Form */
.quote-form-container .form-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.quote-form-container .form-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quote-form-container .card-title {
  color: var(--secondary-dark);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(232, 78, 27, 0.2);
}

/* TMT Bar Grid */
.tmt-bars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.tmt-bar-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.25rem;
  border-left: 4px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tmt-bar-card:hover {
  transform: translateY(-5px);
  border-left: 4px solid var(--secondary);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.size-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-dark);
  margin-bottom: 1rem;
}

/* Unit select button styling to match primary/secondary buttons */
.unit-select-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  color: white;
  background-color: var(--primary);
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.unit-select-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Total Weight Display */
.total-weight-display {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  border-left: 4px solid #1b3c87;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.total-weight-display span {
  color: var(--gray);
  font-weight: 500;
}

.total-weight-display strong {
  background: linear-gradient(135deg, #2650B3, #1b3c87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Ring Requirements */
.ring-row {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ring-row:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 78, 27, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ring-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.ring-header span {
  font-weight: 600;
  background: linear-gradient(135deg, #2650B3, #1b3c87);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
}

.ring-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-add-ring,
.btn-delete-ring {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.1rem;
}

.btn-add-ring {
  background: linear-gradient(135deg, #1b3c87, #2650B3);
  box-shadow: 0 4px 15px rgba(27, 60, 135, 0.3);
}

.btn-delete-ring {
  background-color: var(--primary);
}

.btn-add-ring:hover {
  background: linear-gradient(135deg, #142d66, #1b3c87);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27, 60, 135, 0.4);
}

.btn-delete-ring:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.ring-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

/* Form actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

/* Unit Selection Modal */
.unit-selection-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.unit-selection-modal.active {
  display: flex;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--secondary-dark);
  text-align: center;
}

.unit-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.unit-option {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.unit-option:hover {
  background: linear-gradient(135deg, #1b3c87, #2650B3);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(27, 60, 135, 0.2);
}

.modal-close {
  width: 100%;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.1);
  color: var(--gray);
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .quote-form-section {
    padding: 4rem 0;
  }

  .quote-form-container .form-card {
    padding: 30px;
  }

  .tmt-bars-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .quote-form-section {
    padding: 3rem 0;
  }

  .quote-form-container .form-card {
    padding: 25px;
  }

  .tmt-bars-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions button {
    width: 100%;
  }

  .ring-inputs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 415px) {
  .quote-form-container {
    padding: 0 1rem;
  }

  .tmt-bar-card {
    padding: 1rem;
  }

  .input-group {
    flex-direction: column;
  }

  .unit-select-btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* 
----------------------------------------
17. PRODUCT FEATURES STYLES
----------------------------------------
*/
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.product-feature i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.product-feature span {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.4;
}

/* Quality icon styling for the Superior Quality section */
.quality-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(232, 78, 27, 0.2);
  transition: transform 0.3s ease;
}

.about-manufacturing__step:hover .quality-icon {
  transform: scale(1.1);
}

/* Product image styling */
.product-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  height: 250px;
}

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

.about-values__item:hover .product-image img {
  transform: scale(1.05);
}

.product-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #E84E1B, #FF6B3D);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 3px 15px rgba(232, 78, 27, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* 
----------------------------------------
18. PRODUCTS PAGE SPECIFIC STYLES
----------------------------------------
*/
.products-hero-section {
  position: relative;
  background: linear-gradient(120deg, #1b3c87 0%, #142d66 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.products-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../images/patterns/blueprint-pattern.svg') repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
}

.min-vh-80 {
  min-height: 80vh;
}

.products-hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(232, 78, 27, 0.1);
  background: linear-gradient(135deg, rgba(232, 78, 27, 0.1), rgba(255, 107, 61, 0.1));
  border: 1px solid rgba(232, 78, 27, 0.2);
  color: transparent;
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #E84E1B, #FF6B3D);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(232, 78, 27, 0.3);
}

.products-hero-image {
  position: relative;
  padding: 20px;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.floating-badge i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.quality-badge {
  top: 30px;
  right: -15px;
  background: linear-gradient(135deg, #E84E1B, #FF6B3D);
  color: white;
  box-shadow: 0 4px 15px rgba(232, 78, 27, 0.3);
}

.standard-badge {
  bottom: 40px;
  left: 0;
  background: white;
  color: var(--primary-dark);
}

/* Quality Commitment Section */
.quality-commitment-section {
  position: relative;
  background: linear-gradient(120deg, #f8fafd 60%, #eaf0fa 100%);
}

.bg-primary-light {
  background-color: rgba(232, 78, 27, 0.1);
}

.quality-card {
  position: relative;
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quality-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(232, 78, 27, 0.1);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(232, 78, 27, 0.3));
}

.quality-card:hover .quality-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #E84E1B, #FF6B3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(232, 78, 27, 0.4));
}

.quality-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.quality-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quality-card-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.quality-card:hover .quality-card-indicator {
  width: 100%;
}

/* 
----------------------------------------
18. PRODUCTS PAGE ANGULAR HERO
----------------------------------------
*/
.products-hero-angular {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0e1620 0%, #172438 50%, #1b3c87 100%);
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}

.products-hero-angular::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(232, 78, 27, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(27, 60, 135, 0.2) 0%, transparent 40%);
  z-index: 0;
}

.diagonal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  background: linear-gradient(135deg, transparent 0%, rgba(27, 60, 135, 0.7) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
  backdrop-filter: blur(8px);
}

.diagonal-accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20%;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(232, 78, 27, 0.8) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  z-index: 2;
  backdrop-filter: blur(5px);
}

.hero-angular-badge {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary);
  color: white;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 40px;
  transform: skewX(-15deg);
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.angular-content-box {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  padding: 60px 40px 60px 60px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.angular-content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  z-index: -1;
}

.angular-content-inner {
  position: relative;
  z-index: 4;
}

.angular-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.angular-divider {
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(232, 78, 27, 0.7) 100%);
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(232, 78, 27, 0.3);
}

.angular-divider::before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 6px;
  height: 18px;
  background: var(--primary);
  transform: skewX(-20deg);
  box-shadow: 0 5px 15px rgba(232, 78, 27, 0.3);
}

.angular-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.angular-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-angular {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
  z-index: 1;
}

.btn-angular::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-angular:hover::after {
  transform: translateX(0);
}

.btn-angular.primary {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(232, 78, 27, 0.8) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(232, 78, 27, 0.3);
}

.btn-angular.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-angular.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(232, 78, 27, 0.2);
}

.angular-image-column {
  position: relative;
  z-index: 3;
}

.angular-image-wrapper {
  position: relative;
  margin-top: 40px;
}

.angular-image-box {
  position: relative;
  padding: 20px;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 0 100%);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.angular-image-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(232, 78, 27, 0.1) 0%, rgba(232, 78, 27, 0.05) 100%);
  border: 2px solid rgba(232, 78, 27, 0.3);
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 0 100%);
  z-index: -1;
}

.angular-image-box img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: normal;
  clip-path: polygon(10% 0, 100% 0, 100% 90%, 0 100%);
  transform: scale(1.03);
  filter: contrast(1.05);
}

.angular-specs {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}

.spec-item {
  background: rgba(17, 25, 33, 0.7);
  border-left: 3px solid var(--primary);
  padding: 15px;
  flex: 1;
  text-align: center;
  transform: skewX(-10deg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.spec-value {
  display: block;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  /* text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); */
}

.spec-label {
  display: block;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 1199.98px) {
  .angular-title {
    font-size: 3.5rem;
  }
  
  .diagonal-overlay {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@media (max-width: 991.98px) {
  .angular-content-box {
    padding: 40px 30px;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
  }
  
  .angular-title {
    font-size: 3rem;
  }
  
  .angular-image-wrapper {
    margin-top: 60px;
  }
  
  .hero-angular-badge {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .products-hero-angular {
    min-height: 100vh;
    padding: 120px 0 60px;
  }
  
  .hero-angular-badge {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .angular-title {
    font-size: 2.5rem;
  }
  
  .angular-text {
    font-size: 1rem;
  }
  
  .btn-angular {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .spec-item {
    padding: 10px;
  }
  
  .spec-value {
    font-size: 1.4rem;
  }
  
  .spec-label {
    font-size: 0.6rem;
  }
}

/* Ethereal Particles */
.ethereal-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(232, 78, 27, 0.05) 0%, transparent 8%),
    radial-gradient(circle at 85% 20%, rgba(232, 78, 27, 0.05) 0%, transparent 10%),
    radial-gradient(circle at 10% 80%, rgba(27, 60, 135, 0.05) 0%, transparent 12%),
    radial-gradient(circle at 90% 40%, rgba(27, 60, 135, 0.03) 0%, transparent 15%),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 10%),
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 8%);
  opacity: 0.8;
  pointer-events: none;
}

.ethereal-particles::before,
.ethereal-particles::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.3"/></svg>');
  background-size: 150px 150px;
  opacity: 0.5;
  animation: particles-drift 80s linear infinite;
  pointer-events: none;
}

.ethereal-particles::after {
  background-size: 100px 100px;
  opacity: 0.3;
  animation-duration: 60s;
  animation-direction: reverse;
}

@keyframes particles-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 1000px 500px;
  }
}

/* Glow Effect */
.glow-effect {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(232, 78, 27, 0.4) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 1;
  opacity: 0.6;
  animation: glow-pulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.glow-effect::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: -50%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(27, 60, 135, 0.3) 0%, transparent 70%);
  filter: blur(30px);
  opacity: 0.6;
  animation: glow-pulse-alt 8s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

@keyframes glow-pulse-alt {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* 
----------------------------------------
18. PRODUCTS HERO PREMIUM
----------------------------------------
*/
.products-hero-premium {
  position: relative;
  min-height: 100vh;
  background: transparent;
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}

.products-hero-premium .row {
  min-height: 500px;
}

.products-hero-premium .col-lg-7,
.products-hero-premium .col-lg-5 {
  display: flex;
  align-items: center;
}

.premium-content-inner {
  position: relative;
  z-index: 4;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.premium-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  /* text-transform: uppercase; */
  color: #212529;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.premium-title .text-primary {
  color: var(--primary) !important;
}

.premium-divider {
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(232, 78, 27, 0.7) 100%);
  margin-bottom: 30px;
  border-radius: 3px;
  box-shadow: 0 4px 15px rgba(232, 78, 27, 0.3);
}

.premium-text {
  color: #4a4a4a;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.premium-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.premium-image-wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.premium-image-box {
  position: relative;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
  height: auto;
  width: 100%;
}

.premium-image-box::before {
  display: none;
}

.premium-image-box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  transform: scale(1.05);
  transition: transform 0.5s ease-out, filter 0.5s ease-out;
}

.premium-image-box:hover img {
  transform: scale(1.05) translateY(-5px);
  filter: drop-shadow(0 25px 35px rgba(232, 78, 27, 0.2));
}

.premium-specs {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  margin-top: 25px;
}

.spec-badge {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 20px 10px;
  flex: 1;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(232, 78, 27, 0.1);
  transition: all 0.3s ease;
}

.spec-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
  opacity: 0.8;
}

.spec-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(232, 78, 27, 0.15);
  border-color: rgba(232, 78, 27, 0.2);
}

.spec-value {
  display: block;
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.spec-label {
  display: block;
  color: #333;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 1199.98px) {
  .premium-title {
    font-size: 3.5rem;
  }
  
  .premium-content-inner {
    padding-right: 20px;
  }
}

@media (max-width: 991.98px) {
  .products-hero-premium .row {
    min-height: auto;
  }
  
  .products-hero-premium .col-lg-7,
  .products-hero-premium .col-lg-5 {
    height: auto;
  }
  
  .premium-content-inner {
    padding-right: 0;
    padding-bottom: 40px;
    height: auto;
  }
  
  .premium-image-wrapper {
    height: auto;
  }
  
  .premium-image-box {
    height: auto;
  }
  
  .premium-title {
    font-size: 3rem;
  }
}

@media (max-width: 767.98px) {
  .products-hero-premium {
    min-height: 100vh;
    padding: 120px 0 60px;
  }
  
  .premium-title {
    font-size: 2.5rem;
  }
  
  .premium-text {
    font-size: 1rem;
  }
  
  .spec-badge {
    padding: 10px;
  }
  
  .spec-value {
    font-size: 1.4rem;
  }
  
  .spec-label {
    font-size: 0.6rem;
  }
}

/* Global logo styles */
.navbar-brand img {
  max-height: 50px;
  width: auto;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Normal (dark) navbar logo behavior for all pages except products */
.home-page .navbar-dark .navbar-brand img,
.about-page .navbar-dark .navbar-brand img, 
.contact-page .navbar-dark .navbar-brand img,
.quote-page .navbar-dark .navbar-brand img,
.navbar-dark .navbar-brand img {
  display: block;
}

.about-values__item .about-values__text {
  font-size: 16px;
}

/* Navbar Dropdown Styling - Global */
.navbar .dropdown-menu {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  margin-top: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.navbar .dropdown-item {
  padding: 0.6rem 1.5rem;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
  background: rgba(232, 78, 27, 0.1);
  color: var(--primary);
  transform: translateX(5px);
}

.navbar .dropdown-item.active {
  background: rgba(232, 78, 27, 0.15);
  color: var(--primary);
  font-weight: 600;
}

.navbar .dropdown-divider {
  opacity: 0.1;
  margin: 0.5rem 1rem;
}

/* Mobile dropdown styling */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(27, 59, 135, 0) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(27, 60, 135, 0.15);
    border-radius: 0 0 16px 16px;
    padding: 1rem;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dropdown-menu {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--primary);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .navbar-nav .nav-link,
  .dropdown-menu .dropdown-item {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  }

  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover,
  .dropdown-menu .dropdown-item.active,
  .dropdown-menu .dropdown-item:hover {
    color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(5px);
  }
}

/* Products page specific navbar handling */
.products-page .navbar {
  background: transparent;
  background-color: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.products-page .navbar.scrolled {
  background: linear-gradient(135deg, rgba(27, 60, 135, 0.98), rgba(20, 45, 102, 0.95));
  background-color: rgba(27, 60, 135, 0.98);
  color: var(--white) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(27, 60, 135, 0.4);
  border-bottom: 1px solid rgba(38, 80, 179, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-page .navbar.scrolled .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.products-page .navbar.scrolled .navbar-nav .nav-link:hover {
  color: var(--primary);
}

.products-page .navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--primary-light);
}

.products-page .navbar.scrolled .btn-outline-dark {
  border-color: #ffffff;
  color: #ffffff;
}

.products-page .navbar.scrolled .btn-outline-dark:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Fix logo display on products page when scrolled */
.products-page .navbar.scrolled .logo-dark {
  opacity: 0;
  position: absolute;
}

.products-page .navbar.scrolled .logo-light {
  opacity: 1;
}

.testimonial-carousel p {
  font-size: 12px !important;
}

.testimonial-carousel p {
  color: #6c757d;
}

/* 
----------------------------------------
DNA POSTER BANNER SECTION
----------------------------------------
*/
.dna-poster-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0e16 0%, #1a1f2e 100%);
  background-image: url('../images/dna.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .dna-poster-banner {
    background-attachment: fixed;
  }
}
.dna-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 14, 22, 0.95) 0%,
    rgba(10, 14, 22, 0.85) 45%,
    rgba(232, 78, 27, 0.1) 75%,
    transparent 100%
  );
  z-index: 1;
}

.dna-poster-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 2;
}

.dna-poster-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: left;
  padding: 3rem 0;
  max-width: 550px;
  margin: 0;
}

.poster-subtitle {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.poster-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.title-highlight {
  color: white;
  font-weight: 300;
  display: block;
  font-size: 2.8rem;
  margin-bottom: 0.2rem;
}

.title-dna {
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.title-dna::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E84E1B, #FF6B3D);
  border-radius: 2px;
}

.poster-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 400;
}

.poster-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
}

.poster-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.poster-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 78, 27, 0.3);
  transform: translateY(-2px);
}

.poster-feature i {
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.poster-feature span {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.3px;
}

.poster-cta {
  text-align: left;
}

.btn-poster-primary {
  background: linear-gradient(135deg, #E84E1B, #FF6B3D);
  border: none;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(232, 78, 27, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-poster-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.4s ease;
}

.btn-poster-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 78, 27, 0.4);
  color: white;
  text-decoration: none;
}

.btn-poster-primary:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  /* .dna-poster-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-size: auto 90%;
    background-position: 70% center;
  } */
  
  .poster-title {
    font-size: 3rem;
  }
  
  .title-highlight {
    font-size: 2.4rem;
  }
}

@media (max-width: 991.98px) {
  /* .dna-poster-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 350px;
    background-attachment: scroll;
    background-size: auto 70%;
    background-position: 80% center;
  } */
  
  .dna-poster-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .poster-cta {
    text-align: center;
  }
  
  .poster-title {
    font-size: 2.8rem;
  }
  
  .title-highlight {
    font-size: 2.2rem;
  }
  
  .poster-features {
    gap: 1rem;
  }
  
  .poster-feature {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 767.98px) {
  /* .dna-poster-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    min-height: 300px;
    background-size: auto 50%;
    background-position: center bottom;
  } */
  
  .dna-poster-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 14, 22, 0.95) 0%,
      rgba(10, 14, 22, 0.8) 60%,
      rgba(232, 78, 27, 0.1) 100%
    );
  }
  
  .dna-poster-content {
    padding: 2rem 0;
    text-align: center;
  }
  
  .poster-cta {
    text-align: center;
  }
  
  .poster-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .title-highlight {
    font-size: 1.8rem;
  }
  
  .poster-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .poster-features {
    gap: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  
  .poster-feature {
    justify-content: center;
    flex: none;
  }
  
  .btn-poster-primary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .poster-title {
    font-size: 2rem;
  }
  
  .title-highlight {
    font-size: 1.6rem;
  }
  
  .poster-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }
  
  .poster-description {
    font-size: 0.95rem;
  }
  
  .poster-feature {
    padding: 0.8rem 1.2rem;
  }
  
  .poster-feature i {
    font-size: 1.1rem;
  }
  
  .poster-feature span {
    font-size: 0.8rem;
  }
}

/* Remove animation that was too flashy */


.dna-poster-banner .container {
  max-width: 1200px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

/* Hero Section Metallic Button Styles */
.hero-section .btn-primary {
  background: linear-gradient(135deg, #E84E1B, #FF6B3D);
  border: none;
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 15px rgba(232, 78, 27, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-section .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.4s ease;
}

.hero-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 78, 27, 0.4);
  color: white;
  text-decoration: none;
}

.hero-section .btn-primary:hover::before {
  left: 100%;
}

.hero-section .btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-section .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(232, 78, 27, 0.3);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-contact i {
  margin-right: 0.75rem;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-feature i {
  background: linear-gradient(135deg, #FF6B3D, #E84E1B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  filter: drop-shadow(0 1px 2px rgba(232, 78, 27, 0.3));
}

.quality-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E84E1B, #FF6B3D);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(232, 78, 27, 0.3);
  transition: transform 0.3s ease;
}

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

@media (max-width: 767.98px) {
  .navbar-brand img {
    max-height: 40px;
  }
  
  .hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e16 0%, #1a1f2e 100%);
    background-image: url('../images/dna-vertical.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

/* Mobile Navbar Toggler - Fixed Version */
.navbar-toggler {
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 20px;
  height: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active state - when menu is opened (using aria-expanded attribute) */
.navbar-toggler[aria-expanded="true"] {
  background: linear-gradient(135deg, #E84E1B, #FF6B3D) !important;
  border-color: transparent !important;
  color: white !important;
  transform: rotate(90deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m6 6l18 18M6 24L24 6'/%3e%3c/svg%3e") !important;
  transform: rotate(180deg);
}
.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}