 .product-section {
            padding: 50px 0;
        }

        .product-gallery {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
        }

        .main-image {
            width: 100%;
            border: 1px solid #eee;
            border-radius: 10px;
            overflow: hidden;
        }

        .main-image img {
            width: 100%;
        }

        .thumbs {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .thumbs img {
            width: 80px;
            border: 1px solid #ddd;
            border-radius: 6px;
            cursor: pointer;
            transition: .3s;
        }

        .thumbs img:hover {
            border-color: #0d3b78;
        }

        .product-info {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
        }

        .stock {
            background: #e8f7e8;
            color: green;
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 13px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 31px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 15px;
        }

        .feature-list {
            padding-left: 0;
            list-style: none;
        }

        .feature-list li {
            margin-bottom: 10px;
        }

        .spec-table {
            width: 100%;
            margin-top: 20px;
            font-size: 13px;
        }

        .spec-table td {
            border: 1px solid #ddd;
            padding: 7px;
        }

        .btn-custom {
            background: #0d3b78;
            color: #fff;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: .3s;
        }

        .btn-custom:hover {
            background: #082952;
            color: #fff;
        }

        .quote-box {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
        }

        .quote-box input,
        .quote-box textarea {
            width: 100%;
            margin-bottom: 15px;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .tabs-section {
            margin-top: 50px;
        }

        .nav-tabs .nav-link {
            color: #0d3b78;
            font-weight: 600;
        }

        .tab-content {
            background: #fff;
            padding: 30px;
            border-radius: 0 0 10px 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
        }

        .related-products {
            margin-top: 60px;
        }

        .related-card {
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0, 0, 0, .06);
            transition: .3s;
        }

        .related-card:hover {
            transform: translateY(-5px);
        }

        .related-card img {
            width: 100%;
            height: 180px;
            object-fit: contain;
        }

        .footer-cta {
            margin-top: 70px;
            background: #0d3b78;
            color: #fff;
            padding: 40px;
            border-radius: 10px;
        }

        @media(max-width:991px) {
            .product-title {
                font-size: 28px;
            }

            .quote-box {
                margin-top: 30px;
            }
        }

        @media(max-width:576px) {
            .thumbs {
                flex-wrap: wrap;
            }

            .thumbs img {
                width: 60px;
            }

            .product-title {
                font-size: 24px;
            }
        }
















        .product-gallery{
background:#fff;
padding:20px;
border-radius:10px;
position:relative;
}

.main-image{
position:relative;
border:1px solid #ddd;
border-radius:10px;
overflow:hidden;
}

.main-image img{
width:100%;
height:450px;
object-fit:contain;
display:block;
}

/* THUMBNAILS */

.thumbs{
display:flex;
gap:10px;
margin-top:15px;
flex-wrap:wrap;
}

.thumbs img{
width:80px;
height:80px;
object-fit:contain;
border:2px solid #ddd;
border-radius:6px;
cursor:pointer;
padding:5px;
transition:.3s;
background:#fff;
}

.thumbs img:hover{
border-color:#0d3b78;
}

.active-thumb{
border-color:#0d3b78 !important;
}

/* ARROWS */

.gallery-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;
border:none;
background:rgba(0,0,0,0.6);
color:#fff;
font-size:24px;
cursor:pointer;
z-index:10;
border-radius:50%;
transition:.3s;
}

.gallery-arrow:hover{
background:#0d3b78;
}

.left-arrow{
left:15px;
}

.right-arrow{
right:15px;
}

/* MOBILE */

@media(max-width:576px){

.main-image img{
height:300px;
}

.thumbs img{
width:60px;
height:60px;
}

.gallery-arrow{
width:35px;
height:35px;
font-size:18px;
}

}



.get-quote-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
background:linear-gradient(180deg,#39c52f,#2ea524);
color:#fff;
padding:12px 22px;
font-size:15px;
font-weight:700;
text-decoration:none;
border-radius:5px;
border:2px solid #fff;
box-shadow:0 4px 10px rgba(0,0,0,0.15);
transition:0.3s ease;
text-transform:uppercase;
}

.get-quote-btn i{
font-size:18px;
}

.get-quote-btn:hover{
transform:translateY(-3px);
background:linear-gradient(180deg,#42d737,#28981f);
color:#fff;
}






















/* THUMB WRAPPER */

.thumb-wrapper{
position:relative;
display:flex;
align-items:center;
justify-content:center;
margin-top:20px;
padding:0 40px;
}


/* 3 thumbnails only */

.thumbs{
display:flex;
gap:10px;

width:290px; /* 3 images */

overflow:hidden;

scroll-behavior:smooth;

white-space:nowrap;
}


/* thumbnail */

.thumb{

width:90px;
min-width:90px;

height:90px;

padding:5px;

border:1px solid #ddd;

border-radius:6px;

background:#fff;

cursor:pointer;

object-fit:contain;

flex-shrink:0;

transition:.3s;
}

.thumb:hover{

border-color:#0b4ea2;

}

.active-thumb{

border:2px solid #0b4ea2;

}


/* thumbnail arrows */

.thumb-arrow{

position:absolute;

top:50%;

transform:translateY(-50%);

width:38px;

height:38px;

border:none;

border-radius:50%;

background:#666;

color:#fff;

cursor:pointer;

z-index:999;

font-size:18px;

}

.thumb-prev{

left:0;

}

.thumb-next{

right:0;

}


.related-card2 img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  margin-bottom: 10px;
}