 :root {
      --primary-dark: #0f172af2;
      --primary-red: #e50914;
    }

    *{
      padding: 0;
      margin: 0;
    }
  .icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
  }

  .quality-box {
    transition: all 0.3s ease;
  }

  .quality-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .text-primary-red {
    color: var(--primary-red);
  }

  .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
  }

  .about-us-section p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  ul li {
    font-size: 15px;
    color: #333;
  }

  @media (max-width: 767.98px) {
    .section-title {
      font-size: 1.6rem;
    }
  }


.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.feature-box {
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.6rem;
  }
}


  .carousel-indicators [data-bs-target] {
    background-color: #e50914 ;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  .carousel-indicators .active {
    opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: #e50914;
    border-radius: 50%;
    padding: 10px;
    background-size: 50% 50%;
    background-position: center;
    background-repeat: no-repeat;  
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
    display: none;
  }

  @media (max-width: 768px) {

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      padding: 8px;
      width: 38px;
      height: 38px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 12%;
    }
  }


  /*testimonial start*/

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.testimonial-box {
  transition: all 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn-view-all {
  background-color: var(--primary-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 14px rgba(229, 9, 20, 0.3);
}

.btn-view-all:hover {
  background-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/*testimonial end*/


/*blogs start*/

  .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
  }

  .blog-card {
    transition: transform 0.3s ease;
    background: #fff;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .btn-blog {
    background-color: var(--primary-red);
    color: #fff;
    padding: 8px 18px;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    transition: 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }

  .btn-blog:hover {
    background-color: var(--primary-dark);
    color: #fff;
  }

  .btn-view-all {
    background-color: var(--primary-red);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(229, 9, 20, 0.3);
  }

  .btn-view-all:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: #fff;
  }

  .blog-date {
    font-size: 13px;
    color: #6c757d;
  }

  .blog-date i {
    color: var(--primary-red);
  }

/*blogs end*/

/*certificate start*/
:root {
  --primary-dark: #0f172af2;
  --primary-red: #e50914;
}

.text-primary-dark {
  color: var(--primary-dark);
}

.carousel-control-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

.carousel-control-icon:hover {
  background-color: var(--primary-red);
}


/*certificate end*/

/*contact us start*/
form input:focus,
form textarea:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.15rem rgba(229, 9, 20, 0.15);
}


/*contact us end*/
/*aluminium foil styles*/
  .product-card {
    background: #fff;
    /*border-radius: 24px;*/
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: 0.4s ease;
    border-left: 2px solid var(--primary-red);
  }

  .product-card:hover {
    transform: scale(1.01);
  }

  .product-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 340px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .badge-custom {
    background-color: rgba(229, 9, 20, 0.1);
    color: var(--primary-red);
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
  }

  .product-title {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.6rem;
  }

  .product-price {
    color: var(--primary-red);
    font-size: 1.25rem;
    font-weight: 600;
  }

  .spec-table th {
    background: var(--light-gray);
    color: #000;
    font-weight: 600;
    font-size: 14px;
    width: 25%;
  }

  .spec-table td {
    font-size: 14px;
    color: #333;
  }

  .btn-inquiry {
    background-color: var(--primary-red);
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 6px 16px rgba(229, 9, 20, 0.3);
  }

  .btn-inquiry:hover {
    background-color: #c30811;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .product-title {
      font-size: 1.3rem;
    }
    .product-price {
      font-size: 1.1rem;
    }
  }

  .foil-section {
    background-color: var(--light-gray);
     background: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    padding: 50px 40px;
    transition: all 0.4s ease;
  }


  .foil-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    border-left: 6px solid var(--primary-red);
    padding-left: 15px;
  }

  .foil-desc {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 30px;
  }

  .foil-feature-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 15px;
  }

  .foil-features ul {
    list-style: none;
    padding-left: 0;
  }

  .foil-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    color: #333;
    font-size: 0.97rem;
  }

  .foil-features li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary-red);
    font-size: 1rem;
  }

  @media (max-width: 767.98px) {
    .foil-box {
      padding: 30px 20px;
    }
    .foil-title {
      font-size: 1.6rem;
    }
  }

  .breadcrumb-section {
    background-color: var(--light-gray);
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
  }

  .breadcrumb {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .breadcrumb-item a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: 0.3s;
  }

  .breadcrumb-item a:hover {
    color: var(--primary-red);
  }

  .breadcrumb-item.active {
    color: var(--primary-red);
    font-weight: 600;
  }

/*aluminium foil styles*/