.logo-item{
    height: 120px;              /* same height for all logos */
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
}

.logo-item img{
    max-height: 80px;           /* adjust as needed */
    width: auto;
}

.footer-color1{
    background-color: #202020 !important; /* light background */
}

.footer-logo{
    margin-top: -20px;
    margin-bottom: 18px;
}

.footer-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0.8;
    }
    100% {
        width: 24px;
        height: 24px;
        opacity: 0;
    }
}

.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ead1ad;
    border-radius: 25px;
    overflow: hidden;
    min-height: 160px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.service-image {
    width: 420px;
    height: 160px;
    overflow: hidden;
    border-radius: 25px 120px 120px 25px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    flex: 1;
    padding: 0 40px;
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

.service-arrow {
    width: 60px;
    height: 60px;
    margin-right: 40px;
    border-radius: 50%;
    background: #6a3209;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.custom-section-shape-background{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.product-image-main{
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-main img{
    max-height: 400px;
    object-fit: contain;
}

.gallery-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,.15);
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.gallery-arrow:hover{
    background: #008b9f;
    color: white;
}

.prev-btn{
    left: 15px;
}

.next-btn{
    right: 15px;
}

.product-thumbs{
    display: flex;
    gap: 15px;
}

.thumb{
    width: 100px;
    height: 100px;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    background: #fff;
}

.thumb.active{
    border-color: #008b9f;
}

.thumb{
    transition: all .3s ease;
}

.thumb:hover{
    transform: translateY(-5px);
    border-color: #008b9f;
    box-shadow: 0 8px 20px rgba(0,139,159,.15);
}

.thumb.active{
    border-color: #008b9f;
    box-shadow: 0 8px 20px rgba(0,139,159,.25);
}

#mainProductImage{
    transition: all .4s ease;
}

.image-changing{
    opacity: 0;
    transform: translateX(30px);
}

.section-title h2{
    font-size: 36px;
    font-weight: 700;
    color: #1d1d1d;
}

.section-title p{
    color: #666;
}

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    height:100%;
    border:1px solid #e5e5e5;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
    border-color:#008b9f;
    box-shadow:0 10px 30px rgba(0,139,159,.15);
}

.feature-card i{
    font-size:40px;
    color:#008b9f;
    margin-bottom:20px;
}

.feature-card h5{
    font-weight:600;
    margin-bottom:10px;
}

.specification-table{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.specification-table th{
    width:35%;
    background:#008b9f;
    color:#fff;
    font-weight:600;
    padding:16px 20px;
}

.specification-table td{
    padding:16px 20px;
}

.specification-table tr:nth-child(even) td{
    background:#f8f9fa;
}


