.banner{
    width: 100%;
    aspect-ratio:16/5; 
    max-height:300px;
    overflow:hidden;
}
.banner img{
    display:block;
    width:100%;
    height: 100%;
    object-fit:cover;
}

.contentWrap {
    padding:20px 50px;
    display: flex; 
    gap: 40px; 
    margin-top: 10px; 
}

.contentWrap>div{
    flex:1;
}



.productItem{
}
.productItem h1{
    font-size:2.3em;
    margin: 0px 0 1.5rem 0;
}
.productItem h2{
    color:var(--primary);
    font-size:1.5em;
    margin: 0px 0 0px 0;
}
.productItem h3{
    font-size: 1.2em;
    margin: 6px 0;
}





.product-gallery{
    display:flex;
    background-color: #e9e9e9ff;
    padding: 20px;
    margin: 30px 0;
}
.product-gallery .thum{
    aspect-ratio:4/3;
    flex:1 0 calc(20% - 22px);
    border:1px solid #f1a63cff;
    border-radius:12px;
    margin:10px 10px;
    overflow:hidden;
    background-color: #fff;
}
.product-gallery .thum img{
    display:block;
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition:0.5s transform;
}
.product-gallery .thum img:hover{
    cursor: pointer;
    transform:scale(1.3);
}


.features h2,
.apps h2,
.spec h2{
    width: 100%;
    background-color: #fbecc6;
    padding:20px 20px;
    text-align: center;
    margin: 80px 0 20px 0;
}

.apps h3{
    width: 100%;
    text-align: center;
    margin: 0 0 20px 0;
}


.features div{
    margin:0px 20px;
    flex:0 0 calc(50% - 100px);
    padding:16px;
}



.features div h3,
.apps div h3{
    margin-left: 20px;
    position: relative;
    text-align: left;
}
.features div h3::before,
.apps div h3::before{
    content:"";
    display: inline-block;
    width: 0px;
    height: 0px;
    border-top:.5em solid transparent;
    border-right:.5em solid transparent;
    border-bottom:.5em solid transparent;
    border-left:0.5em solid var(--primary);
    position: absolute;
    left:-20px;
    top:6px;
}

.features div p{
    padding-left:18px;
    text-align:justify;
    
}

.apps ul.useCase{
    list-style-type: disc;
    margin-left:38px;
    margin-bottom: 12px;
}


.spec{
    display:flex;
    flex-wrap:wrap;
    margin-bottom: 0;
    /* justify-content:space-around; */
}



.spec table{
    margin: 0 20px 0px 20px;
    flex:1 0 calc(50% - 40px);
    padding:16px;
}


.spec table tr{
    border-bottom: 1px solid #ccc;
}


.spec table tr.spec-title{
    background-color: rgb(255, 195, 28);
    border:none
}

.spec table th,
.spec table td{
    padding:10px;
}
.spec table th{
    text-align:left;
}

.bottomWrap{
    margin-top: 60px;
}

.bottomWrap .content{
    padding: 30px;
    display:flex;
    flex-direction:column;
    flex-wrap:wrap;
    gap:20px;
    justify-content: center;
}
.bottomWrap .content div{
    flex:1 1 calc(50% - 60px);
    padding:30px;
    border-radius:12px;
}

.valueCard{
    background: #ffffff;
    border-radius: 18px;
    padding: clamp(20px, 3vw, 32px);
    border: 1px solid rgba(6,43,106,.10);
    box-shadow: 0 10px 28px rgba(6,43,106,.08);
    margin-bottom: 18px;
}
.valueCard h3{
    color: var(--primary);
    background: rgba(255,106,0,.12);
    text-align: center;
    font-family: var(--sans);
    font-weight: 900;
    font-size:clamp(18px, 2.5vw, 36px);
    padding: 16px;
    border-radius: 15px;
}
.valueCard p{
    font-size: 18px;
    margin-bottom: 12px;
    padding: 0 16px;
    text-align: justify;
}
.valueCard strong{
    color: var(--primary);
}

.cta{
    background: linear-gradient(135deg, #0059b3, #003d80);
    padding: clamp(26px, 4vw, 46px);
    text-align: center;
}
.cta h3,
.cta p,
.cta a{
    color: #fff;
}
.cta h3{
    font-size:1.8em;
    margin-bottom: 16px;
}
.cta p{
    /* text-align: left; */
}
.cta a{
    background-color: #fff;
    padding: 10px 30px;
    display: inline-block;
    margin: 20px 0;
    border-radius: 999px;
    color:var(--primary);
}
.cta a:hover{
    background-color: var(--primary);
    color:#fff
}

@media screen and (max-width: 768px){
    .breadcrumb{
        font-size: 0.9em;
    }
    .contentWrap{
        flex-direction:column;
        gap:0;
        margin-top: 0;
    }


    .product-gallery{
        flex-wrap:wrap;
    }
    .product-gallery .thum:first-of-type{
        flex:0 0 calc(100% - 12px);
    }
    .product-gallery .thum{
        margin:5px;
        flex:1 0 calc(25% - 12px);
    }


    .spec table{
        margin: 0 12px 150px 12px;
        flex:1 0 calc(50% - 24px);
        padding:16px;
    }


    .bottomWrap .content{
        flex-direction: column;
        gap:40px;
    }

}







.table-wrap {
  margin: 40px;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.custom-table th {
  background: #f5f7f6;
  color: #333;
  text-align: left;
  font-weight: 600;
  padding: 14px 16px;
  font-size: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.custom-table td {
  padding: 16px;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

.custom-table strong {
  display: block;
  color: #111;
  margin-bottom: 4px;
  font-weight: 600;
}

.custom-table tr:hover {
  background: #fafafa;
  transition: 0.2s;
}


.custom-table td:first-child {
  font-weight: 600;
  color: #222;
  white-space: wrap;
}


@media (max-width: 768px) {
  .custom-table th,
  .custom-table td {
    padding: 12px;
    font-size: 13px;
  }
}
