
    .card-img-top {
    transition: transform 0.3s ease;
}
.card:hover .card-img-top {
    transform: scale(1.05);
}
.whatsapp_float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
     text-decoration: none;
}

.whatsapp_float:hover {
    transform: scale(1.1);
    color: white;
   
}


.nav-item a{
  font-size: 20px;
}

/* .product-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s;
} */
/* #abouttext{
 
  line-height: 1.6; 
  font-size: 20px; 
  
  margin-bottom: 16px; 
} */

.card-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: calc();
    transition: transform 0.4s ease;
}

.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5); 
    color: #fff;
    text-align: center;
    padding: 5px 0;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-card i {
    color: #007bff; /* Optional: icon color */
}

.service-card h4 {
    font-weight: 600;
}

.service-card p {
    color: #555;
}
.contact-card {
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.brand-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.brand-slider {
    display: flex;
    gap: 20px;
    animation: slide 20s linear infinite;
}

.brand-card-wrapper {
    flex: 0 0 auto; /* keep cards inline */
}

/* Hover Effect */
.brand-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.brand-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

/* Slide Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* Hover effect on cards */
.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
