/* ===================== Global Font (Poppins font)===================== */
body {
  font-family: 'Poppins', sans-serif;
}


/* Product scroll  Section */
/* ========================================================================
   🔹 Services Section (Home/General use)
   - Horizontal scroll with animated movement
   ======================================================================== */
    .services-section {
      padding: 40px 0;
      background: #f9f9f9;
      overflow: hidden;
      position: relative;
    }

    .scroll-container {
      display: flex;
      width: max-content;
      animation: scroll-left 35s linear infinite;
      gap: 20px;
    }

    .service-block {
      flex: 0 0 auto;
      width: 250px;
      margin: 0 15px;
    }

    .service-block .inner-box {
      background: #fff;
      border-radius: 12px;
      text-align: center;
      padding: 20px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .service-block .inner-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    }

    .service-block .icon-box {
      font-size: 36px;
      margin-bottom: 12px;
      color: #ff6600;
    }

    .service-block h6 {
      font-size: 18px;
      font-weight: 600;
      color: #333;
      margin: 0;
    }

    .service-block h6 a {
      text-decoration: none;
      color: inherit;
    }

    @keyframes scroll-left {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
  .scroll-container {
    animation: none;       /* stop auto-scrolling */
    flex-wrap: wrap;       /* wrap items instead of one line */
    justify-content: center;
    width: 100%;           /* take full width */
  }
  .product-block {
    flex: 1 1 45%;         /* 2 per row */
    margin-bottom: 20px;
  }
}
/* The card must be positioned for stretched-link to fill it- Product page last scroll product image clickable */
.product-block .inner-box {
  position: relative;   /* required */
  z-index: 0;           /* helps the stretched-link sit on top */
  border-radius: 10px;
  padding: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Orange hover tint on the WHOLE box */
.product-block .inner-box:hover {
  background: rgba(255, 102, 0, 0.1);
  transform: translateY(-4px);
}

/* Optional: make the title turn orange on hover */
.product-block .inner-box:hover h6 {
  color: #ff6600;
}

/* Keep product titles tidy */
.product-block h6 {
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Your existing image rule is fine; keep it */
.product-block .product-img {
  width: 100%;
  max-width: 200px;
  height: 160px;
  object-fit: cover;
  margin: 0 auto 12px;
  display: block;
  border-radius: 8px;
}

    /* ========================================================================
   🔹 Product Scroll Section Styles
   - This section styles the horizontal product showcase (scrolling section)
   - Each product is displayed as a small block with:
        1. A product image
        2. A product name below the image
   - Used in: Vanguard, Praise, Wizard, and other product pages
   ======================================================================== */

/* ===================== Product Image Styling in scroll =====================
   - Ensures images fit nicely within the scrollable product cards
   - Fixed max width/height for consistent size
   - Object-fit keeps the image proportionate (avoids stretching)
   - Centered horizontally with margin auto
   ======================================================================== */
.product-block .product-img {
  width: 100%;           /* Fill available width inside block */
  max-width: 200px;      /* Prevent overly large images */
  height: 160px;         /* Keep all product images uniform height */
  object-fit: cover;     /* Crop image proportionally without stretching */
  margin: 0 auto 12px;   /* Center horizontally & add space below */
  display: block;        /* Ensures proper alignment */
  border-radius: 8px;    /* Smooth rounded corners */
}

/* ===================== Product Title Styling =====================
   - Controls appearance of the product names (below images)
   - Text centered, bold, clean, and without underline
   - Subtle hover effect for interactivity
   ======================================================================== */
.product-block h6 {
  text-align: center;    /* Center product name */
  margin-top: 10px;      /* Space between image and text */
  font-size: 16px;       /* Balanced font size */
  font-weight: 600;      /* Medium-bold for emphasis */
  color: #333;           /* Neutral dark gray for readability */
}

.product-block h6 a {
  text-decoration: none; /* Remove default underline */
  color: inherit;        /* Inherit the color from h6 */
  display: inline-block; /* Expand clickable area neatly */
}

.product-block h6 a:hover {
  color: #ff6600;        /* Orange hover effect for highlight */
}

    /* ========================================================================
   🔹 Product Image Styling (Used in product carousel scroll)
   Product Image Styling in scroll(Used to control scroll image size
   ======================================================================== */
    .product-block .product-img {
  width: 100%;           /* make it fit the card width */
  max-width: 200px;      /* don’t let it get too wide */
  height: 160px;         /* fix the height */
  object-fit: cover;     /* crop nicely instead of stretching */
  margin: 0 auto 12px;   /* center align + spacing below */
  display: block;
  border-radius: 8px;    /* optional rounded corners */
}
/*Vanguard Listing page*/
.section-description {
  font-size: 1.05rem;    /* slightly bigger than body */
  line-height: 1.7;      /* more breathing space */
  color: #555;           /* softer gray */
  max-width: 800px;      /* keep text width clean */
  margin: 0 auto;        /* center align */
}

/* Simple fade + slide animation for list items Vanguard Product descripion on leftside*/

/* ===================== Vanguard Spec Cards product listing on right side/ box for specifications ===================== */
.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;   /* center align leftover cards */
  padding: 0 10px;           /* add side padding for mobile */
}

.spec-card {
  flex: 1 1 calc(50% - 16px);   /* 2 per row by default */
  background: #abb6c1;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 0.95rem;
  color: #333;
  max-width: 300px;             /* keeps cards from stretching too wide */
}

/* Hover animation */
.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .spec-card {
    flex: 1 1 100%;     /* full width */
    max-width: 90%;     /* but leave space on sides */
    margin: 0 auto;     /* center the card */
  }
}
/*Vanguard series crafted.....content box*/
.desc-shadow {
  background: #fff;                          /* clean white box */
  border-radius: 12px;                       /* smooth rounded corners */
  padding: 24px 28px;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
  color: #333;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);   /* elegant floating shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle hover lift */
.desc-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
/*Listing page product image size control*/
.tab-img {
  max-width: 400px;   /* keeps it neat */
  height: auto;       /* maintain aspect ratio */
  display: block;
  margin: 0 auto;     /* center inside column */
}









/* Tabs   ========================================================================
   ❌ OLD CUSTOM TAB SYSTEM (NOT USED ANYMORE)
   ------------------------------------------------------------------------
   - This CSS was for our earlier manual tab system.
   - It expected .tab-btn, .tab, .active-btn, .active-tab classes.
   - Now we are using Bootstrap's built-in tabs:
       -> Buttons use .nav-link + data-bs-toggle="tab"
       -> Content uses .tab-pane
       -> Active states are handled by Bootstrap
   - Since .tab-btn / .tab no longer exist in HTML, this CSS has no effect.
   - Safe to delete or keep commented out for reference.

   
.tabs-box {
  margin-top: 30px;
}

.tab-btns {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-bottom: 2px solid #eee;
}

.tab-btns li {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  background: #f8f8f8;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.tab-btns li.active-btn {
  background: #222;
  color: #fff;
}

.tab {
  display: none;
}

.tab.active-tab {
  display: block;
}*/
