.index-products {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    padding: 5px;
}

/* IMAGE CONTAINER */
.index-products-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */
.index-products-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* PRODUCT NAME CONTAINER */
.index-products-name {
    text-align: center;
    padding: 15px 5px;
}

/* PRODUCT NAME LINK */
.index-products-name a {
    font-size: 18px;
    font-weight: 500;
    color: #2B2A29;
    text-decoration: none;
    position: relative;
    transition: color 0.4s ease;
}

/* ANIMATED UNDERLINE */
.index-products-name a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #E53034;
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

/* BORDER ANIMATION */
.index-products-img::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;

    background: linear-gradient(
        120deg,
        transparent,
        #E53034,
        transparent,
        #E53034,
        transparent
    );

    background-size: 300% 300%;

    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.3s ease;
}

/* HOVER EFFECTS */
.index-products:hover img {
    transform: scale(1.08);
}

.index-products:hover .index-products-img::before {
    opacity: 1;
    animation: borderMove 2s linear infinite;
}

.index-products:hover .index-products-name a {
    color: #E53034;
}

.index-products:hover .index-products-name a::after {
    width: 70%;
}

/* ANIMATION KEYFRAME */
@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 300% 50%;
    }
}



.bg_move h2 {

  font-weight: 700;

  background: linear-gradient(
    90deg,
    #2B2A29 0%,
    #2B2A29 30%,
    #E53034 45%,
    #E53034 55%,
    #2B2A29 70%,
    #2B2A29 100%
  );

  background-size: 600% 100%;
  background-position: 0% 50%;

  animation: smoothFlow linear infinite;

  animation-duration: 12s;

  background-clip: text;
  -webkit-background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

@keyframes smoothFlow {

  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 600% 50%;
  }

}

.product-inner-details h1{
    font-size: 22px;
    color: #E53034;
}

/* button container */
.product-btn-group{
    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;
}
.product-btn-group a:hover{
    color: #fff;
}
/* common icon circle */
.icon-circle{
    width:40px;
    height:40px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* WHATSAPP BUTTON */
.inquiry-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#1e8e7e;
    color:#fff;
    padding:7px 28px 7px 7px;
    border-radius:50px;
    font-size:18px;
    text-decoration:none;
}

.inquiry-btn i{
    color:#25D366;
    animation:iconPulse 1.5s infinite;
}

/* PDF BUTTON */
.brochure-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#E53034;
    color:#fff;
    padding:7px 28px 7px 7px;
    border-radius:50px;
    font-size:18px;
    text-decoration:none;
}

.brochure-btn i{
    color:#E53034;
    animation:iconPulse 1.5s infinite;
}

/* icon animation */
@keyframes iconPulse{

    0%{transform:scale(1);}
    50%{transform:scale(1.25);}
    100%{transform:scale(1);}

}

/* MOBILE VIEW */
@media (max-width:768px){

.product-btn-group{
    flex-direction:column;
    align-items:flex-start;
}

.inquiry-btn,
.brochure-btn{
    width:100%;
}

}

/*black 2B2A29
red E53034*/