.sidebar {
    flex: 0 0 280px;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: fit-content;
    top: 100px;
}

.sidebar h3 {
    color: #00112e;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2091cf;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    color: #00112e;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.filter-option {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-option:hover {
    color: #2091cf;
    padding-left: 5px;
}

.filter-option .arrow {
    margin-right: 10px;
    color: #2091cf;
    font-weight: bold;
    font-size: 16px;
}

/* Products Grid */
.products-section {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.results-count {
    color: #666;
    font-size: 16px;
}

.sort-options select {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    background: #ffffff;
    color: #00112e;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.sort-options select:hover {
    border-color: #2091cf;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(32, 145, 207, 0.15);
}

.product-image {
    width: 100%;
    height: 250px; 
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    flex-shrink: 0; 
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2091cf;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.product-category {
    color: #2091cf;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    color: #00112e;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto; /* Push to bottom */

}

.product-link {
    background: #2091cf;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.product-link:hover {
    background: #00112e;
    color: #ffffff;
}

.product-features {
    display: flex;
    gap: 10px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2091cf;
}


.page-header .breadcrumb {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    justify-content: center !important;
}
    
.content-wrapper {
    display: flex;
    gap: 30px;
    margin: 40px auto;
}
.content-wrapper-v2 {
    margin: 40px auto;
}

.page-header {
    background: linear-gradient(135deg, #00112e 0%, #2091cf 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 15px;
}

@media (max-width: 968px) {
  .content-wrapper {
      flex-direction: column;
  }

  .sidebar {
      position: static;
  }

  .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}


/* Details Products Section */

.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

/* Image Gallery */
.image-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 500px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.main-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.zoom-icon {
    position: absolute;
    top: 0px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #2091cf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* opacity: 0; */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.zoom-icon svg {
    color: #2091cf;
    width: 22px;
    height: 22px;
}

.main-image:hover .zoom-icon {
    opacity: 1;
}

.zoom-icon:hover {
    background: #2091cf;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(32, 145, 207, 0.4);
}

.zoom-icon:hover svg {
    color: white;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.thumbnail:hover {
    border-color: #2091cf;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(32, 145, 207, 0.2);
}

.thumbnail.active {
    border-color: #2091cf;
    box-shadow: 0 2px 8px rgba(32, 145, 207, 0.3);
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-image {
        height: 350px;
        padding: 15px;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 300px;
        padding: 10px;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}
/* Product Info */
.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}



.product-reference {
    color: #888;
    font-size: 14px;
    margin-top: -10px;
}



.product-section .product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 15px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #2091cf;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.breadcrumb-section {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: #ffffff;
    padding: 15px 0;
    margin-top: 1px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-section .breadcrumb-link {
    max-width: 1400px;
    padding: 0 20px;
    font-size: 14px;
    color: #666;
}

/* Tabs Section */
.tabs-section {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.tabs-header {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    color: #2091cf;
}

.tab-button.active {
    color: #2091cf;
    border-bottom-color: #2091cf;
    background: #ffffff;
}

.tab-content {
    padding: 40px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Technical Specifications */
.spec-table {
    width: 100%;
    border-collapse: collapse;
}

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

.spec-table td {
    padding: 15px;
    font-size: 15px;
}

.spec-table td:first-child {
    font-weight: 600;
    color: #00112e;
    width: 35%;
}

.spec-table td:last-child {
    color: #555;
}

/* Documents Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.document-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    cursor: pointer;
}

.document-card:hover {
    border-color: #2091cf;
    box-shadow: 0 5px 15px rgba(32, 145, 207, 0.1);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: #2091cf;
    color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.document-title {
    font-size: 16px;
    font-weight: 600;
    color: #00112e;
    margin-bottom: 8px;
}

.document-size {
    font-size: 13px;
    color: #888;
}


/* ============================================
   RESPONSIVE STYLES - MOBILE & TABLET
   ============================================ */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    /* Page Header */
    .page-header h1 {
        font-size: 36px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    /* Product Section Details */
    .product-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    /* .main-image {
        height: 400px;
    } */

    /* Tabs */
    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-button {
        flex: 1 1 auto;
        min-width: 150px;
    }
}

@media (max-width: 768px) {

    /* Breadcrumb */
    .breadcrumb-section .breadcrumb-link {
        padding: 0 15px;
        font-size: 13px;
    }

    /* Page Header */
    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .page-header .breadcrumb {
        font-size: 13px;
    }

    /* Content Wrapper */
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
        margin: 20px auto;
    }

    .content-wrapper-v2 {
        margin: 20px auto;
    }

    /* Sidebar */
    .sidebar {
        position: static;
        width: 100%;
        flex: none;
        padding: 20px;
        margin-bottom: 20px;
    }

    .sidebar h3 {
        font-size: 18px;
    }

    /* Products Section */
    .products-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .results-count {
        font-size: 15px;
        text-align: center;
    }

    .sort-options {
        width: 100%;
    }

    .sort-options select {
        width: 100%;
        padding: 12px 15px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    /* Product Card */
    .product-card {
        border-radius: 8px;
    }

    /* .product-image {
        height: 250px;
    } */

    .product-info {
        padding: 15px;
    }

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

    .product-description {
        font-size: 13px;
    }

    /* Product Details Section */
    .product-section {
        padding: 20px;
        gap: 25px;
        border-radius: 10px;
    }

    .image-gallery {
        gap: 15px;
    }

   /*  .main-image {
        height: 370px;
    } */

    .thumbnail-images {
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }

    .thumbnail {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }

    /* Product Info */
    .product-info-section {
        gap: 20px;
    }

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

    .product-category,
    .product-reference {
        font-size: 13px;
    }

    .product-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .product-features h3 {
        font-size: 18px !important;
    }

    .feature-item {
        font-size: 14px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    /* Tabs */
    .tabs-section {
        border-radius: 10px;
    }

    .tabs-header {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
        border-left: 3px solid transparent;
    }

    .tab-button.active {
        border-bottom-color: transparent;
        border-left-color: #2091cf;
    }

    .tab-content {
        padding: 25px 20px;
    }

    .tab-pane h2 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .tab-pane h3 {
        font-size: 18px !important;
    }

    /* Spec Table */
    .spec-table td {
        padding: 12px 10px;
        font-size: 14px;
        display: block;
        width: 100%;
    }

    .spec-table td:first-child {
        width: 100%;
        padding-bottom: 5px;
        border-bottom: none;
    }

    .spec-table td:last-child {
        padding-top: 5px;
        padding-bottom: 12px;
        font-weight: 500;
    }

    .spec-table tr {
        display: block;
        margin-bottom: 10px;
        border-bottom: 2px solid #e0e0e0;
    }

    /* Documents Grid */
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .document-card {
        padding: 20px;
    }

    /* Videos Grid */
    .videos-grid {
        grid-template-columns: 1fr !important;
    }

    /* Related Products */
    .related-section {
        margin-top: 40px !important;
    }

    .section-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }

    .related-products {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
        gap: 20px !important;
    }

    .related-card {
        border-radius: 8px !important;
    }

    .related-image {
        height: 180px !important;
    }

    .related-info {
        padding: 15px !important;
    }

    .related-title {
        font-size: 16px !important;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .header-style-1 .pbmit-main-header-area .container-fluid, .header-style-2 .pbmit-main-header-area .container-fluid {
        padding: 0 13px !important;
    }
    .email-sections{
        margin-bottom: 1rem !important;
    }
    .about-section{
        padding: 0px 0 !important;
    }
    .about-section-one{
        margin: 0 10px 29px !important;
    }
    .contact-us-left-area .pbmit-heading-subheading{
        margin-bottom: 0px;
    }
    .contact-bg-img{
        display: none !important;
    }
    .contact-form-rightbox{
        margin-top: 10px !important;
    }
    .pbmit-ihbox-style-5 .pbmit-ihbox-contents{
        margin-bottom: 0px !important;
    }
    .pbmit-ihbox-style-5 .pbmit-ihbox-headingicon {
        padding: 20px 20px 2px 20px !important ;
    }
    .contact-form-rightbox {
        padding: 30px 15px 30px 17px !important;
    }
    .contact-iframe-section {
        padding: 0px 15px 50px 15px !important;
    }
    .site-footer .pbmit-footer-big-area-wrapper .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .site-footer {
        margin: 0 5px !important;
    }
    /* Breadcrumb */
    .breadcrumb-section {
        padding: 10px 0;
    }

    .breadcrumb-section .breadcrumb-link {
        padding: 0 10px;
        font-size: 12px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    /* Page Header */
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 26px;
        margin-bottom: 8px;
        padding: 0 10px;
    }

    .page-header .breadcrumb {
        font-size: 12px;
        padding: 0 10px;
    }

    /* Content Wrapper */
    .content-wrapper,
    .content-wrapper-v2 {
        margin: 15px auto;
    }

    /* Sidebar */
    .sidebar {
        padding: 15px;
        border-radius: 8px;
    }

    .sidebar h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .filter-group h4 {
        font-size: 14px;
    }

    .filter-option {
        padding: 6px 0;
        font-size: 14px;
    }

    /* Products Header */
    .products-header {
        padding: 12px 15px;
        border-radius: 8px;
    }

    .results-count {
        font-size: 14px;
    }

    .sort-options select {
        font-size: 13px;
        padding: 10px 12px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Product Card */
    .product-card {
        border-radius: 8px;
    }

    /* .product-image {
        height: 220px;
    } */

    .product-badge {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 11px;
    }

    .product-info {
        padding: 12px;
    }

    .product-category {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .product-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .product-description {
        font-size: 13px;
        margin-bottom: 12px;
        -webkit-line-clamp: 3;
    }

    .product-footer {
        padding-top: 12px;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .product-link {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
        font-size: 13px;
    }

    .product-features {
        justify-content: center;
        gap: 8px;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    /* Product Details Section */
    .product-section {
        padding: 15px;
        gap: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .image-gallery {
        gap: 12px;
    }

    /* .main-image {
        height: 370px;
        border-radius: 8px;
    } */

    .thumbnail-images {
        gap: 8px;
    }

    .thumbnail {
        width: 70px;
        height: 70px;
        border-radius: 6px;
        border-width: 2px;
    }

    /* Product Info */
    .product-info-section {
        gap: 15px;
    }

    .product-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .product-category,
    .product-reference {
        font-size: 12px;
    }

    .product-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .product-features h3 {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .feature-item {
        font-size: 13px;
        gap: 10px;
    }

    .feature-icon {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .action-buttons {
        gap: 8px;
        margin-top: 15px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 13px;
        border-radius: 6px;
    }

    /* Tabs */
    .tabs-section {
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .tab-button {
        padding: 12px 15px;
        font-size: 14px;
    }

    .tab-content {
        padding: 20px 15px;
    }

    .tab-pane h2 {
        font-size: 20px !important;
        margin-bottom: 18px !important;
    }

    .tab-pane h3 {
        font-size: 16px !important;
        margin: 20px 0 12px 0 !important;
    }

    .tab-pane p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    /* Spec Table */
    .spec-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .spec-table td:first-child {
        font-size: 13px;
    }

    /* Support Lists */
    .tab-pane ul li {
        padding: 6px 0 !important;
        font-size: 13px !important;
    }

    /* Documents Grid */
    .documents-grid {
        gap: 12px;
    }

    .document-card {
        padding: 18px;
    }

    .document-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .document-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .document-size {
        font-size: 12px;
    }

    .document-card .btn {
        margin-top: 12px !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
    }

    /* Videos Grid */
    .videos-grid {
        gap: 20px !important;
    }

    .video-card {
        border-radius: 8px !important;
    }

    .video-card > div:last-child {
        padding: 12px !important;
    }

    .video-card h4 {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    .video-card a {
        font-size: 13px !important;
    }

    /* Related Products */
    .related-section {
        margin-top: 30px !important;
    }

    .section-title {
        font-size: 22px !important;
        margin-bottom: 18px !important;
    }

    .related-products {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .related-card {
        border-radius: 8px !important;
    }

    .related-image {
        height: 200px !important;
    }

    .related-info {
        padding: 12px !important;
    }

    .related-title {
        font-size: 15px !important;
        margin-bottom: 8px !important;
    }

    .related-link {
        font-size: 13px !important;
    }
}

/* Extra Small Mobile (400px and below) */
@media (max-width: 400px) {
    .page-header h1 {
        font-size: 22px;
    }

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

    /* .main-image {
        height: 370px;
    } */

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    /* .product-image {
        height: 200px;
    } */

    .tab-button {
        font-size: 13px;
        padding: 10px 12px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* Landscape Mobile (max-height: 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .product-section {
        grid-template-columns: 1fr 1fr;
    }

    .tab-content {
        max-height: 400px;
        overflow-y: auto;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets */
    .filter-option,
    .tab-button,
    .product-card,
    .thumbnail,
    .btn {
        min-height: 44px;
    }

    .filter-option {
        padding: 12px 0;
    }

    /* Remove hover effects on touch devices */
    .product-card:hover {
        transform: none;
    }

    .filter-option:hover {
        padding-left: 0;
    }

    /* Add tap highlight color */
    .tab-button,
    .btn,
    .product-link,
    .thumbnail {
        -webkit-tap-highlight-color: rgba(32, 145, 207, 0.2);
    }
}

/* Print Styles */
@media print {
    .breadcrumb-section,
    .action-buttons,
    .tabs-header,
    .related-section,
    .sidebar {
        display: none;
    }

    .product-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .tab-pane {
        display: block !important;
        page-break-inside: avoid;
    }
}



/* Contact Us CSS Begin  */


    .office-tabs {
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .office-tab {
        padding: 12px 30px;
        border: 2px solid var(--pbmit-global-color);
        background: #fff;
        color: var(--pbmit-global-color);
        border-radius: 25px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        font-size: 16px;
    }

    .office-tab:hover {
        background: var(--pbmit-global-color);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(32, 145, 207, 0.3);
    }

    .office-tab.active {
        background: var(--pbmit-global-color);
        color: #fff;
    }

    .office-content {
        display: none;
    }

    .office-content.active {
        display: block;
        animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Contact Cards */
    .pbmit-miconheading-style-5 {
        margin-bottom: 30px;
    }

    .pbmit-ihbox-style-5 {
        background: #fff;
        border-radius: 15px;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .pbmit-ihbox-style-5:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(32, 145, 207, 0.15);
    }

    .pbmit-ihbox-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .pbmit-ihbox-icon {
        order: -1;
    }

    .pbmit-ihbox-icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

  
    .pbmit-ihbox-icon-wrapper svg {
        width: 35px;
        height: 35px;
        fill: #fff;
    }

    .pbmit-element-title {
        font-size: 20px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .pbmit-heading-desc {
        font-size: 15px;
        color: #666;
        line-height: 1.8;
    }

    .pbmit-heading-desc strong {
        color: #333;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Responsive */
   /* Mobile Responsive */
        @media (max-width: 768px) {
            .office-tab {
                padding: 10px 20px;
                font-size: 14px;
            }

            .pbmit-ihbox-style-5 {
                padding: 25px 20px;
            }

            .pbmit-element-title {
                font-size: 18px;
            }

            .pbmit-heading-desc {
                font-size: 14px;
            }

            .pbmit-ihbox-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .pbmit-ihbox-icon-wrapper svg {
                width: 30px;
                height: 30px;
            }
        }

        @media (max-width: 576px) {
            .section-xl {
                padding: 40px 0;
            }

            .office-tabs {
                margin-bottom: 30px;
            }
        }


.contact-form select,
.contact-form .form-control {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    background-color: white;
}

.contact-form select:focus,
.contact-form .form-control:focus {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
    outline: none;
}

/* Style pour le textarea */
.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Espacement entre les champs */
.contact-form .row > div {
    margin-bottom: 20px;
}

.custom-file-upload {
  height: 58px; /* same as other inputs */
}




/* --- Custom File Upload (Button on Right) --- */
.custom-file-upload {
  position: relative;
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  padding: 12px 15px;
  width: 100%;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Hide default input */
.custom-file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Style for the right button */
.custom-file-upload label {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--pbmit-global-color);
  color: #fff;
  font-weight: 600;
  padding: 0 18px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Folder icon */
.custom-file-upload label i {
  font-size: 16px;
}

/* Hover effect */
.custom-file-upload label:hover {
 border-color: #00b4d8;
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
  outline: none;
}

/* Focus effect */
.custom-file-upload input[type="file"]:focus + label {
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
}

/* --- Mobile View --- */
@media (max-width: 768px) {
  .custom-file-upload {
    font-size: 14px;
    padding: 10px 12px;
  }

  .custom-file-upload label {
    padding: 0 14px;
  }

  .custom-file-upload label i {
    font-size: 14px;
  }
}

/* --- Custom Select Arrow (Black) --- */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000000' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  cursor: pointer;
  padding-right: 45px;
}

/* Focus state */
.contact-form select:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
  outline: none;
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .contact-form select {
    background-size: 16px;
    background-position: right 12px center;
    padding-right: 35px;
    font-size: 14px;
  }
}

/* Container pour le reCAPTCHA - aligné à gauche */
.recaptcha-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    background-color: transparent;
    border: none;
}

.g-recaptcha {
    display: inline-block;
}

/* Label pour Security check */
.recaptcha-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
}

/* Message d'erreur pour reCAPTCHA */
.recaptcha-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

/* Responsive pour mobile et tablette */
@media (max-width: 768px) {
    .recaptcha-container {
        justify-content: center;
    }
    
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

@media (max-width: 380px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: 0 0;
    }
}


.contact-us-left-area .contact-bg-img img {
  mix-blend-mode: luminosity;
}

.border-bottom {
  border-color: rgba(var(--pbmit-blackish-color-rgb), 0.2);
}



/**07 - Comment Form **/
.form-control{
  display: block;
  font-weight: normal;
  line-height: normal;
  border: 1px solid rgba(var(--pbmit-blackish-color-rgb), 0.15);
  background-color: transparent;
  height: 60px;
  font-size: 15px;
  padding: 10px 30px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.contact-form select,
.contact-form .form-control {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    background-color: white;
}

.contact-form select:focus,
.contact-form .form-control:focus {
    border-color: var(--pbmit-global-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 180, 216, 0.25);
    outline: none;
}

/* Style pour le textarea */
.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Espacement entre les champs */
.contact-form .row > div {
    margin-bottom: 20px;
}

.custom-file-upload {
  height: 58px; /* same as other inputs */
}

/* Style du bouton */
.pbmit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pbmit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.4);
}

.pbmit-btn:active {
    transform: translateY(0);
}

/* Responsive pour mobile et tablette */
@media (max-width: 768px) {
    .contact-form select,
    .contact-form .form-control {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .pbmit-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
}

/********** Contact Us CSS end **********/


/********** About Us CSS end **********/


.about-section-one {
    background: var(--pbmit-global-color);
    padding: 80px 0 100px 0;
    color: white;
    text-align: center;
}

.about-section-one .container {
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-section-one .pbmit-title {
    white-space: nowrap;
    color: white;
    text-align: center;
}

.about-section-one .pbmit-about-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.pbmit-cta-btn {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.pbmit-bg-color-blackish {
    background: var(--pbmit-global-color);
    padding: 80px 0;
    color: white;
}

.akatis-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.akatis-cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.akatis-button-wrapper {
    display: inline-block;
}

.akatis-button-text {
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Image wrapper - UPDATED */
.about-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.about-image-wrapper img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Removed shadow and rounded - no background */
    box-shadow: none;
    border-radius: 0;
}

.about-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* Section Pourquoi Choisir */
.why-choose-section {
    padding: 80px 0;
    background-color: #fff;
}

.atout-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #e9ecef;
}

.atout-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #1e73be;
}

.atout-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--pbmit-global-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.atout-card:hover .atout-icon {
    transform: scale(1.1) rotate(5deg);
}

.atout-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.atout-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.atout-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.pbmit-subtitle {
    color: #1e73be;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pbmit-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.pbmit-about-description {
  margin-left: 150px;
}

/* Keep title on one line for desktop */
.about-section-one .pbmit-title {
    white-space: nowrap;
}

.pbmit-bg-color-light {
    background-color: #f8f9fa;
}

.pbmit-bg-color-white {
    background-color: #ffffff;
}

@media (max-width: 1022px) {
    .about-section-one {
        padding: 60px 0 80px 0;
    }
    
    .about-section-one .pbmit-title {
        white-space: normal;
        font-size: 32px;
        line-height: 1.3;
    }
    
    .about-section-one  {
        font-size: 15px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .site-header .site-branding img {
        max-height: 60px !important;
    }
    .about-section, .why-choose-section {
        padding: 60px 0;
    }

    .pbmit-title {
        font-size: 32px;
    }

    .about-description p {
        font-size: 15px;
    }
    
    .about-image-wrapper img {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .pbmit-bg-color-blackish {
        padding: 60px 0;
    }
    
    .pbmit-title {
        font-size: 28px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .pbmit-about-description p {
        font-size: 15px;
    }
    
    .about-image-wrapper img {
        max-width: 250px;
    }
    
    /* Fix CTA section mobile view */
    .about-section-one .pbmit-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .about-section-one .pbmit-about-description p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .akatis-cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/********** About Us CSS end **********/


.markets-section {
	padding: 80px 0;
	background-color: var(--pbmit-light-color);
	position: relative;
	z-index: 1;
}

.markets-section::after {
	content: '';
	display: block;
	clear: both;
}

.markets-heading {
	margin-bottom: 50px;
}

.markets-main-title {
	font-size: 42px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.markets-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--pbmit-global-color);
	border-radius: 2px;
}

.markets-subtitle {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	max-width: 800px;
	margin: 20px auto 0;
}

.market-card {
	background: #ffffff;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.market-card:hover {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	transform: translateY(-8px);
}

.market-card-header {
	background: linear-gradient(135deg, var(--pbmit-global-color) 0%, var(--pbmit-global-color) 100%);
	padding: 25px 30px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.market-badge {
	background: #ffffff;
	color: var(--pbmit-global-color);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.market-card-title {
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	margin: 0;
}

.market-card-body {
	padding: 30px;
	flex-grow: 1;
}

.market-card-body p {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
	margin: 0;
}

.market-card-full {
	border: 2px solid var(--pbmit-global-color);
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.advantage-item {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
}

.advantage-item strong {
	color: var(--pbmit-global-color);
	font-weight: 600;
}

@media (max-width: 768px) {
	.markets-main-title {
		font-size: 32px;
	}

	.market-card-title {
		font-size: 18px;
	}

	.market-badge {
		width: 45px;
		height: 45px;
		font-size: 16px;
	}

	.market-card-body {
		padding: 20px;
	}

	.advantages-grid {
		grid-template-columns: 1fr;
	}
}

/* Enhanced Images Grid */
.images-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.image-card-enhanced {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 17, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 17, 46, 0.12);
}

.image-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #00112e 0%, #1a2744 100%);
    color: white;
}

.image-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    cursor: pointer;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoomable-image {
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-wrapper:hover .zoomable-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 17, 46, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}

/* Enhanced Lightbox */
.enhanced-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 17, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-header h3 {
    color: white;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.lightbox-controls {
    display: flex;
    gap: 10px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.close-btn {
    background: rgba(220, 53, 69, 0.8);
    border-color: rgba(220, 53, 69, 1);
}

.close-btn:hover {
    background: rgba(220, 53, 69, 1);
}

.lightbox-body {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 30px;
}

#enhancedLightboxImage {
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    transition: transform 0.3s ease;
    transform-origin: center center;
    cursor: move;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .images-enhanced-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-card-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lightbox-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .lightbox-controls {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-body {
        top: 140px;
        padding: 15px;
    }
    
    #enhancedLightboxImage {
        max-height: calc(100vh - 180px);
    }
}

@media (max-width: 480px) {
    .image-card-header h3 {
        font-size: 16px;
    }
    
    .download-btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .lightbox-header h3 {
        font-size: 16px;
    }
}