/**
 * ==========================================================================
 * STYLETEST.CSS - Main Stylesheet for M.B. Sales Corporation
 * ==========================================================================
 * 
 * This stylesheet contains all custom styles organized by components/sections.
 * 
 * TABLE OF CONTENTS:
 * 
 * 1. UTILITY CLASSES
 *    - Flexbox helpers
 *    - Background colors
 *    - Text colors
 * 
 * 2. HERO SECTION / MAIN SLIDER
 *    - Video background
 *    - Overlay styles
 *    - Content positioning
 * 
 * 3. HISTORY SECTION
 *    - Timeline items
 *    - Year badges
 * 
 * 4. CONTACT PAGE COMPONENT
 *    - Hero section
 *    - Form styles
 *    - Company info
 *    - Media contact
 * 
 * 5. DIVISION CARDS
 *    - Card layouts
 *    - Gradient backgrounds
 * 
 * 6. FORM ELEMENTS
 *    - Input fields
 *    - Textarea
 *    - Focus states
 * 
 * 7. CUSTOM SECTIONS
 *    - Text content
 *    - Headings
 *    - Buttons (Know More)
 * 
 * 8. IMAGE & OVERLAY COMPONENTS
 *    - Background images
 *    - Blue overlay
 * 
 * 9. CAROUSEL COMPONENT
 *    - Bootstrap overrides
 *    - Arrow buttons
 * 
 * 10. ABOUT US PAGE CARDS
 *     - Vision/Mission/Values cards
 *     - Icon styles
 * 
 * 11. INDUSTRIES / SERVICE CARDS
 *     - Service card layout
 *     - Number badge
 *     - Hover animations
 * 
 * 12. TIMELINE COMPONENT
 *     - Hexagon year markers
 *     - Lines and dots
 *     - Vertical connectors
 * 
 * 13. PRODUCT FILTER COMPONENT
 *     - Filter navigation
 *     - Active states
 * 
 * 14. PRODUCT CARDS
 *     - Card layout
 *     - Image hover effects
 *     - Badge and titles
 * 
 * 15. BROCHURE CARDS
 *     - Download cards
 *     - Circle arrow button
 * 
 * 16. FOOTER SECTION
 *     - Custom column widths
 * 
 * 17. AT A GLANCE SECTION (Horizontal Carousel)
 *     - Section container
 *     - Carousel track
 *     - Stat items
 *     - Animations
 *     - Responsive styles
 * 
 * ==========================================================================
 */


/* ==========================================================================
   0. GLOBAL OVERFLOW FIX (iPhone Safari white side band fix)
   ========================================================================== */

/**
 * Safari on iOS requires overflow-x: hidden on BOTH html and body.
 * Chrome/Android handles this automatically, but Safari allows elements
 * with position:relative/absolute to escape parent overflow containers.
 * This prevents the horizontal scroll and white side band on iPhones.
 */
html,
body {
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-overflow-scrolling: touch;
}

/**
 * Ensure the page wrapper also clips overflow
 */
.page-wrapper {
  overflow-x: hidden;
}

/**
 * Constrain hero video to viewport width on all devices
 */
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   0b. MOBILE OFFCANVAS NAV STYLES (BS5 Backport for BS4)
   ========================================================================== */

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 300px;
  border-left: 1px solid rgba(0, 0, 0, .2);
  transform: translateX(100%);
}

.offcanvas.show {
  transform: none;
  visibility: visible;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  opacity: .5;
  cursor: pointer;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  /* z-index: 9999998; */
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.offcanvas-backdrop.fade {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offcanvas-backdrop.fade.show {
  opacity: 0.5;
}

/* Hide offcanvas completely on desktop (it's for mobile only) */
@media (min-width: 992px) {

  .offcanvas,
  .offcanvas-backdrop {
    display: none !important;
  }
}

/**
 * Offcanvas panel styling
 */
#mobileOffcanvas {
  max-width: 300px;
  border-left: none;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

#mobileOffcanvas .offcanvas-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

#mobileOffcanvas .offcanvas-body {
  padding: 0;
}

/**
 * Nav links
 */
.offcanvas-nav>li {
  border-bottom: 1px solid #f0f0f0;
}

.offcanvas-nav>li>a {
  display: block;
  padding: 14px 20px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.offcanvas-nav>li>a:hover {
  color: var(--main-color-secondary, #c5a04e);
}

/**
 * Dropdown toggle button
 */
.offcanvas-dropdown {
  position: relative;
}

.offcanvas-dropdown>a {
  padding-right: 50px !important;
}

.offcanvas-dropdown-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 48px;
  background: transparent;
  border: none;
  border-left: 1px solid #f0f0f0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  font-size: 16px;
  color: #333;
}

.offcanvas-dropdown-btn.open {
  transform: rotate(180deg);
}

/**
 * Dropdown sub-menu
 */
.offcanvas-sub-menu {
  display: none;
  background: #f9f9f9;
  padding: 0;
}

.offcanvas-sub-menu.open {
  display: block;
}

.offcanvas-sub-menu li a {
  display: block;
  padding: 10px 20px 10px 35px;
  color: #555;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.offcanvas-sub-menu li:last-child a {
  border-bottom: none;
}

.offcanvas-sub-menu li a:hover {
  color: var(--main-color-secondary, #c5a04e);
  padding-left: 40px;
}

/* ==========================================================================
   1. UTILITY CLASSES
   ========================================================================== */

/**
 * Flexbox helper for centering with space-between
 */
.center-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/**
 * Primary background color with white text
 */
.bg-pri {
  background-color: var(--main-color-primary);
  color: white;
}

/**
 * Secondary background color
 */
.bg-sec {
  background-color: var(--main-color-secondary);
}

/**
 * White text color
 */
.text-white {
  color: #ffffff;
}


/* ==========================================================================
   2. HERO SECTION / MAIN SLIDER
   ========================================================================== */

/**
 * Main slider container - full viewport hero section
 */
.main-slider {
  position: relative;
  overflow: hidden;
  top: 0px;
  max-height: 100vh;
}

/**
 * Video element styling - full width
 */
.video {
  width: 100%;
}

/**
 * Hero content - centered absolutely positioned text
 */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 60%;
}

.content h2 {
  font-size: var(--font-60);
  font-weight: 200;
  color: #ffffff;
  line-height: 1;
}

.content p {
  font-size: var(--font-36);
  color: #ffffff;
  line-height: 42px;
  font-weight: 500;
}

/**
 * Button container
 */
.button-box1 {
  position: relative;
  float: none;
}

/**
 * Primary button hover state
 */
.bg-primary :hover {
  background-color: #16266c !important;
  transition: width 0.5s ease-in-out, background-color 0.3s linear;
}

/**
 * Dark overlay for video backgrounds
 */
.overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  background: #0000007d;
}

/**
 * Video background container
 */
.video-bg {
  max-height: 100vh;
}

/**
 * Scroll indicator - positioned at bottom of hero section
 */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 2s infinite;
}

/**
 * Golden hexagon outline container
 */
.hexagon-outline {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid var(--main-color-secondary);
}

.hexagon-outline:hover {
  transform: scale(1.1);
}

/**
 * Hexagon SVG image
 */
.hexagon-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(79%) sepia(30%) saturate(700%) hue-rotate(5deg) brightness(95%) contrast(85%);
}

/**
 * Down arrow icon inside hexagon
 */
.hexagon-outline .down-arrow {
  position: relative;
  z-index: 1;
  color: var(--main-color-secondary);
  width: 20px;
  height: 20px;
}

/**
 * Bounce animation for scroll indicator
 */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-15px);
  }

  60% {
    transform: translateX(-50%) translateY(-7px);
  }
}

#home-page-navbar {
  background: transparent !important;
}

@media (max-width: 768px) {
  #home-page-navbar {
    background: var(--main-color-primary) !important;
  }
}

/* ==========================================================================
   3. HISTORY SECTION
   ========================================================================== */

/**
 * History section container with dotted borders
 */
.history-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px 80px;
  border-top: 1px dotted #0b1957;
  border-bottom: 1px dotted #0b1957;
}

/**
 * Individual history item
 */
.history-item {
  text-align: center;
  margin-bottom: 50px;
}

/**
 * Year badge with primary background
 */
.history-year {
  background-color: #0b1957;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 30px 20px;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 15px;
}

/**
 * History description text
 */
.history-text {
  max-width: 300px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* ==========================================================================
   4. CONTACT PAGE COMPONENT
   ========================================================================== */

/**
 * Contact page hero section
 */
.contact-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}

/**
 * Contact form container
 */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
}

/**
 * Form label styling
 */
.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--main-color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

/**
 * Form control and select base styles
 */
.form-control,
.form-select {
  border: 1px solid #ddd;
  border-radius: 0px;
  padding: 12px;
  font-size: var(--font-14);
  margin-bottom: 30px;

}

/**
 * Form control focus state
 */
.form-control:focus,
.form-select:focus {
  border-color: #0088cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 136, 204, 0.15);
}

/**
 * Textarea specific styles
 */
textarea.form-control {
  min-height: 120px;
  border: 1px solid;
}

/**
 * Privacy checkbox text
 */
.privacy-check {
  font-size: 0.85rem;
  color: #666;
  margin: 20px 0;
}

/**
 * Send button styling
 */
.btn-send {
  background: white;
  border: 2px solid #333;
  color: #333;
  padding: 12px 50px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: #333;
  color: white;
}

/**
 * Company info section with grey background
 */
.company-info {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
  margin-top: 60px;
}

.company-info h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.company-info p {
  margin-bottom: 20px;
}

/**
 * Address link with underline
 */
.address-link {
  color: #333;
  text-decoration: underline;
}

/**
 * Media contact section
 */
.media-contact {
  padding: 60px 0;
  background: #f8f9fa;
  text-align: center;
}

.media-contact h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

/**
 * Contact details list
 */
.contact-details {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-details a {
  color: #333;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}


/* ==========================================================================
   5. DIVISION CARDS
   ========================================================================== */

/**
 * Divisions section container
 */
.divisions-section {
  padding: 60px 0;
}

/**
 * Division card base styles
 */
.division-card {
  padding: 40px 30px;
  border-radius: 8px;
  color: white;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.division-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.division-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.division-card a {
  color: white;
  text-decoration: none;
}

.division-card a:hover {
  text-decoration: underline;
}

/**
 * Division card gradient variants
 */
.agricultural {
  background: linear-gradient(135deg, #00a651 0%, #008c47 100%);
}

.mining {
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
}

.specialty {
  background: linear-gradient(135deg, #7b2cbf 0%, #6a1fb0 100%);
}

/**
 * Icon with text layout
 */
.icon-text {
  display: flex;
  align-items: start;
  margin-bottom: 15px;
}

.icon-text i {
  margin-right: 10px;
  margin-top: 3px;
}

/**
 * Arrow link at bottom of cards
 */
.arrow-link {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
}

.arrow-link:after {
  content: "→";
  margin-left: 8px;
}


/* ==========================================================================
   6. FORM ELEMENTS
   ========================================================================== */

/**
 * General input field styles
 * Applies to text, email, tel inputs and textareas
 */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 1px solid #000;
  background: transparent;
  outline: none;
  width: 100%;
  text-transform: capitalize;
  padding: 1rem 0.4rem;
  transition: border-color 0.2s ease;
}

/**
 * Input hover and focus states with gold accent
 */
input[type="text"]:hover,
input[type="text"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
textarea:hover,
textarea:focus {
  border: 1px solid #f0cb7b;
}


/* ==========================================================================
   7. CUSTOM SECTIONS
   ========================================================================== */

/**
 * Custom section with white background
 */
.custom-section {
  padding: 100px 0;
  background-color: #fff;
  min-height: 100vh;
}

/**
 * Text content container - centered flex layout
 */
.text-content {
  max-width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/**
 * Main heading typography
 */
.main-heading {
  font-size: var(--font-48);
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  text-align: center;
  width: 100%;
}

/**
 * Lead paragraph styling
 */
.lead-paragraph {
  font-size: var(--font-18);
  color: #495057;
  margin-top: 1rem;
}

/**
 * Know More button with icon
 */
.btn-know-more {
  display: flex;
  align-items: center;
  padding: 0 6px 0;
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 0px;
  overflow: hidden;
  width: fit-content;
  margin-top: 2rem;
}

.btn-know-more span {
  padding: 0.75rem 1.5rem;
  font-size: var(--font-16);
  color: #212529;
  font-weight: 500;
}

/**
 * Button icon circle
 */
.btn-know-more .btn-icon {
  background-color: var(--main-color-primary);
  color: white;
  padding: 0.75rem 0.75rem;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  font-size: 1.2rem;
}

.btn-know-more:hover {
  border: 1px solid var(--main-color-secondary);
}


/* ==========================================================================
   8. IMAGE & OVERLAY COMPONENTS
   ========================================================================== */

/**
 * Full-size background image container
 */
.image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/**
 * Blue overlay for bottom half of sections
 */
.blue-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #3366ff;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 2rem;
}

/**
 * Text container within overlay
 */
.overlay-text-container {
  max-width: 800px;
}


/* ==========================================================================
   9. CAROUSEL COMPONENT
   ========================================================================== */

/**
 * Carousel minimum height
 */
.carousel {
  min-height: 500px;
}

/**
 * Explore button - transparent with white border
 */
.btn-explore {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-explore:hover {
  background-color: white;
  color: var(--main-color-primary);
  border-color: white;
}

/**
 * Card component with primary background
 */
.card {
  background: var(--main-color-primary);
  padding-left: var(--padding-left-20);
  border-radius: 0px;
  overflow: hidden;
  border: 0px solid var(--main-color-primary);
}

/**
 * About section card variant
 */
.card-about-section {
  padding-left: var(--padding-left-20);
  border-radius: 0.5rem;
  overflow: hidden;
}

/**
 * Card primary button overrides
 */
.card .btn-primary {
  background-color: #ffffff00 !important;
  border: 1px double var(--main-color-secondary) !important;
  border-radius: 0px;
  transition: all 0.2s ease-in-out;
}

.card .btn-primary:hover {
  background-color: #ffffff00 !important;
  border-style: double !important;
  transform: scale(1.05);
}

/**
 * Card image sizing
 */
.card img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
}

/**
 * Carousel control buttons - Bootstrap overrides
 */
.carousel-control-prev,
.carousel-control-next {
  position: relative;
  opacity: 1;
  width: auto;
  margin: 0;
  padding: 0;
}

/**
 * Custom carousel arrow button
 */
.carousel-arrow-btn {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px double var(--main-color-secondary);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: all 0.2s ease-in-out;
}

.carousel-arrow-btn:hover {
  border-color: var(--main-color-secondary);
  transform: scale(1.05);
}

.carousel-arrow-btn svg {
  stroke: var(--main-color-secondary);
  width: 20px;
  height: 20px;
}

/**
 * Reverse carousel direction: slides move right-to-left
 */
#carouselExampleIndicators .carousel-item-next:not(.carousel-item-start) {
  transform: translateX(-100%) !important;
}

#carouselExampleIndicators .carousel-item-prev:not(.carousel-item-end) {
  transform: translateX(100%) !important;
}

#carouselExampleIndicators .carousel-item-next.carousel-item-start,
#carouselExampleIndicators .carousel-item-prev.carousel-item-end {
  transform: translateX(0) !important;
}

#carouselExampleIndicators .active.carousel-item-start {
  transform: translateX(100%) !important;
}

#carouselExampleIndicators .active.carousel-item-end {
  transform: translateX(-100%) !important;
}


/* ==========================================================================
   10. ABOUT US PAGE CARDS
   ========================================================================== */

/**
 * About page card (Vision/Mission/Values)
 */
.card-about {
  height: 400px;
  border: 1px solid var(--main-color-primary);
}

.card-about:hover {
  height: 400px;
  border: 1px solid var(--main-color-secondary);
}

.card-industry {
  height: 250px;
  border: 1px solid var(--main-color-primary);
}

.card-industry:hover {
  height: 250px;
  border: 1px solid var(--main-color-secondary);
}


.stroke-industry {
  height: 250px;
  border: 1px solid var(--main-color-primary);
}

.stroke-industry:hover {
  height: 250px;
  border: 1px solid var(--main-color-secondary);
}

/**
 * Card body layout - centered flex
 */
.card-about .card-body {
  color: #000;
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

@media (max-width: 767px) {
  .card-about .card-body {
    padding: 20px;
  }

  /* Contact info cards: center-align on mobile */
  .contact-info-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 10px !important;
  }

  .contact-info-card .me-3 {
    margin-right: 0 !important;
    margin-top: 0 !important;
  }

  .contact-social-icons {
    justify-content: center !important;
  }
}

.card-industry .card-body {
  color: #000;
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.stroke-industry .card-body {
  color: #000;
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

/**
 * About icon hover state - color change
 */
.card-about:hover .about-icon path {
  fill: var(--main-color-secondary) !important;
}

.card-industry:hover .about-icon path {
  fill: var(--main-color-secondary) !important;

}

.stroke-industry:hover .about-icon path {
  stroke: var(--main-color-secondary) !important;
}

/**
 * About section icon sizing
 */
.about-icon {
  max-width: 62px;
  max-height: 62px;
  margin-bottom: 30px;
}


/* ==========================================================================
   11. INDUSTRIES / SERVICE CARDS
   ========================================================================== */

/**
 * Service card with shadow and hover effect
 */
/* .service-card {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
} */

/**
 * Top bar animation on hover
 */
/* .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: linear-gradient(90deg, #0B1957, #0B1957);
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
} */

/**
 * Number badge for service cards
 */
.number-badge {
  width: 50px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/**
 * Hexagon SVG image for number badge
 */
.hexagon-badge-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(79%) sepia(30%) saturate(700%) hue-rotate(5deg) brightness(95%) contrast(85%);
}

/**
 * Number text inside the hexagon badge
 */
.badge-number {
  position: relative;
  z-index: 1;
  color: var(--main-color-primary);
  font-weight: 700;
  font-size: 18px;
}


/* ==========================================================================
   12. TIMELINE COMPONENT
   ========================================================================== */

/**
 * Timeline container
 */
.timeline {
  position: relative;
  padding: 40px 0;
}

/**
 * Individual timeline item
 */
.timeline-item {
  position: relative;
}

/**
 * Hexagon year marker
 */
.hex {
  width: 80px;
  height: 45px;
  background: #003c78;
  margin: 0 auto;
  position: relative;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/**
 * Dotted horizontal line
 */
.timeline-line {
  border-top: 2px dotted #003c78;
  height: 2px;
  width: 100%;
  position: relative;
  top: 40px;
}

/**
 * Connector dots on timeline
 */
.timeline-dot {
  width: 14px;
  height: 14px;
  background: #003c78;
  border-radius: 50%;
  position: absolute;
  top: 32px;
  transform: translateX(-50%);
}

/**
 * Vertical connecting line
 */
.vertical-line {
  width: 2px;
  background: #003c78;
  height: 80px;
  margin: 20px auto 0;
}

/**
 * Bottom arc connector
 */
.timeline-arc {
  border: 3px dotted #003c78;
  border-bottom: none;
  border-left: none;
  height: 140px;
  width: 200px;
  border-radius: 0 0 200px 0;
  margin-left: auto;
}


/* ==========================================================================
   13. PRODUCT FILTER COMPONENT
   ========================================================================== */

/**
 * CSS Variables for product filter
 */
:root {
  --card-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/**
 * Filter navigation - horizontal scrollable tabs
 */
.filter-nav {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/**
 * Hide scrollbar in webkit browsers
 */
.filter-nav::-webkit-scrollbar {
  display: none;
}

/**
 * Filter navigation link styling
 */
.filter-nav .nav-link {
  position: relative;
  font-weight: 400;
  text-transform: capitalize;
  color: #505050;
  padding: 10px;
}

/**
 * Active filter link - circle fill
 */
.filter-nav .nav-link.active::before {
  background: var(--main-color-primary);
  border-color: var(--main-color-primary);
}

/**
 * Active filter link text styling
 */
.filter-nav .nav-link.active {
  background: transparent !important;
  color: var(--main-color-primary) !important;
}


/* ==========================================================================
   14. PRODUCT CARDS
   ========================================================================== */

/**
 * Product card base styles
 */
.product-card {
  background: #fff;
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--card-shadow);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/**
 * Know more button pushed to bottom
 */
.product-card .btn-know-more {
  margin-top: auto;
}

/**
 * Product card hover effect
 */
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/**
 * Product category badge
 */
.product-badge {
  background: var(--main-color-secondary);
  color: #fff;
  font-size: var(--font-14);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 14px;
}

/**
 * Product image container
 */
.product-img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #f8f9fa;
  position: relative;
}

/**
 * Product image sizing
 */
.product-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/**
 * Product image hover zoom effect
 */
.product-card:hover .product-img img {
  transform: scale(1.08);
}

/**
 * Product title styling
 */
.product-title {
  font-size: var(--font-20);
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
}

/**
 * Specification label (uppercase, grey)
 */
.spec-label {
  font-size: var(--font-13);
  color: var(--text-grey);
  margin-bottom: 2px;
  text-transform: uppercase;
}

/**
 * Specification value
 */
.spec-value {
  font-size: var(--font-14);
  margin-bottom: 10px;
  font-weight: 500;
}

/**
 * Claims section title
 */
.claims-title {
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 6px;
}

/**
 * Read more link
 */
.read-more {
  font-weight: 600;
  color: var(--main-color-primary);
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/**
 * Key benefits section
 */
.benefit-item h3 {
  font-size: var(--font-16);
  font-weight: 500;
  margin-bottom: 15px;
  color: #212529;
}

.benefit-item p {
  color: #6c757d;
  font-size: var(--font-14);
  line-height: 1.6;
}


/* ==========================================================================
   15. BROCHURE CARDS
   ========================================================================== */

/**
 * Brochure download card
 */
.brochure-card {
  border: 1px solid #eee;
  padding: 40px;
  height: 100%;
  min-height: 300px;
  position: relative;
  transition: all 0.3s ease;
  background: white;
  display: flex;
  flex-direction: column;
}

.brochure-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/**
 * Brochure title
 */
.brochure-title {
  font-size: var(--font-16);
  color: #555;
  margin-bottom: auto;
}

/**
 * Circle arrow download button
 */
.btn-circle-arrow {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.3s ease;
  margin-top: 30px;
}

/**
 * Circle arrow hover state
 */
.brochure-card:hover .btn-circle-arrow {
  background-color: var(--main-color-primary);
  border-color: var(--main-color-primary);
  color: white;
}


/* ==========================================================================
   16. FOOTER SECTION
   ========================================================================== */

/**
 * Custom column widths for footer grid
 * These override Bootstrap's default column widths for specific layouts
 */

/* Default - Full width columns for mobile (below 576px) */
.col-sm-12-5,
.col-md-6-5,
.col-md-3-5,
.col-md-2-5,
.col-md-2-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* Small screens (576px+) - Full width columns */
@media (min-width: 576px) {
  .col-sm-12-5 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Medium screens (768px+) - Half width columns */
@media (min-width: 768px) {
  .col-md-6-5 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Large screens (992px+) - Custom widths */
@media (min-width: 992px) {

  /* About column - 35.5% */
  .col-md-3-5 {
    -ms-flex: 0 0 35.5%;
    flex: 0 0 35.5%;
    max-width: 35.5%;
  }

  /* Contact column - 28.5% */
  .col-md-2-5 {
    -ms-flex: 0 0 28.5%;
    flex: 0 0 28.5%;
    max-width: 28.5%;
  }

  /* Links columns - 18% */
  .col-md-2-4 {
    -ms-flex: 0 0 18%;
    flex: 0 0 18%;
    max-width: 18%;
  }
}

/* Footer mobile adjustments */
@media (max-width: 767px) {
  .footer-style-two .footer-widget.about-widget .text {
    width: 100% !important;
  }

  .footer-style-two .widgets-section .row {
    flex-direction: column;
  }

  .footer-style-two .footer-bottom .pull-left,
  .footer-style-two .footer-bottom .pull-right {
    float: none;
    text-align: center;
  }
}


/* ==========================================================================
   17. AT A GLANCE SECTION (Horizontal Carousel)
   ========================================================================== */

/* ---------- Hero Section Mobile Responsive ---------- */

/**
 * Tablet breakpoint - hero content
 */
@media (max-width: 992px) {
  .content {
    width: 80%;
  }

  .content h2 {
    font-size: 48px;
  }
}

/**
 * Mobile breakpoint - hero section fix for scroll indicator overlapping text
 */
@media (max-width: 767px) {
  .content {
    width: 90%;
  }

  .content h2 {
    font-size: 36px;
    line-height: 1.15;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .hexagon-outline {
    width: 40px;
    height: 40px;
  }

  .overlay {
    height: 100%;
  }
}

/**
 * Small mobile breakpoint - hero section
 */
@media (max-width: 480px) {
  .content {
    width: 92%;
  }

  .content h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .content p {
    font-size: 18px;
    line-height: 26px;
  }

  .scroll-indicator {
    bottom: 15px;
  }

  .hexagon-outline {
    width: 36px;
    height: 36px;
  }

  .hexagon-outline svg {
    width: 16px;
    height: 16px;
  }
}

/**
 * Section container with blue gradient background
 */
.at-a-glance-section {
  background: linear-gradient(135deg, var(--main-color-primary) 0%, var(--main-color-primary) 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

/**
 * Subtle pattern overlay for texture
 */
.at-a-glance-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/**
 * Content container
 */
.glance-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

/**
 * Section title - centered white text
 */
.glance-title {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
  padding: 0 15px;
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 30px;
}

/* ---------- Carousel Wrapper ---------- */

/**
 * Carousel wrapper - hides overflow for scroll effect
 */
.glance-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/**
 * Fade edges for seamless visual transition
 * Left and right gradients mask the carousel edges
 */
.glance-carousel-wrapper::before,
.glance-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

/* Left fade edge */
.glance-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--main-color-primary), transparent);
}

/* Right fade edge */
.glance-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--main-color-primary), transparent);
}

/**
 * Carousel track - displays 3 items at a time
 * Items cycle with fade animations
 */
.glance-carousel-track {
  display: flex;
  gap: 0;
  /* justify-content: space-around; */
  width: 100%;
  min-height: 220px;
  align-items: center;
}

/* ---------- Stat Items with Fade Animation ---------- */

/**
 * Individual stat card - hidden by default
 */
.glance-stat-item {
  display: none;
  align-items: center;
  flex-shrink: 0;
  min-width: 500px;
  justify-content: space-around;
  height: 220px;
  overflow: hidden;
  /* Initial hidden state for animation */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/**
 * Active state - item is in current group
 */
.glance-stat-item.active {
  display: flex;
}

/**
 * Visible/animated state - triggered by JS with stagger
 */
.glance-stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/**
 * Staggered delay for sequential reveal within group
 */
.glance-stat-item.visible:nth-child(1) {
  transition-delay: 0s;
  border-right: 1px solid #ffffff4d;
}

.glance-stat-item.visible:nth-child(2) {
  transition-delay: 0.15s;
  border-right: 1px solid #ffffff4d;
}

.glance-stat-item.visible:nth-child(3) {
  transition-delay: 0.3s;
}

.glance-stat-item.visible:nth-child(4) {
  transition-delay: 0s;
  border-right: 1px solid #ffffff4d;
}

.glance-stat-item.visible:nth-child(5) {
  transition-delay: 0.15s;
  border-right: 1px solid #ffffff4d;
}

/**
 * Hover effect on stat items
 */
.glance-stat-item:hover .glance-stat-content {
  transform: scale(1.02);
}

/**
 * Vertical separator line between stat items
 */
.glance-stat-line {
  width: 1px;
  height: 150px;
  background: #ffffff4d;
  margin-right: 30px;
  flex-shrink: 0;
  align-self: center;
}

/**
 * Hide separator line for first item
 */
.glance-stat-item:first-child .glance-stat-line {
  display: none;
}

/**
 * Stat content container - number and description
 */
.glance-stat-content {
  padding: 20px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/**
 * Large stat number typography
 */
.glance-number {
  font-size: 120px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 15px;
}

/**
 * Superscript for ordinals (st, nd, rd, th) and symbols (+, %)
 */
.glance-number sup {
  font-size: 60px;
  font-weight: 400;
  top: -0.5em;
  margin-left: 2px;
  text-align: center;
  color: var(--main-color-secondary);
}

/**
 * Text value styling (for Pan-India etc.)
 */
.glance-text-value {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/**
 * Stat description text
 */
.glance-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  max-width: 100%;
  text-align: center;
}

/* ---------- Counter Animation ---------- */

/**
 * Counter element - inline for number animation
 */
.counter {
  display: inline-block;
}

/* ---------- Keyframe Animations ---------- */

/**
 * Fade up animation
 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/**
 * Scale in animation
 */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/**
 * Title fade animation
 */
.glance-title {
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ---------- Responsive Styles ---------- */

/**
 * Tablet breakpoint (992px and below)
 */
@media (max-width: 992px) {
  .glance-stat-item {
    min-width: 260px;
  }

  .glance-number {
    font-size: 56px;
  }

  .glance-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .glance-carousel-wrapper::before,
  .glance-carousel-wrapper::after {
    width: 60px;
  }

  .glance-arrow {
    width: 40px;
    height: 40px;
  }

  .glance-arrow-left {
    left: 10px;
  }

  .glance-arrow-right {
    right: 10px;
  }
}

/**
 * Mobile breakpoint (576px and below)
 */
@media (max-width: 767px) {
  .at-a-glance-section {
    padding: 40px 0;
  }

  .glance-container {
    padding: 40px 15px;
  }

  .glance-carousel-track {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: auto;
  }

  .glance-stat-item {
    min-width: 100%;
    justify-content: center;
    border-right: none !important;
    border-bottom: 1px solid #ffffff2e;
    padding-bottom: 15px;
    height: 120px;
    overflow: hidden;
  }

  .glance-stat-item:nth-child(3) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .glance-stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .glance-stat-content {
    padding: 10px 20px;
  }

  .glance-number {
    font-size: 48px;
    margin-bottom: 8px;
  }

  .glance-number sup {
    font-size: 24px;
  }

  .glance-text {
    font-size: 14px;
    max-width: 100%;
  }

  .glance-carousel-wrapper::before,
  .glance-carousel-wrapper::after {
    display: none;
  }

  .glance-arrow {
    display: none;
  }

  .glance-dots {
    display: none;
  }

  .glance-stat-line {
    display: none;
  }

  .glance-text-value img {
    width: 100px !important;
  }
}

@media (max-width: 480px) {
  .at-a-glance-section {
    padding: 30px 0;
  }

  .glance-container {
    padding: 30px 10px;
  }

  .glance-number {
    font-size: 42px;
  }

  .glance-number sup {
    font-size: 20px;
  }

  .glance-text {
    font-size: 13px;
  }

  .glance-text-value img {
    width: 80px !important;
  }
}

/* ==========================================================================
   18. SCROLL-BASED AT A GLANCE SECTION (Tata Chemicals Style)
   ==========================================================================
   A scroll-triggered sticky section that reveals one stat at a time
   with count-up animations and smooth transitions.
   ========================================================================== */

/**
 * Main section container - no special styling needed
 */
.scroll-glance-section {
  position: relative;
  width: 100%;
}

/**
 * Scroll spacer - creates the scroll height for animation
 * Height = 100vh per stat + initial 100vh for the sticky container
 */
.scroll-glance-spacer {
  position: relative;
  /* 5 stats × 100vh + extra buffer */
  min-height: 500vh;
}

/**
 * Sticky container - stays fixed while scrolling through spacer
 */
.scroll-glance-sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 * Background with gradient - fills sticky container
 */
.scroll-glance-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--main-color-primary) 0%, #0a1a4f 100%);
  z-index: 1;
}

/* Subtle pattern overlay for texture */
.scroll-glance-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/**
 * Content container - centers and constrains content
 */
.scroll-glance-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/**
 * Section title
 */
.scroll-glance-title {
  color: #ffffff;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/**
 * Progress indicator - horizontal bar showing scroll progress
 */
.scroll-glance-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 60px;
  overflow: hidden;
}

.scroll-glance-progress-bar {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--main-color-secondary) 0%, #f0cb7b 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/**
 * Stats container - holds all stat items with stacking context
 */
.scroll-glance-stats-container {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/**
 * Individual stat item - absolutely positioned for stacking
 */
.scroll-glance-stat {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

/**
 * Active stat - fully visible and centered
 */
.scroll-glance-stat.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/**
 * Previous stat - exits upward
 */
.scroll-glance-stat.exit-up {
  opacity: 0;
  transform: translateY(-40px) scale(0.95);
}

/**
 * Inner container for stat content
 */
.scroll-glance-stat-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/**
 * Large number typography
 */
.scroll-glance-number {
  font-size: 100px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  position: relative;
}

.scroll-glance-number .scroll-counter::after {
  content: attr(data-suffix);
  font-size: 40px;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
  color: var(--main-color-secondary);
}

.scroll-glance-number .scroll-text-value {
  font-size: 72px;
  background: linear-gradient(135deg, #ffffff 0%, var(--main-color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/**
 * Label below number
 */
.scroll-glance-label {
  font-size: 24px;
  font-weight: 600;
  color: var(--main-color-secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/**
 * Description text
 */
.scroll-glance-description {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
  line-height: 1.6;
}

/**
 * Navigation dots - shows current position
 */
.scroll-glance-dots {
  display: flex;
  gap: 12px;
  margin-top: 50px;
}

.scroll-glance-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-glance-dot.active {
  background: var(--main-color-secondary);
  transform: scale(1.2);
}

.scroll-glance-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ---------- Responsive Styles for Scroll Glance ---------- */

/**
 * Tablet breakpoint (992px and below)
 */
@media (max-width: 992px) {
  .scroll-glance-spacer {
    min-height: 400vh;
  }

  .scroll-glance-title {
    font-size: 36px;
  }

  .scroll-glance-number {
    font-size: 80px;
  }

  .scroll-glance-number .scroll-counter::after {
    font-size: 32px;
  }

  .scroll-glance-number .scroll-text-value {
    font-size: 56px;
  }

  .scroll-glance-label {
    font-size: 20px;
  }

  .scroll-glance-description {
    font-size: 16px;
  }

  .scroll-glance-stats-container {
    height: 260px;
  }
}

/**
 * Mobile breakpoint (576px and below)
 */
@media (max-width: 576px) {
  .scroll-glance-spacer {
    min-height: 350vh;
  }

  .scroll-glance-content {
    padding: 40px 20px;
  }

  .scroll-glance-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .scroll-glance-progress {
    width: 150px;
    margin-bottom: 40px;
  }

  .scroll-glance-number {
    font-size: 60px;
  }

  .scroll-glance-number .scroll-counter::after {
    font-size: 24px;
  }

  .scroll-glance-number .scroll-text-value {
    font-size: 42px;
  }

  .scroll-glance-label {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .scroll-glance-description {
    font-size: 14px;
    max-width: 280px;
  }

  .scroll-glance-stats-container {
    height: 220px;
  }

  .scroll-glance-dots {
    gap: 10px;
    margin-top: 30px;
  }

  .scroll-glance-dot {
    width: 8px;
    height: 8px;
  }
}


/* Product Page Styles */
.product-page-section {
  background-color: #ffffff;
  min-height: 80vh;
}

.product-info-wrapper {
  padding: 25px 20px 40px 0;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.product-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.product-description {
  margin-bottom: 25px;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.product-specs {
  margin-bottom: 30px;
  padding: 15px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.product-specs p {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.product-specs p:last-child {
  margin-bottom: 0;
}

.product-options {
  margin-top: 30px;
}

.option-group {
  margin-bottom: 25px;
}

.option-label {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.option-btn {
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #333;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.option-btn:hover,
.option-btn.active {
  background-color: var(--main-color-primary);
  color: var(--main-color-secondary);
}

/* Static option buttons (for Size - no hover effect) */
.option-btn-static {
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #333;
  font-size: 0.85rem;
  cursor: default !important;
  text-transform: capitalize;
}

/* Applications List Styles (Bullet Points) */
.applications-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.applications-list .application-item {
  position: relative;
  padding-left: 20px;
  font-size: var(--font-18);
  color: #333;
  line-height: 1.5;
}

.applications-list .application-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--main-color-secondary);
  border-radius: 50%;
}

/* Brand Logos Styles */
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.brand-logo-item {
  width: 90px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px;
  transition: all 0.3s ease;
}

.brand-logo-item:hover {
  border-color: var(--main-color-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.brand-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Product Gallery Styles */
.product-gallery-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-image-container {
  /* No background - image takes its own space */
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--main-color-secondary);
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.main-product-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.thumbnail-gallery {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumbnail-item {
  width: 80px;
  height: 80px;
  /* border-radius: 6px; */
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: #f0ede8;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-item:hover {
  border-color: #999;
}

.thumbnail-item.active {
  border-color: var(--main-color-secondary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .product-info-wrapper {
    padding: 30px 0;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-gallery-wrapper {
    padding: 10px 0;
  }

  .thumbnail-gallery {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .product-title {
    font-size: 1.6rem;
  }

  .thumbnail-item {
    width: 60px;
    height: 60px;
  }

  .option-btn {
    padding: 8px 15px;
    font-size: 0.8rem;
  }
}


/* ==========================================================================
   18. FLOATING WHATSAPP BUTTON
   ========================================================================== */

/**
 * Floating WhatsApp button - appears on all pages
 */
.whatsapp-float {
  position: fixed;
  bottom: 120px;
  right: 23px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.whatsapp-float .whatsapp-icon-wrapper {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float .whatsapp-icon-wrapper svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.whatsapp-float .whatsapp-label {
  background: #ffffff;
  color: #333;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 120px;
    right: 25px;
  }

  .whatsapp-float .whatsapp-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float .whatsapp-icon-wrapper svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float .whatsapp-label {
    display: none;
  }
}