﻿.product-rate{
    text-align: center;
    color: green;
    font-weight: bold;
    font-size:16px; 
}

.button_sys{
  margin: 0;
  text-align: center;
  padding: 10px; 
 }

 .categories-img img{
  object-fit: contain;
  width:100%; 
  max-height: 100%;
 }

 .product-rate>h3{
  color:#333; 
  font-size:20px; 
 }

 .price{
  color:#ff6700; 
  font-size:30px;
 }

.addcolor {
  background-color: #ffa500;
  color: #000;
  border: 0;
  font-weight: bold;
}

.enroll-sucess{
    
    text-align:center;
    font-weight:500;
    line-height:27px; 
    padding-bottom:20px; 
}




/* new css for shop page product details 01-07-2025*/ 
.categories-section {
    padding: 0px;
    background-color: #f9f9f9;
}

.title-section .title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    /*margin-bottom: 40px;*/
    color: #333;
    position: relative;
}

.categories-inner .categories-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /*margin-bottom: 30px;*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.categories-inner .categories-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.categories-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.categories-content {
    padding: 0px 10px 20px;
}

.categories-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.categories-content .product-rate {
    font-size: 25px;
    color: #00919a;
    font-weight: 600;
   /* margin-bottom: 15px; */
}

.categories-content .btn {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 8px;
    background-color: #005054;
    border: none;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.categories-content .btn:hover {
    background-color: #5eb8ba;
}

@media (max-width: 767px) {
    .categories-img img {
        height: 160px;
    }

    .categories-content h4 {
        font-size: 18px;
    }

    .categories-content .product-rate {
        font-size: 16px;
    }
}



/*service section */
#service-page {
    padding: 60px; 
    background: #f9f9f9;
}

#service-page .box {
    height:250px; 
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

#service-page .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#service-page .box-icon {
    margin-bottom: 20px;
}

#service-page .box-icon img {
    width: 80px;
    height: auto;
    transition: transform 0.3s ease;
}

#service-page .box:hover .box-icon img {
    transform: scale(1.1);
}

#service-page h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

#service-page p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}