  /* ================== GLOBAL RESET ================== */
  html,
  body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    /* scroll-behavior: smooth;
    overflow-x: hidden; */
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    /* prevent width + padding overflow */
  }

  body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
    /* avoids inline-gap quirks */
  }

  /* ================== HERO SECTION ================== */
  .hero-section {
    position: relative;
    background-image: url('images/hero/hero_bg.png');
    padding: 220px 20px 50px;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

  /* Background grid overlay */
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('images/hero/line_grid.png') center center no-repeat;
    background-size: contain;
    opacity: 0.6;
    z-index: -1;
  }

  /* Decorative stars */
  .star-icon-left {
    position: absolute;
    left: 8%;
    top: 35%;
    width: 50px;
  }

  .star-icon-right {
    position: absolute;
    right: 8%;
    top: 70%;
    width: 30px;
  }

  /* Hero content */
  .hero-heading {
    font-size: 2.5rem;
    line-height: 1.3;
    max-width: 750px;
    margin: 0 auto 20px auto;
    font-weight: 600;
    color: #000;
  }

  .hero-heading span {
    color: #9E0909;
  }

  .hero-description {
    max-width: 950px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  /* Hero tags */
  .hero-tags {
    font-size: 0.95rem;
    white-space: normal;
    line-height: 1.5;
  }

  .hero-tags .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #9E0909;
    border-radius: 50%;
    margin-left: 5px;
  }

  /* Buttons */
  .btn-outline-danger {
    border: 2px solid #9E0909;
    border-radius: 8px;
    color: #9E0909;
    transition: all 0.3s ease;
    box-shadow: 0 1px 5px #9E0909;
  }

  .btn-outline-danger:hover {
    background-color: #9E0909;
    color: #fff;
    box-shadow: none;
    border: none
  }

  .hero-link {
    font-size: 1rem;
    text-decoration: none;
    color: #9E0909 !important;
  }

  .hero-link:hover {
    color: #FF1E27 !important;
  }

  /* ==================== RESPONSIVE BREAKPOINTS ==================== */

  /* Tablets */
  @media (max-width: 991.98px) {
    .hero-section {
      padding: 160px 15px 60px;
    }

    .hero-heading {
      font-size: 2rem;
      line-height: 1.5;
    }

    .hero-description {
      font-size: 1rem;
    }

    .star-icon-left {
      left: 5%;
      top: 30%;
      width: 40px;
    }

    .star-icon-right {
      right: 5%;
      top: 65%;
      width: 25px;
    }
  }

  /* Mobile */
  @media (max-width: 575.98px) {
    .hero-section {
      padding: 120px 10px 50px;
    }

    .hero-heading {
      font-size: 1.8rem;
    }

    .hero-description {
      font-size: 0.85rem;
    }

    .star-icon-left,
    .star-icon-right {
      display: none;
      /* hide decorative stars for small screens */
    }

    .hero-tags {
      font-size: 0.85rem;
      padding: 8px 16px;
    }

    .mt-4 {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }

    .btn-outline-danger {
      width: 50%;
      font-size: 0.69rem;
      box-shadow: 0 1px 2px #9E0909;
      border: 1px;
    }

    .hero-link {
      font-size: 0.7rem;
    }
  }


  /* ======  Document Management Section style ======  */
  .document-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    background: #fff;
    color: #111;
    gap: 10px;
    position: relative;
  }

  .document-section .document-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    /* desktop/landscape: keep as a column block */
    flex-direction: column;
  }

  .document-section .document-detail-image {
    flex: 1;
    text-align: center;
  }

  .document-section .document-detail-image img {
    max-width: 100%;
    height: auto;
  }

  /* ---- Typography (responsive) ---- */
  .document-section .subtitle {
    color: #7D141D;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 15px;
  }

  .document-section h2 {
    font-size: clamp(20px, 2vw, 40px);
    font-weight: 600;
    margin: 15px auto;
    line-height: 1.3;
  }

  .document-section h2 .highlight {
    color: #D8232A;
  }

  .document-section p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #444;
    line-height: 1.7;
    margin-bottom: 35px;
  }

  .document-section .btn-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(90deg, #B1030B, #DE1B24);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 18px);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  }

  .document-section .btn-read:hover {
    background: #ffffff00;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.01);
    color: #DE1B24;
    border: 1px solid #DE1B24;
  }

  /* ✅ Ensure desktop + landscape tablets stay two-column (content left, image right) */
  @media (min-width: 768px) and (orientation: landscape) {
    .document-section {
      flex-direction: row;
      text-align: left;
    }

    .document-section .document-content {
      max-width: 50%;
      display: block;
      /* cancel any portrait override */
      flex-direction: column;
    }

    .document-section .document-detail-image {
      text-align: right;
    }
  }

  /* ✅ Portrait (tablet & mobile): stack and interleave: subtitle → title → image → text → button */
  @media (max-width: 992px) and (orientation: portrait) {
    .document-section {
      flex-direction: column;
      padding: 60px 40px;
      text-align: center;
    }

    /* Flatten wrapper so its children and the image can share the same flex parent */
    .document-section .document-content {
      max-width: 100%;
      display: contents;
      /* lets .subtitle, h2, p, .btn-read be siblings with .about-image */
    }

    /* Order across the SINGLE flex context now works */
    .document-section .subtitle {
      order: 1;
    }

    .document-section h2 {
      order: 2;
    }

    .document-section .document-detail-image {
      order: 3;
      margin: 12px 0 8px;
    }

    .document-section p {
      order: 4;
    }

    .document-section .btn-read {
      order: 5;
      margin-top: 8px;
    }
  }

  /* ✅ Phones (extra tweaks) */
  @media (max-width: 576px) {
    .document-section {
      padding: 40px 20px;
    }

    .document-section .btn-read {
      width: 100%;
    }
  }


  /*====== Client Carousel Section  ===========*/
  .clients-pattern {
    position: relative;
    background: #fff;
    padding: 20px 0;
  }

  .clients-section {
    text-align: center;
    padding: 10px 20px;
    background: #fff;
    margin: 0px auto;
    max-width: 1200px;
  }

  .clients-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
  }

  .clients-section p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    margin-bottom: 30px;
  }

  .carousel-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
  }

  .carousel {
    width: 100%;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    align-items: center;
    gap: 50px;
    min-width: max-content;
    animation: scroll 25s linear infinite;
    /* Adjust speed */
  }

  .carousel-track img {
    height: 50px;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
  }

  /* Infinite scroll keyframes */
  @keyframes scroll {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-33.33%);
      /* moves by 1 set of logos */
    }
  }

  /* Gradient overlays */
  .gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
  }

  .gradient.left {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }

  .gradient.right {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }

  /* ===== RESPONSIVENESS ===== */

  /* Tablet */
  @media (max-width: 1024px) {
    .clients-section h2 {
      font-size: 20px;
    }

    .carousel-track {
      gap: 40px;
      animation-duration: 18s;
      /* slightly slower */
    }

    .carousel-track img {
      height: 45px;
      max-width: 100px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .clients-section h2 {
      font-size: 18px;
      margin-bottom: 20px;
      padding: 0 10px;
    }

    .carousel-track {
      gap: 30px;
      animation-duration: 16s;
      /* speed up a little */
    }

    .carousel-track img {
      height: 40px;
      max-width: 80px;
    }
  }

  /* Extra small screens */
  @media (max-width: 480px) {
    .clients-section h2 {
      font-size: 16px;
    }

    .carousel-track {
      gap: 20px;
      animation-duration: 14s;
    }

    .carousel-track img {
      height: 35px;
      max-width: 70px;
    }
  }

  /* =========  Feature Strategy Section ========*/

  .feature-strategy-section {
    position: relative;
    background: url("images/hero/Feature_strategy_bg.png") center center/contain no-repeat;
    padding: 40px 0 60px;
    color: #1c1c1c;
  }

  /* White overlay to soften image */
  .feature-strategy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.72);
    z-index: 0;
  }

  .feature-strategy-section .feature-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* ===== Top Text Section ===== */
  .feature-strategy-section .feature-text {
     max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

  .feature-strategy-section .feature-text h2 {
    font-size: clamp(20px, 1.95vw, 40px);
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 5%;
    line-height: 2.7rem;
  }

  .feature-strategy-section .feature-text h2 span {
    color: #D8232A;
  }


  .feature-strategy-section .feature-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 50px;
  }

  /* ===== Card Layout ===== */
  .feature-strategy-section .feature-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: stretch;
  }

  .feature-strategy-section .feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px 35px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .feature-strategy-section .feature-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #db1922;
    /* maroon color */
    transition: width 0.4s ease;
  }

  .feature-strategy-section .feature-card:hover {
    transform: translateY(-8px);
  }

  .feature-strategy-section .feature-card:hover::after {
    width: 100%;
  }

  /* ===== Text inside card ===== */
  .feature-strategy-section .feature-card h3 {
    font-size: 1.1rem;
    color: #db1922;
    margin-bottom: 10px;
    font-weight: 600;
  }

  .feature-strategy-section .feature-card p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
  }

  /* ===== Learn More Button in Middle Card ===== */
  .feature-strategy-section .feature-card.highlight {
    text-align: left;
  }

  .feature-strategy-section .feature-card .learn-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #800000;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .feature-strategy-section .feature-card .learn-btn:hover {
    background: #5c0000;
  }

  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    .feature-strategy-section {
      padding: 80px 0;
    }

    .feature-strategy-section .feature-text h2 {
      font-size: 2rem;
    }

    .feature-strategy-section .feature-text {
      max-width: 100%;
      text-align: center;
      margin: 0 auto 50px;
    }
  }

  @media (max-width: 768px) {
    .feature-strategy-section {
      padding: 60px 0;
    }

    .feature-strategy-section .feature-card-wrapper {
      grid-template-columns: 1fr 1fr;
    }

    .feature-strategy-section .feature-card {
      padding: 20px 15px;
    }

    .feature-strategy-section .feature-text h2 {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 540px) {
    .feature-strategy-section .feature-card-wrapper {
      grid-template-columns: 1fr;
    }

    .feature-strategy-section .feature-text h2 {
      font-size: 1.6rem;
    }

    .feature-strategy-section .feature-text p {
      font-size: 0.95rem;
    }
  }


  /* ======== Detail Feature Section ======== */
  .detail-feature-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }

  .detail-feature-section h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
  }

  .detail-feature-section h2 span {
    color: #d8232a;
  }

  .detail-feature-section p {
    max-width: 900px;
    margin: 0 auto;
    color: #444;
  }

  /* ===== Cards Grid ===== */
  .detail-feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    padding: 0 10px;
    margin-top: 35px;
  }

  .detail-feature-card {
    background: linear-gradient(180deg, #8a1015, #b31b1f);
    border-radius: 16px;
    padding: 20px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.5s ease;
  }

  .detail-feature-card img {
    width: 185px;
    max-width: 100%;
    margin: 30px auto;
  }

  .detail-feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s ease;
    margin: 10px auto;
  }

  .detail-feature-card p {
    font-size: 15px;
    opacity: 1;
    transform: translateY(2px);
    transition: all 0.3s ease;
    color: #fff;
  }

  .detail-feature-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg, #b31b1f, #8a1015);
  }

  /* .detail-feature-card:hover p {
    opacity: 1;
    transform: translateY(0);
  } */

  /* ===== Button ===== */
  .product-container-btn {
    margin-top: 40px;
    text-align: center;
  }

  .product-overview-btn {
    text-decoration: none;
    background: #d8232a;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .product-overview-btn:hover {
    background: transparent;
    color: #d8232a;
    border: 1px solid #d8232a;
  }

  /* ===== Responsive ===== */
  @media (max-width: 992px) {
    .detail-feature-section h2 {
      font-size: 28px;
    }

    .detail-feature-section p {
      font-size: 16px;
    }

    .detail-feature-card img {
      width: 120px;
    }
  }

  @media (max-width: 768px) {
    .detail-feature-section {
      padding: 40px 15px;
    }

    .detail-feature-section h2 {
      font-size: 24px;
    }

    .detail-feature-section p {
      font-size: 15px;
    }

    .detail-feature-card {
      padding: 12px 5px;
    }

    .detail-feature-card img {
      width: 100px;
    }
  }

  @media (max-width: 480px) {
    .detail-feature-section h2 {
      font-size: 20px;
    }

    .detail-feature-section p {
      font-size: 14px;
      margin-bottom: 15px;
    }

    .detail-feature-card {
      padding: 0px 10px;
    }

    .detail-feature-card img {
      width: 125px;
      margin: 10px auto;
    }

    .product-overview-btn {
      padding: 10px 20px;
      font-size: 14px;
    }
  }

  /* ====== Keyword Feature Product Section ====== */
  .keyword-feature-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 60px 8%;
    gap: 40px;
  }

  /* Left Background Card */
  .keyword-feature-left {
    position: relative;
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .red-card {
    position: absolute;
    width: 220px;
    height: 600px;
    background: linear-gradient(145deg, #ffe8ec, #c2001d69);
    border-radius: 10px;
    z-index: 1;
    left: 0;
  }

  .white-card {
    position: relative;
    width: 330px;
    height: 460px;
    overflow: hidden;
    z-index: 1;
    /* Clip the image inside the rounded corners */
  }

  .white-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps aspect ratio while covering */
    display: block;
    border-radius: 33px;
  }

  /* Right Content */
  .keyword-feature-right {
    flex: 1.5;
    min-width: 320px;
  }

  /* Desktop/Tablet Header */
  .keyword-feature-desktop-header {
    margin-bottom: 30px;
  }

  .keyword-feature-desktop-header h2 {
    font-size: clamp(1.8rem, 2.5vw, 1.7rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .keyword-feature-desktop-header h2 span {
    color: #e60023;
  }

  .keyword-feature-desktop-header p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #444;
  }

  /* Mobile Header Overlay */
  .keyword-feature-mobile-header {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #191919;
    text-align: center;
    z-index: 3;
    padding: 0 10px;
    display: none;
    width: 100%;
  }

  .keyword-feature-mobile-header h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .keyword-feature-mobile-header span {
    color: #FF1E27;
  }

  .keyword-feature-mobile-header p {
    font-size: 0.9rem;
  }

  /* Features List */
  .keyword-feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .keyword-feature-item {
    background: #fff;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .keyword-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  .keyword-feature-icon {
    background: #e60023;
    color: #fff;
    font-size: 20px;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }

  .keyword-feature-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #e60023;
    margin: 0 0 5px;
  }

  .keyword-feature-text p {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
  }

  /* ===== Responsive (<768px) ===== */
  @media (max-width: 767px) {
    .keyword-feature-section {
      flex-direction: column;
      padding: 30px 15px;
    }

    .keyword-feature-left {
      width: 100%;
      margin-bottom: 5px;
    }

    /* Scale down red & white cards for mobile */
    .red-card {
      width: 140px;
      height: 290px;
      margin-top: 10%;
      margin-left: 8%;
    }

    .white-card {
      width: 250px;
      height: 250px;
      margin-top: 10%;
    }

    /* Show mobile header, hide desktop header */
    .keyword-feature-mobile-header {
      display: block;
    }

    .keyword-feature-desktop-header {
      display: none;
    }

    /* Adjust fonts smaller */
    .keyword-feature-mobile-header h2 {
      font-size: 1.2rem;
    }

    .keyword-feature-mobile-header p {
      font-size: 0.8rem;
    }
  }



  /* ====== Download Brochure Section ====== */
  .brochure-section {
    position: relative;
    padding: 35px 0;
    overflow: visible;
    width: 100%;
    background: #fff;
  }

  /* === INNER STRIP (gradient background) === */
  .brochure-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 60px;
    background: linear-gradient(90deg, #db3242, #850814);
    background-image: url('images/hero/broucher-bg.png') right top no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 1px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
  }

  /* === LEFT TEXT === */
  .brochure-text {
    flex: 2;
    color: #fff;
  }

  .brochure-text h2 {
    font-size: clamp(1.2rem, 0.98vw + 0.8rem, 2rem);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
  }

  /* === CENTER BUTTON === */
  .brochure-cta {
    flex: 1;
    text-align: center;
  }

  .btn-download {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #fff;
    color: #c00000;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    white-space: nowrap;
  }

  .btn-download:hover {
    transform: translateY(-2px);
  }

  .btn-download span {
    margin-left: 8px;
    font-size: 1.2rem;
  }

  /* === RIGHT IMAGE ESCAPING STRIP === */
  .brochure-image {
    flex: 1;
    text-align: right;
    position: relative;
  }

  .brochure-image img {
    max-width: clamp(220px, 30vw, 410px);
    width: 100%;
    height: auto;
    display: block;
    margin-top: -50px;
    margin-bottom: -50px;
    position: relative;
    z-index: 2;
  }

  /* === RESPONSIVE BREAKPOINTS === */
  @media (max-width: 992px) {
    .brochure-container {
      flex-direction: column;
      text-align: center;
      padding: 30px 20px;
    }

    .brochure-cta {
      margin: 20px 0;
    }

    .brochure-image {
      text-align: center;
    }

    .brochure-image img {
      max-width: 260px;
      margin: -35px auto;
      position: absolute;
      left: 180px;
      top: 100px;
      width: 210px;
    }
  }

  @media (max-width: 576px) {
    .btn-download {
      padding: 10px 18px;
      font-size: 0.9rem;
    }

    .brochure-text h2 {
      font-size: 1.2rem;
    }

    .brochure-image img {
      max-width: 260px;
      margin: -20px auto;
      position: absolute;
      left: 60px;
      top: 115px;
      width: 195px;
    }
  }


  /* ===== Analysis of Product Section ====== */
  .analysis-section {
    padding: 80px 0 20px;
    background: #fff;
    position: relative;
  }

  .analysis-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .analysis-header .left {
    max-width: 100%;
  }

  .analysis-header h2 {
    font-size: clamp(20px, 1.78vw, 30px);
    font-weight: 600;
    color: #D8232A;
    margin-bottom: 15px;
    text-align: center;
  }

  .analysis-header p {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #444;
    line-height: 1.6;
    text-align: center;
  }

  .analysis-btn {
    padding: 12px 28px;
    border: 2px solid #7a0010;
    border-radius: 30px;
    color: #7a0010;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .analysis-btn:hover {
    background: #7a0010;
    color: #fff;
  }

  .analysis-cards {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }

  .analysis-card {
    background: #fff;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1 1 calc(33.33% - 20px);
    transition: transform 0.3s;
    min-width: 250px;
  }

  .analysis-card:hover {
    transform: translateY(-5px);
  }

  .progress {
    position: relative;
    width: 80px;
    height: 80px;
  }

  .progress svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
    background-color: #fff;
  }

  .progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
  }

  .progress .bg {
    stroke: #eee;
  }

  .progress .fg {
    stroke: #7a0010;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transition: stroke-dashoffset 1s linear;
  }

  .progress span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    color: #7a0010;
    font-size: 14px;
  }

  .analysis-card p {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0rem;
  }

  /* ========================= */
  /* Responsive Media Queries  */
  /* ========================= */
  @media (min-width: 1201px) and (max-width: 1399px) {
      .analysis-card p {
        font-size: 11px;
      }
  }

  @media (max-width: 1200px) {
          .analysis-card p {
        font-size: 12px;
      }
  }
     
  /* Tablets */
  @media (max-width: 1024px) {
    .analysis-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .analysis-header .left {
      max-width: 100%;
    }

    .analysis-btn {
      align-self: flex-start;
    }

    .analysis-cards {
      gap: 20px;
    }

    .analysis-card {
      flex: 1 1 calc(50% - 15px);
    }
  }

  /* Mobiles */
  @media (max-width: 768px) {
    .analysis-header {
      text-align: center;
      align-items: center;
    }

    .analysis-header .left {
      max-width: 100%;
    }

    .analysis-btn {
      margin-top: 15px;
      align-self: center;
    }

    .analysis-cards {
      flex-direction: column;
    }

    .analysis-card {
      flex: 1 1 100%;
      justify-content: center;
      text-align: center;
    }

    .analysis-card p {
      font-size: 14px;
    }
  }


  /* ==========  Case-Study Carousel Section =========== */
  .case-study-section {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: clamp(20px, 4vw, 60px);
    /* responsive padding */
    position: relative;
    overflow: hidden;
  }

  /* Left image */
  .case-left {
    flex: 0 0 45%;
    margin-bottom: 10px;
  }

  .case-left .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    max-width: 550px;
  }

  /* Right */
  .case-right {
    flex: 0 0 55%;
    margin-left: -20px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  /* Header */
  .case-header {
    display: grid;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
  }

  .case-header-text small.case-label {
    display: block;
    color: #a60000;
    margin-bottom: 8px;
    font-size: clamp(12px, 1.8vw, 16px);
    /* fluid */
  }

  .case-header h2 {
    font-size: clamp(17px, 2.2vw, 29px);
    font-weight: 550;
    line-height: 1.4;
  }

  .case-header h2 span {
    color: #D8232A;
  }

  /* Nav */
  .carousel-nav {
    display: flex;
    gap: 10px;
    float: right;
    justify-self: flex-end;
  }

  .carousel-btn {
    background: #fff;
    border: 2px solid #a60000;
    border-radius: 50%;
    width: clamp(32px, 4vw, 44px);
    height: clamp(32px, 4vw, 44px);
    font-size: clamp(14px, 2vw, 20px);
    color: #a60000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Carousel */
  .carousel-container {
    overflow: hidden;
    position: relative;
    margin-left: -10%;
    margin-right: 2%;
  }

  .carousel-tracks {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .carousel-card {
    flex: 0 0 47%;
    background: linear-gradient(180deg, #7a0010, #2b0004);
    color: #fff;
    border-radius: 15px;
    padding: clamp(20px, 5vw, 35px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-right: 20px;
    min-height: clamp(240px, 30vw, 320px);
  }

  .card-content {
    flex: 1;
  }

  .badge {
    display: inline-block;
    background: #fff;
    color: #a60000;
    font-size: clamp(10px, 1.5vw, 13px);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .card-content h3 {
    font-size: clamp(20px, 1vw, 25px);
    margin-bottom: 15px;
    margin-top: 10px;
  }

  .card-content .read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-top: clamp(40px, 6vw, 0px);
    font-size: clamp(14px, 2vw, 16px);
  }

  .card-content .read-more:hover {
    color: #ffffffde;
  }

  /* Image at bottom right */
  .card-img-wrapper {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: clamp(100px, 15vw, 160px);
    height: clamp(100px, 15vw, 160px);
    overflow: hidden;
    border-radius: 8px;
  }

  .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
  }

  .carousel-card:hover .card-img {
    transform: scale(1.7);
  }

  /* Dots */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
  }

  .dot.active {
    background: #a60000;
  }

  @media (min-width: 1400px) {
    .case-right {
    margin-left: 7px;
    }
  }

  @media (min-width: 1201px) and (max-width: 1399px) {
    .case-right {
    margin-left: 7px;
    }
    .carousel-card {
    flex: 0 0 38%;
    }
  }
  /* Responsive Breakpoints */
  @media (max-width: 1200px) {
    .carousel-card {
      flex: 0 0 45%;
    }
    .case-right {
    margin-left: 7px;
    }
    .carousel-card {
    flex: 0 0 35%;
    }
  }
  

  @media (max-width: 992px) {
    .case-study-section {
      flex-direction: column;
    }

    .case-right {
      margin-left: 0;
    }

    .carousel-card {
      flex: 0 0 100%;
      margin-right: 20px;
    }

    .carousel-container {
      margin-left: 0;
    }
  }

  @media (max-width: 600px) {
    .case-header {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 10px;
    }

    .carousel-nav {
      justify-content: center;
    }
  }


  /* ========== Enquiry Section ===========  */
  .enquiry-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(40px, 6vw, 80px) 8%;
    flex-wrap: wrap;
    background: url("./images/hero/enquiry_bg.jpg") no-repeat center/cover;
    position: relative;
    z-index: 1;
    gap: 40px;
    padding: 60px 150px;
  }

  /* Overlay */
  .enquiry-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 39%);
    z-index: -1;
  }

  /* ===== Left Content ===== */
  .enquiry-left {
    flex: 2;
    max-width: 100%;
    padding: 20px;
  }

  .enquiry-left h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
  }

  .enquiry-left h2 span {
    color: #a60000;
    /* red accent */
  }

  .other-product {
    margin-top: 30px;
  }

  .enquiry-left .subheading {
    font-size: 18px;
    font-weight: 700;
    color: #a60000;
    margin-bottom: 20px;
  }

  .button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .enquiry-left p {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    max-width: 450px;
  }

  .enquiry-buttons {
    display: flex;
    gap: 15px;
  }

  .MuiContainer-root {
    max-width: fit-content !important;
    margin-top: 0px !important;
  }

  .MuiBox-root {
    background: transparent !important;
    box-shadow: none !important;
  }

  .MuiBox-root h5 {
    font-weight: 600;
    color: #bb1922;
    font-size: 25px;
    margin-top: 10px;
  }

  .outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 22px;
    border: 1.5px solid #000;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
  }

  .outline-btn .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #a60000;
    color: #fff;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .outline-btn:hover {
    background: #000;
    color: #fff;
  }

  .outline-btn:hover .arrow {
    background: #fff;
    color: #a60000;
    transform: translateX(4px);
  }

  .enquiry-buttons button {
    padding: 12px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
  }

  .btn-primary {
    background-color: #007bff;
    color: #fff;
  }

  .btn-primary:hover {
    background-color: #0056b3;
  }

  .btn-secondary {
    background-color: #f1f1f1;
    color: #333;
  }

  .btn-secondary:hover {
    background-color: #ddd;
  }



  /* ===== Feature Cards Grid ===== */
  .feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Card Base Style */
  .feature-card {
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  /* Shapes (quarter-rounded) */
  .feature-card.top-left {
    border-top-right-radius: 50px;
    background: #fff;
    border-bottom-left-radius: 50px;
  }

  .feature-card.top-right {
    border-top-left-radius: 50px;
    background: linear-gradient(135deg, #7D141D, #FF1E27);
    color: #fff;
    border-bottom-right-radius: 50px;
  }

  .feature-card.bottom-left {
    border-top-left-radius: 50px;
    background: linear-gradient(135deg, #7D141D, #FF1E27);
    color: #fff;
    border-bottom-right-radius: 50px;
  }

  .feature-card.bottom-right {
    border-top-right-radius: 50px;
    background: #fff;
    border-bottom-left-radius: 50px;
  }

  /* Typography */
  .feature-card .icon {
    font-size: 22px;
    margin-bottom: 12px;
    display: inline-block;
    width: 50px;
    height: auto;
  }

  .feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }

  .feature-card.bottom-left p,
  .feature-card.top-right p {
    color: #f0f0f0;
  }

  /* ===== Right Form ===== */
  .enquiry-right {
    flex: 1;
    max-width: 100%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    padding: clamp(5px, 2vw, 10px);
    position: relative;
    margin-top: 30px;
  }

  .enquiry-right::before {
    content: "Connect with us";
    position: absolute;
    top: -16px;
    left: 20px;
    background: #fff;
    padding: 5px 15px;
    font-weight: 600;
    border-radius: 4px;
    font-size: clamp(0.85rem, 1vw, 1rem);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .enquiry-form label {
    font-weight: 600;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    margin-bottom: 6px;
    display: block;
  }

  .enquiry-form input,
  .enquiry-form textarea {
    width: 100%;
    padding: clamp(10px, 1.5vw, 14px);
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    font-size: clamp(0.85rem, 1vw, 1rem);
    background: #f7f7f7;
  }

  .enquiry-form input:focus,
  .enquiry-form textarea:focus {
    border-color: #cc0000;
    background: #fff;
  }

  .submit-btn {
    background: linear-gradient(90deg, #d60000, #b00000);
    border: none;
    color: #fff;
    padding: clamp(10px, 1.5vw, 14px) clamp(24px, 4vw, 36px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    cursor: pointer;
    transition: 0.3s;
  }

  .submit-btn:hover {
    opacity: 0.9;
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .enquiry-section {
      flex-direction: column;
      padding: clamp(30px, 5vw, 50px) 6%;
    }

    .enquiry-left {
      text-align: center;
    }

    .feature-cards {
      grid-template-columns: 1fr;
    }

    .feature-card {
      border-radius: 20px !important;
      text-align: center;
    }

    .enquiry-right {
      width: 100%;
    }
  }



  /* =========== Sub Product Page ================== */
  .white-header {
    background-color: #fff;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    padding: 1px 0;
  }

  /* ===== Banner Section Styling ===== */
  .banner-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 550px;
    padding: 160px 120px 100px;

    /* Gradient + Image layered together */
    background: url("./images/sub_products/banner_img.png"),
      linear-gradient(135deg, #e41b1b, #2c2c2c);
    background-repeat: no-repeat, no-repeat;
    background-position: center, right center;
    background-size: cover, contain;

    color: #fff;
    overflow: hidden;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
  }

  .breadcrumb {
    font-size: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    opacity: 0.9;
  }

  .breadcrumb span {
    display: flex;
    padding: 0 5px;
    align-items: center;
  }

  .breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }

  .breadcrumb a:hover {
    color: #ffdddd;
    font-weight: 600;
  }

  /* Insert separator <i> dynamically */
  .breadcrumb span:not(:last-child)::after {
    content: "";
    display: inline-block;
    margin: 0 8px;
  }

  .breadcrumb span:not(:last-child)::after {
    font-family: "Font Awesome 6 Free";
    /* or whichever icon set you use */
    font-weight: 900;
    /* required for solid style */
    content: "\f105";
    /* fa-angle-right code */
  }

  /* Heading */
  .banner-content h1 {
    font-size: 35px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: auto;
  }

  /* Subheading */
  .banner-content p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 40px;
    opacity: 0.9;
  }

  /* CTA Button */
  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: #fff;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .cta-btn:hover {
    background: #f3f3f3;
    transform: translateY(-2px);
  }

  .cta-btn .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .cta-btn:hover .arrow {
    transform: translate(4px, -4px);
  }

  /* ================= Responsive ================= */

  /* Tablet */
  @media (max-width: 1024px) {
    .banner-section {
      padding: 120px 60px 80px;
      background-size: cover, 60%;
    }

    .banner-content h1 {
      font-size: 36px;
    }

    .banner-content p {
      font-size: 16px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .banner-section {
      flex-direction: column;
      text-align: center;
      padding: 80px 20px 60px;
      min-height: 480px;

      /* Gradient only, hide swirl PNG */
      background:
        linear-gradient(135deg, #e41b1b, #2c2c2c);
    }

    .banner-content h1 {
      font-size: 30px;
    }

    .banner-content p {
      margin: 0 auto 25px;
      font-size: 15px;
    }
  }

  /* Small Mobile */
  @media (max-width: 480px) {
    .banner-section {
      padding: 120px 15px 40px;
    }

    .banner-content h1 {
      font-size: 25px;
      text-align: left;
    }

    .banner-content p {
      font-size: 14px;
      text-align: left;
    }

    .cta-btn {
      padding: 12px 22px;
      font-size: 14px;
    }
  }


  /* ===== Keyword Section Styling ===== */
  .keyword-section {
    padding: 60px 20px;
  }

  .keyword-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header layout */
  .keyword-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }

  .keyword-text {
    max-width: 750px;
  }

  .keyword-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .keyword-text h2 span {
    color: #e41b1b;
  }

  .keyword-text p {
    font-size: 1rem;
    color: #333;
    opacity: 0.9;
  }

  .keyword-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #e41b1b;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .keyword-btn:hover {
    background: #c81818;
  }

  /* Cards Grid */
  .keyword-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .keyword-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .keyword-card .icon {
    margin-bottom: 15px;
  }

  .keyword-card .icon img {
    width: 100px;
    height: 100px;
  }

  .keyword-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .keyword-card p {
    font-size: 0.95rem;
    color: #555;
  }

  /* Hover Effect (like 1st box design) */
  .keyword-card:hover {
    border-color: #e41b1b;
    box-shadow: 0 6px 18px rgba(228, 27, 27, 0.15);
    transform: translateY(-5px);
  }

  /* ===== Responsive Design ===== */
  @media (max-width: 992px) {
    .keyword-cards {
      grid-template-columns: repeat(2, 1fr);
    }

    .keyword-text h2 {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 768px) {
    .keyword-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .keyword-btn {
      align-self: flex-start;
    }

    .keyword-cards {
      grid-template-columns: 1fr;
    }

    .keyword-text h2 {
      font-size: 1.6rem;
    }

    .keyword-text p {
      font-size: 0.9rem;
    }

    .keyword-card h3 {
      font-size: 1.1rem;
    }

    .keyword-card .icon img {
      width: 80px;
      height: 80px;
    }
  }

  /* ===== Our DA Products Section ===== */
  .our-da-products {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    z-index: 1;
    position: relative;
  }

  .our-da-products h2 {
    font-size: clamp(1.5rem, 1.5vw, 2rem);
    font-weight: 600;
    color: #7a0010;
    margin-bottom: 20px;
  }

  .our-da-products .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
  }

  /* Responsive grid */
  @media (max-width: 991px) {
    .our-da-products .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .our-da-products .cards {
      grid-template-columns: 1fr;
    }
  }

  .our-da-products .card {
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }

  .our-da-products .card:hover {
    background: #cc2535; /* maroon */
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  /* Top icons left + right */
  .our-da-products .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    background-color: transparent;
    border-bottom: none;
  }

  .our-da-products .card-header img {
    width: 50px;
    height: auto;
    transition: all 0.3s ease-in-out;
  }

  .our-da-products .card-header img:hover {
    filter: drop-shadow(4px 6px 9px rgba(255, 255, 255, 0.9));
  }


  .our-da-products .card:hover .card-header img {
    filter: drop-shadow(4px 6px 9px rgba(255, 255, 255, 0.9));
    transform: scale(1.1); /* optional small zoom effect */
  }


  .our-da-products .card h3 {
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 10px;
  }

  .our-da-products .card p {
    font-size: clamp(0.85rem, 1vw, 0.85rem);
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .our-da-products .learn-more {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    justify-content: end;
  }

  .our-da-products .card:hover .learn-more {
    color: #fff;
  }

  /* ===== Features Section ===== */
  :root {
    --sd-top: clamp(84px, 14vh, 140px);
    --sd-gap: 28px;
    --sd-radius: 20px;
    --sd-shadow: 0 6px 18px rgba(0, 0, 0, .10);
    --sd-shadow-active: 0 16px 36px rgba(0, 0, 0, .18);
    --sd-minh: clamp(420px, 74vh, 760px);
    --sd-side-glow: rgba(198, 40, 40, .25);
    --sd-accent: #c62828;
  }

  /* Section background with radial glow */
  .sd-section {
    position: relative;
    background: transparent;
  }

  .sd-section::before,
  .sd-section::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    width: 520px;
    background: radial-gradient(300px 340px at 50% 50%, var(--sd-side-glow) 0%, #00000000 70%);
    pointer-events: none;
    z-index: 0;
    opacity: .98;
  }

  .sd-section::before {
    left: -160px;
  }

  .sd-section::after {
    right: -160px;
  }

  .sd-wrap {
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 24px);
    position: relative;
    z-index: 1;
    margin-top: 30px;
  }

  /* Eyebrow + Title */
  .sd-eyebrow {
    text-align: center;
    font-weight: 600;
    color: var(--sd-accent);
    margin-bottom: 8px;
  }

  .sd-title {
    text-align: center;
    font-weight: 600;
    font-size: clamp(24px, 3.4vw, 30px);
    margin-bottom: 20px;
  }

  .sd-title .sd-accent {
    color: var(--sd-accent);
  }

  /* Stack container */
  .sd-stack {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    isolation: isolate;
  }

  /* Card base */
  .sd-card {
    position: sticky;
    top: var(--sd-top);
    background: #fff;
    border-radius: var(--sd-radius);
    box-shadow: var(--sd-shadow);
    margin-bottom: var(--sd-gap);
    min-height: var(--sd-minh);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.5vw, 28px);
    padding: clamp(20px, 3.2vw, 40px);
    transform: translateY(10px) scale(.98);
    opacity: .9;
    transition: transform .55s ease, opacity .55s ease, box-shadow .55s ease, filter .55s ease;
    will-change: transform, opacity, filter;
    filter: none;
    z-index: 1;
  }

  /* Content + media */
  .sd-card__content {
    flex: 1 1 50%;
    padding-right: 30px;
    border-right: 2px solid var(--sd-accent);
    height: 250px;
  }

  .sd-tag {
    display: inline-block;
    background: var(--sd-accent);
    color: #fff;
    font-size: .9rem;
    padding: 6px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .sd-card__heading {
    font-size: clamp(20px, 2.5vw, 25px);
    margin: 10px auto;
    color: #111;
    font-weight: 600;
  }

  .sd-card__content p {
    color: #444;
    line-height: 1.6;
  }

  .sd-card__media {
    flex: 1 1 50%;
    text-align: center;
    padding-left: 30px;
  }

  .sd-card__media img {
    max-width: 92%;
    border-radius: 12px;
    display: block;
    margin-inline: auto;
    transition: transform 0.25s ease-out;
    will-change: transform;
  }

  /* Active card */
  .sd-card.is-active {
    transform: translateY(0) scale(1);
    opacity: 1;
    box-shadow: var(--sd-shadow-active);
    z-index: 5;
    filter: none;
  }

  /* Inactive cards (hidden) */
  .sd-card.inactive {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(6px);
    pointer-events: none;
  }

  /* Last card fixed for full visibility */
  .sd-card.fixed-card {
    position: fixed;
    top: var(--sd-top);
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1140px;
    z-index: 999;
  }

  /* First card inactive effect */
  .sd-card.first-inactive {
    opacity: 0.2;
    transform: translateY(30px) scale(0.8);
    filter: blur(10px);
    pointer-events: none;
  }

  /* ===== Button ===== */
  .sd-card-btn {
    margin: 40px auto;
    text-align: center;
  }

  .sd-overview-btn {
    text-decoration: none;
    background: #d8232a;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .sd-overview-btn:hover {
    background: transparent;
    color: #d8232a;
    border: 1px solid #d8232a;
  }


  /* Scroll-driven animations (modern browsers) */
  @supports (animation-timeline: view()) {
    .sd-card {
      animation: stack-fade linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 60%;
    }

    @keyframes stack-fade {
      0% {
        transform: translateY(60px) scale(0.95);
        opacity: 0;
        z-index: 0;
      }

      50% {
        transform: translateY(0) scale(1.02);
        opacity: 1;
        z-index: 5;
      }

      100% {
        transform: translateY(-40px) scale(0.96);
        opacity: 0;
        z-index: 0;
      }
    }
  }

  /* ===============================
✅ Responsive: Mobile/Tablet
Goal: Tag → Image → Heading + Paragraph
=============================== */
  @media (max-width: 992px) {
    :root {
      --sd-top: clamp(64px, 12vh, 110px);
    }

    /* Use flex on the card, but expose content children to participate */
    .sd-card {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      text-align: left;
      gap: 12px;
      opacity: 1 !important;
    }

    /* Expose .sd-card__content children (tag, heading, p) as if they were direct siblings,
  so we can interleave the image between them without HTML changes */
    .sd-card__content {
      display: contents;
      /* <-- key trick */
      border-right: none;
      padding-right: 0;
      height: auto;
    }

    /* Order the items */
    .sd-card__content .sd-tag {
      /* Tag first */
      order: 1;
      display: inline-block;
      margin: 0 0 8px 0;
      align-self: flex-start;
      /* left aligned, not full width */
    }

    .sd-card__media {
      /* Image second */
      order: 2;
      padding: 0;
      margin: 0;
      text-align: center;
      align-self: stretch;
      /* take full width row */
    }

    .sd-card__media img {
      max-width: 100%;
      height: auto;
    }

    .sd-card__heading {
      /* Heading third */
      order: 3;
      margin-top: 4px;
    }

    .sd-card__content p {
      /* Paragraph fourth (right after heading) */
      order: 4;
      margin-top: 6px;
    }

    /* Fixed card width tweak */
    .sd-card.fixed-card {
      width: 95%;
    }

    .sd-section::before,
    .sd-section::after {
      display: none;
    }



      /* Scroll-driven animations (modern browsers) */
  @supports (animation-timeline: view()) {
    .sd-card {
      animation: stack-fade linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 60%;
    }

    @keyframes stack-fade {
      0% {
        transform: translateY(60px) scale(0.95);
        opacity: 0;
        z-index: 0;
      }

      50% {
        transform: translateY(0) scale(1.02);
        opacity: 1;
        z-index: 5;
      }

      100% {
        transform: translateY(-40px) scale(0.96);
        opacity: 0;
        z-index: 0;
      }
    }
  }
  }



  /* ======= why choose products section ======= */

  .why-choose-us {
    padding: 60px 20px;
    background: #fff;
    position: relative;
  }

  .why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ===== Heading + Nav Buttons ===== */
  .why-choose-us-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .why-choose-us-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .why-choose-us-header h2 span {
    color: #b30000;
  }

  .why-choose-us-nav {
    display: flex;
    gap: 10px;
  }

  .why-choose-us-nav button {
    border: 1px solid #4a0c0c;
    color: #a21111;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    background: transparent;
  }

  .why-choose-us-nav button:hover {
    background: #b30000;
    color: #fff;
    border: none;
  }

  /* ===== Carousel Track ===== */
  .why-choose-us-track-wrapper {
    overflow: hidden;
    position: relative;
  }

  .why-choose-us-track {
    display: flex;
    transition: transform 0.5s ease;
  }

  /* ===== Card ===== */
  .why-choose-us-card {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px;
    background: linear-gradient(135deg, #4a0000, #e60000);
    border-radius: 12px;
    color: #fff;
    padding: 20px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    overflow: hidden;
  }

  /* Hover gradient + zoom */
  .why-choose-us-card:hover {
    background: linear-gradient(135deg, #e60000, #4a0000);
    /* transform: translateY(-6px); */
    /* box-shadow: 0 8px 20px rgba(0,0,0,0.2); */
  }

  /* Top Content */
  .why-choose-us-card h3,
  .why-choose-us-card p {
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
  }

  .why-choose-us-card h3 {
    font-size: 19px;
    font-weight: 600;
    line-height: 27px;

  }

  .why-choose-us-card p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: auto;
    /* pushes button to bottom */
  }

  /* Card Image */
  .why-choose-us-card img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 98px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    transition: transform 0.4s ease;
  }

  .why-choose-us-card:hover img {
    transform: scale(1.15);
  }

  /* Button */
  .why-choose-us-card button {
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 2;
  }

  .why-choose-us-card:hover button {
    background: #fff;
    color: #b30000;
  }

  /* ===== Responsive ===== */

  /* Mobile ≤480px → 1 card */
  @media (max-width: 480px) {
    .why-choose-us-card {
      flex: 0 0 calc(100% - 20px);
    }

    .why-choose-us-header h2 {
      font-size: 18px;
    }

    .why-choose-us-card h3 {
      font-size: 16px;
    }

    .why-choose-us-card p {
      font-size: 13px;
    }

    .why-choose-us-card button {
      padding: 6px 12px;
      font-size: 13px;
    }
  }

  /* Tablet portrait ≤768px → 2 cards */
  @media (min-width: 481px) and (max-width: 768px) {
    .why-choose-us-card {
      flex: 0 0 calc(50% - 20px);
    }

    .why-choose-us-header h2 {
      font-size: 20px;
    }

    .why-choose-us-card h3 {
      font-size: 17px;
    }

    .why-choose-us-card p {
      font-size: 14px;
    }

    .why-choose-us-card button {
      padding: 7px 14px;
      font-size: 14px;
    }
  }

  /* Tablet landscape 769px–1024px → 3 cards */
  @media (min-width: 769px) and (max-width: 1024px) {
    .why-choose-us-card {
      flex: 0 0 calc(33.333% - 20px);
    }

    .why-choose-us-header h2 {
      font-size: 22px;
    }

    .why-choose-us-card h3 {
      font-size: 18px;
    }

    .why-choose-us-card button {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

  /* Desktop ≥1025px → 4 cards */
  @media (min-width: 1025px) {
    .why-choose-us-card {
      flex: 0 0 calc(25% - 20px);
    }
  }



  /* ======== product industry Section style ======== */
  .industry-section {
    padding: 50px 20px;
    background: #fff;
    position: relative;
  }

  .industry-section h2 {
    font-size: 1.75rem;
    /* responsive scaling */
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 20px;
    color: #aa1313;
  }

  .industry-section h2 span {
    color: #000;
    /* keeps span text darker */
  }


  .industry-trackInd {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    cursor: grab;
    padding-bottom: 10px;
    max-width: 1200px;
    /* keeps cards inside container */
    margin: 0 auto;
    /* centers container */
  }

  .industry-trackInd::-webkit-scrollbar {
    display: none;
    /* hide scroll bar */
  }

  .industry-cardTabs {
    flex: 0 0 calc(100% - 20px);
    /* default 1 card per row */
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 25px;
    padding: 20px 30px 20px 30px;
    /* balanced padding */
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    box-sizing: border-box;
    /* ensures padding doesn’t break layout */
  }

  /* Number notch */
  .industry-cardTabs::before {
    content: attr(data-number);
    position: absolute;
    top: 20px;
    left: 0;
    transform: translateX(-5%);
    /* half outside the card */
    background: #b30000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hover Effect - clean */
  .industry-cardTabs:hover {
    background: linear-gradient(180deg, rgb(23, 2, 2) 0%, rgba(255, 0, 0, 0.85) 100%);
    color: #fff;
    border: none;
  }

  /* Card Image */
  .industry-cardTabs img {
    width: 100%;
    max-width: 120px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0px 2px 8px rgba(255, 0, 0, 0.61));
  }


  /* Title */
  .industry-cardTabs h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
  }

  /* Text */
  .industry-cardTabs p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Responsive Layout */
  @media (min-width: 768px) {
    .industry-cardTabs {
      flex: 0 0 calc(50% - 20px);
      /* 2 cards */
    }
  }

  @media (min-width: 1024px) {
    .industry-cardTabs {
      flex: 0 0 calc(33.333% - 20px);
      /* 3 cards */
    }
  }

  @media (min-width: 1280px) {
    .industry-cardTabs {
      flex: 0 0 calc(25% - 20px);
      /* 4 cards */
    }
  }



  /* ==============  Contact Us Page ============== */

  .contact-banner {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    padding: 60px 8% 40px;
    background: linear-gradient(90deg, #b30000 0%, #0d0d0d 100%);
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
  }

  /* Background Circle PNG */
  .contact-banner::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("images/Contact/banner_bg.png") no-repeat right/contain;
    z-index: 1;
    opacity: 0.9;
  }

  /* Left Content */
  .contact-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
  }

  /* .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
  } */

  /* .breadcrumb span {
    margin: 0 5px;
  } */

  .contact-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .reach-out-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
  }

  .reach-out {
    font-weight: bold;
    font-size: 1.1rem;
    white-space: nowrap;
  }

  .contact-icons {
    display: flex;
    gap: 12px;
  }

  .contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 6px;
    color: #000;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
  }

  .contact-icons a:hover {
    transform: scale(1.1);
    background: #b30000;
    color: #fff;
  }

  /* Woman Image (Bottom Right) */
  .contact-woman {
    position: absolute;
    bottom: 0;
    right: -5%;
    z-index: 2;
    max-width: 35%;
  }

  .contact-woman img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .contact-banner {
      flex-direction: column;
      text-align: center;
      padding: 50px 5% 30px;
      min-height: 350px;
    }

    .contact-content {
      max-width: 100%;
      margin-bottom: 30px;
    }

    .contact-woman {
      position: relative;
      right: auto;
      bottom: auto;
      max-width: 60%;
      margin: 0 auto;
    }

    .contact-banner::before {
      width: 350px;
      height: 350px;
      right: 0;
      bottom: 0;
    }
  }

  @media (max-width: 600px) {
    .contact-content h2 {
      font-size: 2rem;
    }

    .reach-out {
      font-size: 1rem;
    }

    .contact-woman {
      max-width: 80%;
    }
  }


  /* ===========  Contact Enquiry Keyword Section ========  */

  section.contact-enquiry {
    justify-content: center !important;
    padding: 40px 20px;
  }


  .contact-heading {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.4;
  }




  .contact-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    /* Centers horizontally */
    justify-content: center;
  }

  /* Left Side Form */
  .contact-form {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 2px 5px #00000038;
  }

  .contact-form h5 {
    background: #F4EFEA;
    color: #7D141D;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 15px 15px 0 0;
    margin-top: 0px;
  }

  .contact-form .MuiBox-root {
    padding: 0px !important;
  }

  /* Right Side Enquiry Keywords */
  .enquiry-keyword-section {
    flex: 2;
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    align-content: flex-start;
  }

  .enquiry-keyword-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.14);
    transition: all 0.3s ease;
    text-align: left;
    height: 230px;
    display: grid;
    align-items: space-evenly;
  }

  .enquiry-keyword-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .enquiry-keyword-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
  }

  .enquiry-keyword-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
  }

  /* Hover Effect */
  .enquiry-keyword-card:hover,
  .enquiry-keyword-card:active,
  .enquiry-keyword-card:focus {
    box-shadow: 0 4px 12px rgba(125, 20, 29, 0.22);
    border: none;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
      align-items: center;
    }

    .enquiry-keyword-section {
      grid-template-columns: 1fr;
    }

    .contact-form {
      max-width: 100%;
    }
  }


  /* ========== CTA Enquiry Section ========== */


  .cta-enquiry {
    background: linear-gradient(90deg, #a90000, #e82b2b);
    border-radius: 20px;
    padding: 0px;
    /* reduced padding like attached image */
    color: #fff;
    margin: 40px auto;
    max-width: 1200px;
  }

  .cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .cta-content {
    flex: 1;
    padding-left: 50px;
    /* only left padding for text side */
  }

  .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .cta-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f4f4f4;
  }

  .cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  /* Scoped Buttons */
  .cta-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    border: none;
  }

  .cta-content .btn .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
    background: #7D141D
      /* subtle circle bg */
  }

  .cta-content .btn .icon i {
    color: #fff;
    rotate: -30deg;
  }

  .cta-content .btn-primary {
    color: #7D141D;
  }

  .cta-content .btn-secondary {
    color: #7D141D;
  }

  .cta-content .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  .cta-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .cta-image img {
    max-width: 100%;
    height: auto;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .cta-container {
      flex-direction: column;
      text-align: center;
    }

    .cta-image {
      display: none;
      /* hide image on small screens */
    }

    .cta-enquiry {
      background: linear-gradient(135deg, #a90000, #e82b2b);
      padding: 30px 20px;
    }

    .cta-content {
      padding-left: 0;
      /* remove left padding on mobile */
    }

    .cta-content h2 {
      font-size: 1.6rem;
    }

    .cta-content p {
      font-size: 0.95rem;
    }

    .cta-content .btn {
      font-size: 0.9rem;
      padding: 10px 18px;
    }

    .cta-content .btn .icon {
      width: 22px;
      height: 22px;
      font-size: 0.8rem;
    }
  }


  /* =============  Resource Document Download Section ========== */

  .resource-document-download {
    background: linear-gradient(180deg, #d32027 0%, #000 100%);
    padding: 180px 20px 40px;
    /* Added extra top padding */
    color: #fff;
    text-align: center;
  }

  /* Section Heading */
  .resource-document-download h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .resource-document-download p.section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #f5f5f5;
  }

  /* Flex Layout for Form + Boxes */
  .resource-document-download .resource-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    text-align: left;
  }

  /* Left Form */
  .resource-document-download .resource-form {
    flex: 1 1 230px;
    background: #fff;
    color: #000;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .resource-document-download .resource-form h5 {
    background: #e30613;
    color: #fff;
    margin: 0;
    padding: 16px 22px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }

  .resource-document-download .resource-form .MuiBox-root,
  .MuiContainer-root {
    padding: 0px !important;
    padding-bottom: 10px !important;
  }

  .resource-document-download form {
    padding: 20px 25px;
  }

  .resource-document-download .form-group {
    margin-bottom: 15px;
  }

  .resource-document-download .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 0.95rem;
  }

  .resource-document-download .form-group input,
  .resource-document-download .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }

  .resource-document-download .form-group textarea {
    resize: none;
    min-height: 80px;
  }

  .resource-document-download .submit-btn {
    background: #DE1B24;
    border: none;
    color: #fff;
    font-size: 1rem;
    padding: 8px 25px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 auto;
    justify-items: center;
    justify-content: center;
    display: flex;
  }

  .resource-document-download .submit-btn:hover {
    background: #ca151e;
  }

  /* Right Keyword Boxes */

  .resource-document-download .keyword-content {
    display: grid;
    flex: 1 1 500px;
  }

  .resource-document-download .keyword-boxes {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .resource-document-download .keyword-card {
    background: #fff;
    color: #000;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s;
  }

  .resource-document-download .keyword-card:hover {
    transform: translateY(-5px);
  }

  .resource-document-download .keyword-icon {
    font-size: 30px;
    color: #c8102e;
  }

  .resource-document-download .keyword-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }

  .resource-document-download .keyword-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #444;
  }

  /* CTA Section Styling */
  .cta-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 20px 0;
    color: #fff;
  }


  .cta-section p {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  /* CTA Button */
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #b5121b;
    /* deep red */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 23px;
    border-radius: 50px;
    /* pill shape */
    transition: all 0.5s ease;
  }

  .cta-button span {
    margin-left: 8px;
    font-size: 18px;
  }

  .cta-button:hover {
    background: #fff;
    color: #b5121b;
  }


  /* Responsive */
  @media (max-width: 900px) {
    .resource-document-download .resource-section {
      flex-direction: column;
      text-align: center;
    }

    .resource-document-download .keyword-boxes {
      grid-template-columns: 1fr;
    }

    .resource-document-download .resource-form,
    .resource-document-download .keyword-boxes {
      flex: 1 1 100%;
    }
  }

  @media (max-width: 600px) {
    .resource-document-download h2 {
      font-size: 1.5rem;
    }

    .resource-document-download p.section-subtitle {
      font-size: 0.9rem;
    }
  }

  /* ========== Main Product Page CSS ==========  */

  /* ===== Product Banner Section Styling ===== */
  .product-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 520px;
    padding: 180px 100px 120px;
    color: #fff;
    overflow: hidden;
    border-radius: 0;

    /* Gradient background */
    background: linear-gradient(to bottom, #8b0d18, #111);
  }

  /* Right-side background pattern (hex shapes) */
  .product-banner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 600px;
    /* adjust based on your image */
    background: url("images/Products/Product_banner.png") no-repeat right center;
    background-size: cover;
    opacity: 0.8;
    pointer-events: none;
  }

  /* Breadcrumb */
  .product-banner .breadcrumb {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #fff;
    gap: 10px;
  }

  .icon-circle {
    width: 36px;
    height: 36px;
    background: #e63946;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-circle img {
    width: 18px;
    height: 18px;
  }

  .separator {
    font-size: 20px;
    font-weight: 600;
    margin: 0 1px;
    padding: 0px;
  }

  /* Heading */
  .product-banner .banner-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 600px;
  }

  /* Subheading */
  .product-banner .banner-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    opacity: 0.8;
  }

  /* CTA Button */
  .product-banner .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    background: #fff;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .product-banner .cta-btn:hover {
    background: #f3f3f3;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }

  .product-banner .cta-btn .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .product-banner .cta-btn:hover .arrow {
    transform: translate(4px, -4px);
  }

  /* ================= Responsive ================= */

  /* Tablet */
  @media (max-width: 1024px) {
    .product-banner {
      padding: 120px 60px 80px;
    }

    .product-banner .banner-content h1 {
      font-size: 32px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .product-banner {
      flex-direction: column;
      text-align: center;
      padding: 80px 20px 60px;
      min-height: 480px;
    }

    .product-banner .banner-content h1 {
      font-size: 28px;
    }

    .product-banner .banner-content p {
      margin: 0 auto 25px;
      font-size: 15px;
    }

    .product-banner::after {
      width: 100%;
      opacity: 0.4;
    }
  }

  /* Small Mobile */
  @media (max-width: 480px) {
    .product-banner {
      padding: 140px 20px 40px;
      text-align: left;
    }

    .product-banner .banner-content h1 {
      font-size: 24px;
    }

    .product-banner .banner-content p {
      font-size: 14px;
    }

    .product-banner .cta-btn {
      padding: 12px 22px;
      font-size: 14px;
    }
  }

  /* ======  About Product Section style ======  */
  .products-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 110px;
    background: #fff;
    color: #111;
    gap: 10px;
    position: relative;
  }

  .products-about .about-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    /* desktop/landscape: keep as a column block */
    flex-direction: column;
  }

  .products-about .about-image {
    flex: 1;
    text-align: center;
  }

  .products-about .about-image img {
    max-width: 100%;
    height: auto;
  }

  /* ---- Typography (responsive) ---- */
  .products-about .subtitle {
    color: #7D141D;
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 15px;
  }

  .products-about h2 {
    font-size: clamp(20px, 2vw, 40px);
    font-weight: 600;
    margin: 15px auto;
    line-height: 1.3;
  }

  .products-about h2 .highlight {
    color: #7D141D;
  }

  .products-about p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #444;
    line-height: 1.7;
    margin-bottom: 35px;
  }

  .products-about .btn-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(90deg, #B1030B, #DE1B24);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 18px);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  }

  .products-about .btn-read:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .3);
  }

  /* ✅ Ensure desktop + landscape tablets stay two-column (content left, image right) */
  @media (min-width: 768px) and (orientation: landscape) {
    .products-about {
      flex-direction: row;
      text-align: left;
    }

    .products-about .about-content {
      max-width: 50%;
      display: block;
      /* cancel any portrait override */
      flex-direction: column;
    }

    .products-about .about-image {
      text-align: right;
    }
  }

  /* ✅ Portrait (tablet & mobile): stack and interleave: subtitle → title → image → text → button */
  @media (max-width: 992px) and (orientation: portrait) {
    .products-about {
      flex-direction: column;
      padding: 60px 40px;
      text-align: center;
    }

    /* Flatten wrapper so its children and the image can share the same flex parent */
    .products-about .about-content {
      max-width: 100%;
      display: contents;
      /* lets .subtitle, h2, p, .btn-read be siblings with .about-image */
    }

    /* Order across the SINGLE flex context now works */
    .products-about .subtitle {
      order: 1;
    }

    .products-about h2 {
      order: 2;
    }

    .products-about .about-image {
      order: 3;
      margin: 12px 0 8px;
    }

    .products-about p {
      order: 4;
    }

    .products-about .btn-read {
      order: 5;
      margin-top: 8px;
    }
  }

  /* ✅ Phones (extra tweaks) */
  @media (max-width: 576px) {
    .products-about {
      padding: 40px 20px;
    }

    .products-about .btn-read {
      width: 100%;
    }
  }


  /* ========== Product Keyword section style ========   */

  .product-keyword {
    padding: 50px 80px;
    background: url(images/Products/product_keyword_bg.png) no-repeat center right / contain;
    border-radius: 16px;
    width: 100%;
    margin-top: -70px;
    position: relative;
    z-index: 0;
  }

  .product-keyword-header {
    text-align: left;
    margin-bottom: 40px;
  }

  .product-keyword-subtitle {
    color: #7D141D;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 12px;
  }

  .product-keyword h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #111;
    text-align: center;
  }

  .product-keyword h2 .highlight {
    color: #7D141D;
  }

  .product-keyword-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }

  .product-keyword-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px 25px 20px 25px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(125, 20, 29, 0.15);
    box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.08);
  }

  .product-keyword-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 22px rgba(125, 20, 29, 0.2);
  }

  .product-keyword-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .product-keyword-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
  }

  .product-keyword-underline {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #e63946, #7D141D);
    margin: 0 0 15px 0;
  }

  .product-keyword-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
  }

  /* -------- Responsive -------- */
  @media (max-width: 992px) {
    .product-keyword {
      padding: 80px 40px;
    }

    .product-keyword h2 {
      font-size: 28px;
    }

    .product-keyword-card h3 {
      font-size: 18px;
    }
  }

  @media (max-width: 768px) {
    .product-keyword {
      padding: 0px 10px;
      margin-top: 0px;
    }

    .product-keyword h2 {
      font-size: 26px;
    }

    .product-keyword-card {
      min-width: 100%;
    }
  }

  @media (max-width: 480px) {
    .product-keyword h2 {
      font-size: 22px;
    }

    .product-keyword-card h3 {
      font-size: 17px;
    }

    .product-keyword-card p {
      font-size: 14px;
    }
  }


  /* ======== Product Analysis Process Section style ========   */

  .product-analysis-process {
    padding: 80px 40px 40px;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .process-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
  }

  .process-header .highlight {
    color: #7D141D;
  }

  .process-header p {
    font-size: 1rem;
    color: #222;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
  }

  /* Steps container */
  .process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    gap: 100px;
    flex-wrap: nowrap;
    margin: 20px auto;
  }

  /* Each step */
  .process-step {
    text-align: center;
    max-width: 240px;
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
  }

  /* Circle icon */
  .icon-wrapper {
    width: 110px;
    height: 110px;
    border: 2px solid #7D141D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
  }

  .icon-wrapper img {
    width: 55px;
    height: 55px;
  }

  .process-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111;
  }

  .process-step p {
    font-size: 0.8rem;
    color: #191919;
    line-height: 1.5;
  }

  .product-analysis-process .btn-read {
    background: #d8232a;
    text-decoration: none;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .product-analysis-process .btn-read:hover {
    background: transparent;
    color: #d8232a;
    border: 1px solid #d8232a;
  }

 /* ====== Base Styles ====== */
.connector-svg {
  position: absolute;
  width: 215px;
  height: 35px;
  overflow: visible;
  z-index: 1;
}

/* Connector positions (default desktop) */
.connector-1 {
  top: 55px;
  left: 18%;
}

.connector-2 {
  top: 3px;
  left: 42%;
}

.connector-3 {
  top: 60px;
  left: 67%;
}

/* ====== Responsive Styles ====== */

/* 💻 Extra Large Screens (Above 1400px) */
@media (min-width: 1400px) {
  .connector-svg {
    width: 230px;
    height: 40px;
  }

  .connector-1 {
    top: 55px;
    left: 19%;
  }

  .connector-2 {
    top: 3px;
    left: 43%;
  }

  .connector-3 {
    top: 60px;
    left: 66%;
  }
}

/* 🖥️ Large Desktops (1201px – 1399px) */
@media (min-width: 1201px) and (max-width: 1399px) {
  .connector-1 {
    top: 55px;
    left: 15%;
  }

  .connector-2 {
    top: 3px;
    left: 42%;
  }

  .connector-3 {
    top: 60px;
    left: 70%;
  }
}

/* 💼 Medium Desktops & Large Tablets (992px – 1200px) */
@media (max-width: 1200px) {
  .process-steps {
    gap: 70px;
  }

  .connector-svg {
    width: 160px;
    height: 30px;
  }

  .connector-1 {
    left: 17%;
    top: 35px;
  }

  .connector-2 {
    left: 45%;
    top: 10px;
  }

  .connector-3 {
    left: 71%;
    top: 42px;
  }
}

/* 📱 Tablets (768px – 991px) */
@media (max-width: 992px) {
  .process-header h2 {
    font-size: 1.8rem;
  }

  .process-steps {
    gap: 40px;
  }

  .process-step {
    max-width: 200px;
  }

  .icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .icon-wrapper img {
    width: 45px;
    height: 45px;
  }

  .connector-svg {
    width: 130px;
    height: 22px;
  }

  .connector-1 {
    left: 28%;
    top: 45px;
  }

  .connector-2 {
    left: 53%;
    top: 15px;
  }

  .connector-3 {
    left: 74%;
    top: 45px;
  }
}

/* 📲 Small Tablets / Large Phones (576px – 767px) */
@media (max-width: 768px) {
  .process-steps {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .process-step {
    max-width: 160px;
    flex: 1 1 45%; /* 2 per row */
  }

  .process-step h3 {
    font-size: 0.9rem;
  }

  .process-step p {
    font-size: 0.8rem;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .icon-wrapper img {
    width: 40px;
    height: 40px;
  }

  .connector-svg {
    display: none; /* Hide SVG connectors on smaller screens */
  }
}

/* 📞 Mobile (Below 576px) */
@media (max-width: 576px) {
  .process-steps {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .process-step {
    max-width: 100%;
    text-align: center;
  }

  .process-step h3 {
    font-size: 0.9rem;
  }

  .process-step p {
    font-size: 0.7rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper img {
    width: 35px;
    height: 35px;
  }

  .connector-svg {
    display: none; /* Hide connectors completely */
  }
}


  /* ========= Product why-Choose Keyword Section style ========    */

  .why-choose-products-keyword {
    position: relative;
    padding: 80px 100px;
    background: linear-gradient(to bottom, #ffffff 45%, #7D141D 45%);
    text-align: center;
    overflow: hidden;
  }

  /* Decorative shape at bottom-right of section */
  .why-choose-products-keyword::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 280px;
    height: 280px;
    background: url("images/Products/why-us-design-product.png") no-repeat center right/contain;
    opacity: 0.9;
    z-index: 0;
    /* behind everything */
    pointer-events: none;
  }

  /* Heading */
  .why-choose-products-keyword-header .section-subtitle {
    color: #111;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 50px;
  }

  .why-choose-products-keyword-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
  }

  .why-choose-products-keyword-header .highlight {
    color: #7D141D;
  }

  /* Card grid */
  .why-choose-products-keyword-cards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
    /* keeps cards above decorative shape */
  }

  /* Cards */
  .why-choose-products-keyword-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0px 0px 11px 0px rgba(255, 0, 0, 0.21);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .why-choose-products-keyword-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  }

  /* Icons (SVG) */
  .why-choose-products-keyword-icon {
    margin-bottom: 18px;
  }

  .why-choose-products-keyword-icon img {
    width: 60px;
    height: 60px;
    display: inline-block;
  }

  /* Card Text */
  .why-choose-products-keyword-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    transition: color 0.3s ease;
  }

  .why-choose-products-keyword-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #333;
  }

  /* Hover state */
  .why-choose-products-keyword-card:hover h3 {
    color: #7D141D;
  }

  /* ============================= */
  /* RESPONSIVE */
  /* ============================= */
  @media (max-width: 1200px) {
    .why-choose-products-keyword {
      padding: 60px 60px;
    }

    .why-choose-products-keyword-header h2 {
      font-size: 2rem;
    }
  }

  @media (max-width: 992px) {
    .why-choose-products-keyword-cards {
      grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-products-keyword-header h2 {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 768px) {
    .why-choose-products-keyword {
      padding: 50px 30px;
    }

    .why-choose-products-keyword-cards {
      grid-template-columns: 1fr;
    }

    .why-choose-products-keyword-header h2 {
      font-size: 1.5rem;
    }
  }

  @media (max-width: 480px) {
    .why-choose-products-keyword {
      padding: 40px 20px;
    }

    .why-choose-products-keyword-header .section-subtitle {
      font-size: 0.9rem;
    }

    .why-choose-products-keyword-header h2 {
      font-size: 1.25rem;
    }

    .why-choose-products-keyword-card {
      padding: 20px;
    }

    .why-choose-products-keyword-icon img {
      width: 42px;
      height: 42px;
    }

    .why-choose-products-keyword-card h3 {
      font-size: 1rem;
    }

    .why-choose-products-keyword-card p {
      font-size: 0.875rem;
    }
  }

  /* ======== Product FAQ Section style ========    */

  .product-faq {
    padding: 100px 130px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }

  .product-faq-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
  }

  .product-faq-left {
    flex: 1;
    max-width: 250px;
  }

  .product-faq-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #7D141D;
  }

  .product-faq-left p {
    font-size: 15px;
    color: #191919;
    line-height: 1.6;
  }

  .product-faq-left p a {
    color: #dc3545;
    text-decoration: none;
    font-weight: 600;
  }

  .product-faq-right {
    flex: 2;
    width: 100%;
  }

  .product-faq-item {
    border-bottom: 1px solid #ddd;
    padding: 18px 0;
  }

  .product-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
  }

  .product-faq-icon {
    font-size: 22px;
    font-weight: bold;
    transition: transform 0.3s ease;
  }

  .product-faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 15px;
    color: #191919;
    line-height: 1.6;
    padding-left: 6px;
  }

  /* Active state */
  .product-faq-item.active .product-faq-answer {
    display: block;
  }

  .product-faq-item.active .product-faq-question .product-faq-icon {
    content: "−";
  }

  /* ===================== Responsive ===================== */

  /* Tablets */
  @media (max-width: 1024px) {
    .product-faq {
      padding: 80px 60px;
    }

    .product-faq-container {
      gap: 50px;
    }

    .product-faq-left h2 {
      font-size: 28px;
    }

    .product-faq-question {
      font-size: 17px;
    }

    .product-faq-answer {
      font-size: 14px;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .product-faq {
      padding: 60px 30px;
    }

    .product-faq-container {
      flex-direction: column;
      gap: 30px;
    }

    .product-faq-left {
      max-width: 100%;
      text-align: center;
    }

    .product-faq-left h2 {
      font-size: 26px;
    }

    .product-faq-left p {
      font-size: 14px;
    }

    .product-faq-question {
      font-size: 16px;
    }

    .product-faq-answer {
      font-size: 14px;
      padding-left: 0;
    }
  }

  /* Small phones */
  @media (max-width: 480px) {
    .product-faq {
      padding: 40px 20px;
    }

    .product-faq-left h2 {
      font-size: 22px;
    }

    .product-faq-left p {
      font-size: 13px;
    }

    .product-faq-question {
      font-size: 15px;
    }

    .product-faq-answer {
      font-size: 13px;
    }
  }


  /*==========  Resource Pages Style Design ===========*/
  :root {
    --accent: #EE2843;
    --card-bg: #fff;
    --muted: #666;
  }

  .grid-list>.container {
    display: flex;
    max-width: 1340px;
    margin: 0 auto;
    padding: 40px 20px;
    align-items: flex-start;
  }

  .grid-list h4 {
    text-align: center;
  }

  /* Sidebar */
  .sidebar {
    width: 280px;
    background: #fafafa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
  }

  .sidebar h2 {
    margin: 0 0 18px 0;
    font-size: 20px;
  }

  .filter-group {
    margin-bottom: 18px;
  }

  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
  }

  .filter-header h3 {
    margin: 0;
    font-size: 16px;
  }

  .filter-options {
    margin-top: 10px;
  }

  .filter-options label {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
  }

  .filter-options label.visible {
    display: flex;
  }

  .filter-options input[type="checkbox"] {
    accent-color: var(--accent);
    transform: scale(1.1);
  }

  .toggle-container {
    margin-top: 6px;
    font-size: 13px;
    cursor: pointer;
    color: var(--accent);
  }

  .filter-group.collapsed .filter-options {
    display: none;
  }

  .filter-group.collapsed .toggle-container {
    display: none;
  }

  .filter-header .arrow {
    display: inline-block;
    transition: transform .2s ease;
  }

  .filter-group.collapsed .filter-header .arrow {
    transform: rotate(-90deg);
  }

  .quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .link-with-border {
    display: block;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
  }

  .link-with-border:hover {
    background: var(--accent);
    color: #fff;
  }

  /* Main content */
  .main-content {
    flex: 1;
    margin-top: 0px;
  }

  #active-filters {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
  }

  #active-filters .reset-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
  }

  #active-filters .tag {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f5f5f5;
    font-weight: 600;
  }

  #active-filters .tag i {
    cursor: pointer;
    font-size: 12px;
  }

  .resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .resources-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: .28s;
  }

  .resources-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }

  .resources-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .resources-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .resources-category {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    text-transform: uppercase;
    padding: 3px 10px;
    width: max-content;
    background: #FAE5E5;
    border-radius: 4px;
  }

  .resources-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 18px;
    flex: 1;
    margin: clamp(8px, 1.5vw + 2px, 12px) 0 0 0;
  }

  .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--accent);
    text-decoration: none;
    margin: clamp(8px, 1.5vw + 2px, 12px) 0 0 0;
  }


  .read-more:hover {
    color: #7D141D;
  }

  .skeleton-card {
    height: 300px;
    background: #f1f1f1;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% {
      background: #f1f1f1
    }

    50% {
      background: #e7e7e7
    }

    100% {
      background: #f1f1f1
    }
  }

  #loadMoreBtn {
    display: block;
    margin: 28px auto 60px;
    padding: 12px 28px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
  }

  @media (max-width:1024px) {
    .case-studies-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width:767px) {
    .grid-list>.container {
      flex-direction: column;
    }

    .sidebar {
      width: 90%;
      order: 1;
      margin: 0 auto;
    }

    .main-content {
      order: 2;
    }

    .resources-grid {
      grid-template-columns: 1fr;
    }
  }


  /* ==========  Detailed Resource Page Style Design ========== */

  /* Container */
  .detail-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 40px);
  }

  /* Hero Section */
  .detail-container .hero-section {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 40px);
    background: transparent;
    padding: 0;
  }

  .detail-container .hero-section h1 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.5rem);
    font-weight: 600;
    margin-bottom: clamp(15px, 2vw, 20px);
    color: #222;
  }

  .detail-container .hero-section img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

  /* Meta Section */
  .detail-container .detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: clamp(5px, 2vw, 15px);
    margin: clamp(10px, 2vw, 20px) 0;
  }

  .detail-container .meta-card {
    background: #fff;
    border-radius: 12px;
    padding: clamp(12px, 1.5vw, 18px) clamp(16px, 2vw, 24px);
    min-width: 150px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 10px;
    justify-content: center;
  }

  .detail-container .meta-card strong {
    font-size: clamp(14px, 1vw + 12px, 17px);
    color: #7d141d;
    margin-bottom: 0;
  }

  /* Detail Content */
  .detail-container .detail-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 4vw, 40px);
    margin-top: clamp(20px, 4vw, 40px);
  }

  .detail-container .detail-left {
    flex: 2 1 60%;
    min-width: 280px;
  }

  .detail-container .detail-left h2 {
    font-size: clamp(18px, 1.2vw + 16px, 22px);
    margin-bottom: clamp(10px, 1vw + 10px, 14px);
    font-weight: 600;
    color: #222;
  }

  .detail-container .detail-left p {
    margin-bottom: clamp(12px, 2vw, 18px);
    line-height: 1.7;
    color: #444;
    font-size: clamp(14px, 1vw + 12px, 16px);
  }

  /* Contact Form */
  .detail-container .contact-form {
    flex: 1 1 35%;
    min-width: 280px;
    max-width: 380px;
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 2px 5px #00000038;
    height: fit-content;
  }

  .detail-container .contact-form h5 {
    background: #F4EFEA;
    color: #7D141D;
    text-align: center;
    padding: clamp(10px, 1.5vw, 15px);
    font-size: clamp(16px, 1vw + 14px, 18px);
    font-weight: bold;
  }

  /* Banner Section */
  .detail-resources-banner {
    background-size: cover;
    background-position: center;
    color: white;
    padding: clamp(4rem, 6vw, 8rem) 0 clamp(3rem, 5vw, 6rem);
    position: relative;
    text-align: center;
    margin-top: 100px;
  }

  .detail-resources-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #b30000 0%, #0d0d0d 130%);
    opacity: 0.7;
  }

  .detail-resources-banner .category {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    padding: clamp(3px, 0.5vw, 4px) clamp(10px, 1vw, 14px);
    border-radius: 20px;
    margin-bottom: 1rem;
  }

  .detail-resources-banner h1 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
  }

  .no-related-posts {
    text-align: center;
    font-size: 16px;
    color: #777;
    padding: 20px 0;
  }

  /* Resources Button Section */
  .resources-btn {
    margin-top: clamp(40px, 5vw, 60px);
  }

  .resources-container {
    text-align: center;
    padding: clamp(30px, 5vw, 40px);
    background: linear-gradient(90deg, #2b0004, #7a0010);
    border-radius: 12px;
    color: #fff;
    margin: 0 auto clamp(30px, 5vw, 50px);
  }

  .resources-heading {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: 600;
    margin-bottom: clamp(18px, 3vw, 35px);
  }

  .resources-actions {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 2vw, 20px);
    flex-wrap: wrap;
  }

  .btn-resource {
    display: inline-block;
    padding: clamp(10px, 1vw + 8px, 12px) clamp(20px, 2vw, 28px);
    background: #fff;
    color: #c00000;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 1vw + 0.2rem, 1rem);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-resource:hover {
    background: #c00000;
    color: #fff;
  }

  /* ======================== Responsive Media Queries ======================== */
  @media (max-width: 992px) {
    .detail-container .detail-content {
      flex-direction: column;
    }

    .detail-container .contact-form {
      max-width: 100%;
      margin-top: clamp(20px, 3vw, 30px);
    }
  }

  @media (max-width: 768px) {
    .resources-heading {
      font-size: clamp(1.3rem, 2vw, 1.5rem);
    }

    .resources-actions {
      flex-direction: column;
      gap: clamp(10px, 2vw, 15px);
    }

    .btn-resource {
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
    }

    .detail-resources-banner {
      padding: clamp(3rem, 5vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    }

    .detail-resources-banner h1 {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
    }
  }

  @media (max-width: 480px) {
    .detail-container {
      padding: clamp(15px, 4vw, 20px);
    }

    .detail-container .detail-left h2 {
      font-size: clamp(16px, 3vw, 18px);
    }

    .detail-container .detail-left p {
      font-size: clamp(13px, 2.5vw, 15px);
    }

    .detail-container .meta-card {
      min-width: 120px;
      padding: clamp(10px, 2vw, 14px);
    }
  }


  /* ======== Resource Page Banner Section style ========  */

  #white-nav-bg .navbar {
    background-color: #fff;
  }

  .resource-banner {
    position: relative;
    width: 100%;
    min-height: 430px;
    display: flex;
    align-items: center;
    padding: 0px 8%;
    background: linear-gradient(90deg, #b30000 0%, #0d0d0d 100%);
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    justify-content: center;
    margin-top: 110px;
  }

  /* Background Circle PNG */
  .resource-banner::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("images/Contact/banner_bg.png") no-repeat right/contain;
    z-index: 1;
    opacity: 0.7;
  }

  /* Left Content */
  .resource-banner .resource-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
  }

  .resource-banner .breadcrumb {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    justify-content: center;
    font-weight: 600;
    align-content: center;
    display: none;
  }

  .resource-banner.breadcrumb span {
    margin: 0 5px;
  }

  .resource-banner .resource-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    align-content: center;
    text-align: center;
    text-transform: capitalize;
  }

  .resource-banner .reach-out-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
  }

  .resource-banner .reach-out {
    font-weight: 600;
    font-size: 1.1rem;
    white-space: break-spaces;
    line-height: 1.8em;
  }

  .resource-banner .resource-icons {
    display: flex;
    gap: 12px;
  }

  .resource-banner .resource-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 6px;
    color: #000;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
  }

  .resource-banner .resource-icons a:hover {
    transform: scale(1.1);
    background: #b30000;
    color: #fff;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .resource-banner {
      flex-direction: column;
      text-align: center;
      padding: 50px 5% 30px;
      min-height: 350px;
    }

    .resource-content {
      max-width: 100%;
      margin-bottom: 30px;
    }

    .resource-banner::before {
      width: 350px;
      height: 350px;
      right: 0;
      bottom: 0;
    }
  }

  @media (max-width: 600px) {
    .resource-content h2 {
      font-size: 2rem;
    }

    .reach-out {
      font-size: 1rem;
    }

    .resource-woman {
      max-width: 80%;
    }
  }

  /* ========== Main Blog page Style ==========   */

  .blogs {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333333;
  }

  .blogs .container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 130px;
    gap: 30px;
  }

  .blogs .main-content {
    flex: 1;
  }

  .blogs .search-wrapper {
    position: relative;
    width: 60%;
    min-width: 200px;
  }

  .blogs .clear-search {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    cursor: pointer;
    display: none;
    margin-top: -10px;
  }

  .blogs #search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid #000000;
    margin-bottom: 20px;
    background-color: #fff;
    color: #000;
  }

  .blogs .top-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .blogs .select-wrapper {
    position: relative;
    display: inline-block;
  }

  .blogs .select-wrapper select {
    min-width: 120px;
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 25px;
    border: 1px solid #000000;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 36px;
    position: relative;
  }

  .blogs .select-wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-140%);
    pointer-events: none;
    color: #2c2c2c;
    font-size: 12px;
  }

  .blogs #blogs-grid {
    display: grid;
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .blogs .blog-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .blogs .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .blogs .blog-image {
    padding: 12px;
  }

  .blogs .blog-image img {
    width: 100%;
    height: 200px;
    object-fit: fill;
    border-radius: 10px;
    display: block;
  }

  .blogs .blog-content {
    padding: 0 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
  }

  .blogs .blog-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #EE2843;
    background: #F0D7D7;
    padding: 4px 10px;
    border-radius: 6px;
    margin-top: 8px;
    width: max-content;
  }

  .blogs .blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    margin: 0;
    padding: 15px 0;
  }

  .blogs .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #e63946;
    text-decoration: none;
    padding-bottom: 10px;
    transition: all 0.3s ease;
    margin: 5px 0;
  }

  .blogs .read-more:hover {
    color: #b71c1c;
  }

  .blogs .read-more .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .blogs .read-more:hover .arrow {
    transform: translateX(4px);
  }

  .blogs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
  }

  .blogs .author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .blogs .author-name {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
  }

  .blogs .date {
    font-size: 14px;
    color: #6b7280;
    margin-left: auto;
  }

  .blogs #pagination {
    margin-top: 30px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .blogs #pagination button {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 5px;
  }

  .blogs #pagination button:hover {
    background-color: #f31d2853;
    color: #000;
  }

  .blogs #pagination button.active {
    background-color: #F31D26;
    color: #fff;
    font-weight: bold;
  }

  @media (min-width: 1024px) {
    .blogs #blogs-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 1200px) {
    .blogs .container {
      flex-direction: column;
      padding: 20px;
    }

    .blogs #blogs-grid {
      padding: 25px 5px;
      gap: 15px;
    }
  }

  .sort-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #800000;
    /* maroon icon */
    pointer-events: none;
    /* prevent blocking select clicks */
    font-size: 16px;
  }

  .select-wrapper:hover .sort-icon,
  .select-wrapper select:focus+.sort-icon {
    color: #a00000;
  }

  .select-wrapper select:focus {
    border-color: #a00000;
    outline: none;
  }



  /* ==========  Blog Detail Page Style ========== */

  .blog-details {
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin: 50px auto;
    max-width: 1200px;
    padding: 80px 20px 0px;
  }

  /* === Main Container: Left + Right === */
  .blog-details .container {
    display: flex;
    gap: 40px;
  }

  .blog-details .left-column {
    flex: 3;
  }

  .blog-details .right-column {
    flex: 1;
    border-left: 1px solid #ddd;
    padding-left: 20px;
    margin-top: 50px;
  }

  /* Blog Category */
  .blog-details .blog-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #EE2843;
    background: #F0D7D7;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  /* Blog Title */
  .blog-details .title {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin: 15px 0 25px;
  }

  /* Author Section */
  .blog-details .author-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
  }

  .blog-details .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
  }

  .blog-details .author-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }

  .blog-details .share-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .blog-details .share-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: lowercase;
  }

  .blog-details .share-icons {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .blog-details .share-icons a {
    color: #888;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: transform .15s ease, color .3s ease;
  }

  .blog-details .share-icons a:hover {
    color: #EE2843;
    transform: translateY(-3px);
  }

  /* Blog Image */
  .blog-details .blog-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 25px;
    object-fit: cover;
  }

  /* Recent Posts */
  .blog-details .right-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
  }

  .blog-details .recent-post {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .blog-details .post {
    display: grid;
    gap: 10px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    padding: 5px;
    transition: background .3s ease;
    border-radius: 6px;
  }

  .blog-details .post:hover {
    /* background: rgba(238, 40, 67, 0.05); */
    cursor: pointer;
  }

  .blog-details .recent-post img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
  }

  .blog-details .recent-post-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
  }

  .blog-details .recent-post-title:hover {
    text-decoration: none;
    color: #FF1E27;
  }

  .blog-details .recent-post-date {
    font-size: 13px;
    color: #888;
  }

  /* Related Blogs Section */
  .blog-details .related-blogs {
    margin-top: 50px;
    padding-bottom: 30px;
  }

  .blog-details .related-blogs h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
  }

  .blog-details #related-posts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }

  .blog-details .related-post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .3s ease, transform .3s ease;
    display: block;
  }

  .blog-details .related-post-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    cursor: pointer;
  }

  .blog-details .related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }

  .blog-details .related-post-content {
    padding: 15px;
  }

  .blog-details .related-post-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
  }

  .blog-details .related-post-title:hover {
    color: #EE2843;
    text-decoration: underline;
  }

  .blog-details .related-post-date {
    font-size: 14px;
    color: #777;
  }

  .custom-list {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
  }

  .custom-list li {
    position: relative;
    padding-left: 35px;
    /* space for the icon */
    margin-bottom: 10px;
  }

  .custom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    transform: translateY(-50%);
    width: 20px;
    /* icon width */
    height: 20px;
    /* icon height */
    background-image: url('images/Chevron-Right-icon.svg');
    /* your custom icon */
    background-size: contain;
    background-repeat: no-repeat;
  }

  .blog-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #EE2843;
    border-left: 4px solid #EE2843;
    padding-left: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-radius: 4px;
  }

  .blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #EE2843;
    /* Red color */
    margin-top: 25px;
    margin-bottom: 12px;
  }

  .blog-content .cta-section {
    background: linear-gradient(to right, #3b0004, #7b000f);
    /* deep red gradient */
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 1200px;
    margin: 40px auto;
  }

  .blog-content .cta-section h4 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
  }

  .blog-content .cta-btn {
    display: inline-block;
    background: #fff;
    color: #b00012;
    /* red text */
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .blog-content .cta-btn:hover {
    background: #b00012;
    color: #fff;
  }

  .also-read {
    border: 2px solid #f30707;
    /* green border */
    border-radius: 4px;
    padding: 12px 15px;
    background: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    display: inline-block;
    /* keeps it shrink-wrapped */
  }

  .also-read strong {
    color: #333;
    /* dark text for 'Also Read:' */
    margin-right: 6px;
  }

  .also-read a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.3s ease;
  }

  .also-read a:hover {
    color: #004999;
  }

  .blog-content a {
    color: #ff000a;
    text-decoration: none;
  }

  /* Very large desktops */
  @media (min-width: 1400px) {

    /* CTA large screen */
    .cta-section h2 {
      font-size: 2rem;
    }

    .cta-btn {
      font-size: 1rem;
      padding: 15px 40px;
    }
  }

  /* Medium screens (tablet) */
  @media (max-width: 992px) {

    /* CTA tablet */
    .cta-section {
      padding: 50px 15px;
    }

    .cta-section h2 {
      font-size: 1.6rem;
    }

    .cta-btn {
      font-size: 0.95rem;
      padding: 14px 35px;
    }

    /* Also Read tablet */
    .also-read {
      font-size: 15px;
      padding: 10px 12px;
    }
  }

  /* Small screens (mobile) */
  @media (max-width: 768px) {

    /* CTA mobile */
    .cta-section {
      padding: 40px 15px;
    }

    .cta-section h2 {
      font-size: 1.4rem;
    }

    .cta-btn {
      display: block;
      width: 80%;
      max-width: 320px;
      margin: 0 auto;
      text-align: center;
      padding: 14px 0;
    }

    /* Also Read mobile */
    .also-read {
      font-size: 14px;
      display: block;
      width: 100%;
      box-sizing: border-box;
    }

    .blog-details .post {
      display: flex;
    }
  }

  /* Extra small screens (very small mobile) */
  @media (max-width: 480px) {

    /* CTA very small mobile */
    .cta-section h2 {
      font-size: 1.2rem;
    }

    .cta-btn {
      width: 100%;
      padding: 12px 0;
      font-size: 0.9rem;
    }

    /* Also Read very small mobile */
    .also-read {
      font-size: 13px;
      padding: 8px 10px;
    }
  }

  /* ===== Responsive ===== */

  /* Tablets & small desktops */
  @media (max-width: 991px) {
    .blog-details .container {
      flex-direction: column;
      gap: 30px;
    }

    .blog-details .right-column {
      border-left: none;
      padding-left: 0;
      margin-top: 0;
    }

    .blog-details .right-column h3 {
      font-size: 20px;
    }

    .blog-details .title {
      font-size: 26px;
    }

    .blog-details .recent-post img {
      width: 140px;
      height: 90px;
    }
  }

  /* Mobile phones */
  @media (max-width: 575px) {
    .blog-details .container {
      gap: 20px;
    }

    .blog-details .title {
      font-size: 22px;
    }

    .blog-details .blog-category {
      font-size: 12px;
      padding: 3px 8px;
    }

    .blog-details .author-section {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .blog-details .share-wrapper {
      gap: 6px;
    }

    .blog-details .share-icons a {
      font-size: 14px;
      width: 28px;
      height: 28px;
    }

    .blog-details .recent-post img {
      width: 100px;
      height: 70px;
    }

    .blog-details #related-posts-container {
      grid-template-columns: 1fr;
    }

    .blog-details .related-post-card img {
      height: 150px;
    }

    .blog-details .related-post-title {
      font-size: 14px;
    }
  }

  /* Very large desktops */
  @media (min-width: 1400px) {
    .blog-details .container {
      max-width: 1320px;
      gap: 60px;
    }

    .blog-details .title {
      font-size: 36px;
    }
  }


  /* ========== Guides Detailed Page Style ========== */


  .guide-banner {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 10rem 0 4rem;
    position: relative;
    text-align: center;
    margin-top: 2rem;
  }

  .guide-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
  }

  .banner-content {
    position: relative;
    z-index: 2;
  }

  .category {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
  }

  .guide-banner h1 {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
  }

  /* Layout */
  .guide-details {
    margin-top: 3rem;
  }

  .guide-nav {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
  }

  .guide-nav h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .guide-nav .nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #333;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    transition: all 0.3s;
  }

  .guide-nav .nav-link.active,
  .guide-nav .nav-link:hover {
    border-left: 3px solid #dc3545;
    background: #f8f9fa;
    color: #dc3545;
    font-weight: 600;
  }

  .guide-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #EE2843;
    border-left: 4px solid #EE2843;
    padding-left: 10px;
    margin-top: 30px;
    margin-bottom: 15px;
    border-radius: 4px;
  }

  .guide-content p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
  }

  .guide-content a {
    color: #ff000a;
    text-decoration: none;
  }

  .guide-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ee2644;
    padding: 5px 0;
  }

  .highlight-box {
    background: linear-gradient(to right, #3b0004, #7b000f);
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    max-width: 1200px;
    margin: 40px auto;
  }

  .highlight-box h5 {
    color: #fff;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
  }

  .highlight-box a {
    display: inline-block;
    background: #fff;
    color: #b00012;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .highlight-box button,
  .highlight-box a:hover {
    background: #b00012;
    color: #fff;
  }


  /* FAQ Accordion */
  .accordion h2 {
    font-size: 20px;
    color: #000;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0px;
  }

  .accordion-button {
    font-weight: 600;
  }

  .accordion-button:not(.collapsed) {
    color: #dc3545;
    background-color: #fff5f5;
  }

  /* Responsive */
  @media (max-width: 991px) {
    .guide-nav {
      position: static;
      display: flex;
      overflow-x: auto;
      border: none;
      box-shadow: none;
      padding: 0.5rem;
    }

    .guide-nav .nav-link {
      border-left: none;
      border-bottom: 3px solid transparent;
      white-space: nowrap;
      margin-right: 1rem;
    }

    .guide-nav .nav-link.active {
      border-bottom: 3px solid #dc3545;
      background: transparent;
    }
  }

  #Salesforce-Data-Recovery td {
    font-size: clamp(0.9rem, 1vw, 1rem);
  }

  .guide-details ul li {
    padding: 3px 0;
  }

  /*====================== 404 page =======================*/
  .page_404 {
    padding: 40px 0;
    background: #fff;
  }

  .page_404 img {
    width: 100%;
  }

  .four_zero_four_bg {
    background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
    height: 400px;
    background-position: center;
  }

  .four_zero_four_bg h1 {
    font-size: 80px;
  }

  .four_zero_four_bg h3 {
    font-size: 80px;
  }

  .link_404 {
    color: #fff !important;
    padding: 10px 20px;
    background: #39ac31;
    margin: 20px 0;
    display: inline-block;
  }

  .contant_box_404 {
    margin-top: -50px;
  }

  /* ========= Footer =================== */

  footer {
    position: relative;
  }

  .MuiInputBase-input {
    font-family: 'Poppins', sans-serif !important;
  }


  /* ======== Company Policy Section =========== */

  .company-policy-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 0px 8%;
    background: linear-gradient(90deg, #b30000 0%, #0d0d0d 100%);
    color: #fff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    justify-content: center;
    margin-top: 110px;
  }

  .company-policy-banner::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("images/Contact/banner_bg.png") no-repeat right/contain;
    z-index: 1;
    opacity: 0.7;
  }

  .company-policy-banner h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    align-content: center;
    text-align: center;
    text-transform: capitalize;
  }

  .company-data {
    max-width: 1340px;
    margin: 0 auto;
    padding: 40px 40px;
    align-items: flex-start;
  }

  .company-data h4 {
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: 500;
  }

  .company-data>p {
    font-size: clamp(10px, 1vw, 15px);
    line-height: 1.5rem;
  }

  .company-data p>span {
    font-weight: 600;
  }

  .company-data ul>li {
    padding: 2px 0;
    line-height: 25px;
  }

  .company-detail h6 {
    font-weight: 500;
  }

  .company-data p>a,
  .company-detail h6>a {
    text-decoration: none;
    color: #f12e4a;
  }

  .company-data p>a:hover,
  .company-detail h6>a:hover {
    font-weight: 600;
    transition: all 0.4s ease-out;
  }