/* Header */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* Header Top Section */
.header-top {
    font-size: 18px;
    line-height: 1.5;
    padding: 10px 0;
}
.nav-link
{
    color:#000;
    font-weight:500;
}

.header-top a {
    font-size:medium;
    text-decoration: none;
    font-weight: 400;
    color:#000;
}

.header-top a:hover {
    text-decoration: none;
}

.navbar {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.navbar-brand img {
    width: 50px;
    height: auto;
}

.nav-menu a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    margin-right: 15px;
}

.nav-menu a:hover {
    color: #337ab7;
}

.request-quote-btn {
    background-color: #4478BB !important;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 20px;
    border-radius:50px;
    font-size: 14px;
}

.request-quote-btn:hover {
    background-color: #2a6496;
}
.header-call-us
{
    color: #337ab7;

}
.header-email
{
    color: #337ab7;

}


/* Industries Dropdown Menu Adjustments */
#industriesdropdown + .dropdown-menu {
    width: 1100px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#industriesdropdown + .dropdown-menu h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

#industriesdropdown + .dropdown-menu p {
    font-size: 14px;
    color: #000;
}

#industriesdropdown + .dropdown-menu .btn-outline-secondary {
    border-color: #ddd;
    background-color: #e7eef7;
}

#industriesdropdown + .dropdown-menu .btn-outline-secondary:hover {
    background-color: #4478BB;
}

#industriesdropdown + .dropdown-menu .btn-primary {
    border-radius: 20px;
    padding: 5px 20px;
}

/* Show industries dropdown on hover */
.nav-item.dropdown:hover #industriesdropdown + .dropdown-menu {
    display: block;
    opacity: 1; /* Smooth appearance */
    visibility: visible; /* Ensure visibility */
}

/* Responsive Styles for Dropdown */
@media (max-width: 768px) {
    #industriesdropdown + .dropdown-menu {
        width: 100%;
        position: static;
        display: none; /* Hidden by default for mobile */
        box-shadow: none;
        border: none;
    }

    .nav-item.dropdown:hover #industriesdropdown + .dropdown-menu {
        display: block;
    }
}
#customBoxesDropdown + .dropdown-menu {
    width: 1100px;
    max-width: 900px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none; /* Hide by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  /* Dropdown Columns */
  #customBoxesDropdown + .dropdown-menu .dropdown-column {
    flex: 2;
  }

  #customBoxesDropdown + .dropdown-menu img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  #customBoxesDropdown + .dropdown-menu .btn {
    margin-top: 10px;
  }

  /* Chevron Column */
  #customBoxesDropdown + .dropdown-menu .dropdown-column + .dropdown-column {
    padding-top: 10px;
  }

  #customBoxesDropdown + .dropdown-menu .dropdown-column + .dropdown-column i {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top:4px;
  }

  .horizontal-line-class {
    flex: 0 0 10%;
    border-right: 1px solid #818589; /* Thicker and lighter black line */
    padding-top: 25px;
    padding-right: 10px; /* Space between icons and right edge */
    margin-right: 30px; /* Adds space to the right side */
  }

  .horizontal-line-class i {
    font-size: 16px;
    margin-bottom: 5px; /* Reduces the gap between icons */
    color: #333; /* Icon color */
  }
  /* Show custom boxes dropdown on hover */
  .nav-item.dropdown:hover #customBoxesDropdown + .dropdown-menu {
    display: block;
    opacity: 1; /* Smooth appearance */
    visibility: visible; /* Ensure visibility */
  }

  /* Responsive Styles for Dropdown */
  @media (max-width: 768px) {
    #customBoxesDropdown + .dropdown-menu {
      width: 100%;
      position: static;
      display: none; /* Hidden by default for mobile */
      box-shadow: none;
      border: none;
    }

    .nav-item.dropdown:hover #customBoxesDropdown + .dropdown-menu {
      display: block;
    }
  }
  .header-top {
    border-bottom: 1px solid #e9ecef;
}

/* Search Container */
.search-container {
    position: relative;
    display: inline-block;
}

/* Search Icon */
.search-icon {
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #007bff;
}

/* Search Input */
.search-input {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    padding: 0;
    border: none; /* No border by default */
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease, padding 0.3s ease, border 0.3s ease; /* Add border transition */
    opacity: 0;
    visibility: hidden;
}

.search-input.active {
    width: 200px;
    padding: 0.5rem 1rem;
    opacity: 1;
    visibility: visible;
    border: 1px solid #ccc; /* Gray border when active */
}

/*  Header ends here */

/* Footer Styles */
/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 220px;
    margin-right: 10px;
}

.footer-logo h4 {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.footer-contact p {
    margin: 0;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.footer-contact .contact-icon {
    font-size: 18px;
    color: #337ab7;
    margin-right: 8px;
}

.footer-section h5 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}
.footer-social a i
{
    font-size:20px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: #337ab7;
}

.footer-discover {
    margin-top: 20px;
}

.footer-discover h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-discover .discover-btn {
    display: inline-block;
    background-color: #DEE5EE;
    color: #000;
    border: 1px solid #e0e0e0;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 16px;
    text-decoration: none;
    margin: 5px 5px 0 0;
    text-align: center;
    transition: background-color 0.3s ease;
}

.footer-discover .discover-btn:hover {
    background-color: #4478BB;
    color: #fff;
}

.footer-legal {
    font-size: 14px;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-legal p {
    margin: 0;
}

.footer-legal a {
    text-decoration: none;
    color: #337ab7;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-social a
{
    padding:4px;
    color:#000;
}
/* Responsive Styling */
@media (max-width: 768px) {
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo img {
        margin-bottom: 10px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .footer-discover {
        margin-top: 30px;
    }

    .footer-discover .discover-btn {
        width: 100%;
        margin: 5px 0;
    }

    .footer-legal {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal p {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .footer-contact p {
        font-size: 12px;
    }

    .footer-section h5,
    .footer-discover h5 {
        font-size: 14px;
    }

    .footer-section ul li a {
        font-size: 12px;
    }

    .footer-discover .discover-btn {
        font-size: 12px;
    }
}
/* Banner style */
.banner h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.banner p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}
.banner .btn {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 50px;
    background-color: #4478BB;
    border: none;
}
.banner .btn:hover {
    background-color: #0056b3;
}
/* Footer ends here */
        /* Unique class for the section */
        .quality-solutions-section {
            padding:15px 0;
            background-color: #f8f9fa; /* Light background color */
        }

        /* Unique class for cards */
        .quality-solutions-section .quality-card {
            border: none;
            background: transparent;
            text-align: center;
            padding: 20px;
        }

        /* Unique class for headings */
        .quality-solutions-section .quality-card h3 {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #4478BB;
        }

        /* Unique class for paragraphs */
        .quality-solutions-section .quality-card p {
            font-size: 16px;
            color: #3e3e3e;
        }

        /* Unique class for images */
        .quality-solutions-section .quality-card .quality-image {
            width: 80px; /* Adjust image size as needed */
            height: 80px; /* Adjust image size as needed */
            margin-bottom: 15px;
        }
/* Unique class for the section */
.highly-rated-products-section {
    padding: 60px 0;
    background-color: #ffffff; /* White background */
    text-align: center;
}

/* Unique class for the heading */
.highly-rated-products-section .section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

/* Unique class for the description */
.highly-rated-products-section .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Unique class for product cards */
.highly-rated-products-section .product-card {
    border: none;
    box-shadow: 0px 2px 5px 0px #00000012;
    border-radius: 10px;
    background: transparent;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden; /* Ensure shine effect stays within the card */
}

/* Unique class for product images */
.highly-rated-products-section .product-card .product-image {
    max-width: 100%;
    height: auto; /* Adjust image size as needed */
    margin-bottom: 15px;
    transition: opacity 0.3s ease; /* Smooth transition for image swap */
}

/* Unique class for hover image */
.highly-rated-products-section .product-card .hover-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    height: auto; /* Match size of product-image */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease; /* Smooth transition for image swap */
}

/* Hover effect: Swap images */
/*.highly-rated-products-section .product-card:hover .product-image {*/
/*    opacity: 0; */
/*}*/

/*.highly-rated-products-section .product-card:hover .hover-image {*/
/*    opacity: 1;*/
/*}*/

/* Shine effect */
.highly-rated-products-section .product-card::before {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* Ensure the shine effect doesn't interfere with hover */
}

/* Hover and focus effect: Trigger shine animation */
.highly-rated-products-section .product-card:hover::before,
.highly-rated-products-section .product-card:focus::before {
    animation: shine 0.85s;
    opacity: 1;
}

/* Shine animation keyframes */
@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Unique class for product titles */
.highly-rated-products-section .product-card .product-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Unique class for the Shop Now button */
.highly-rated-products-section .product-card .shop-now-btn {
    font-size: 14px;
    padding: 5px 16px;
    background-color: #4478BB; /* Blue background */
    color: #fff; /* White text */
    border: none;
    font-weight: 500;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.highly-rated-products-section .product-card .shop-now-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
/* View All Products Button */
.highly-rated-products-section .product-card.view-all-products {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: 1px solid #ddd; /* Optional border */
}

.highly-rated-products-section .product-card.view-all-products .view-all-btn {
    text-decoration: none;
    color: #333; /* Text color */
    font-size:16px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    background-color:#f9f9f9;
    color:#4478BB;
    border-radius: 50px;
    display: block;
    width:60%;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.highly-rated-products-section .product-card.view-all-products .view-all-btn:hover {
    color: #4478BB; /* Hover text color */
    background-color: #e9ecef; /* Hover background color */
}
.box-section .card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}
.box-section {
    background-color: #f8f9fa; /* Light background for the section */
    padding: 20px;
    border-radius: 10px;
}
.box-section p
{
    text-align: center;
    color:#000;
    font-weight: 400;
    font-size:16px;
    padding-bottom:4px;
}

.box-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.box-card:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.box-card-title {
    color: #333;
    font-weight: bold;
    text-align: center;
}

.box-card-text {
    color: #666;
}
.box-section .card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}
.box-section .card {
    margin: 0 10px; /* Add some spacing between cards */
}
.box-section .slick-dots {
    margin-top:20px;
    bottom: -44px; /* Position dots at the bottom */
    z-index: 1;
    font-size: 40px;
}
.box-section .slick-dots li button:before {
    color: #818589; /* Dot color */
    opacity: 1;
    font-size: 40px;
}
.box-section .slick-dots li.slick-active button:before {
    color: #000; /* Active dot color */
    font-size: 40px;
}
.packaging-section {
    background-color: #fff;
}
.packaging-section .row{
justify-content: center;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.packaging-option {
    padding: 15px;
}

.packaging-card {
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.packaging-card img {
    width: 500px;
    height:200px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.packaging-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.packaging-card p {
    font-size: 14px;
    color: #666;
}

.packaging-card:hover {
    transform: scale(1.05);
}
.custom-packaging-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.packaging-title {
    font-size: 32px;
    font-weight: bold;
    color: #1d5ea8;
    margin-bottom: 15px;
}

.packaging-subtitle {
    font-size: 26px;
    font-weight: bold;
    color: #1d5ea8;
    margin-top: 30px;
    margin-bottom: 10px;
}

.packaging-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.packaging-link {
    color: #1d5ea8;
    text-decoration: none;
    font-weight: bold;
}

.packaging-link:hover {
    text-decoration: underline;
}
.stickers-and-labels
{
    background-color: #fff;
}
.box-section .star-rating
{
    color:#4478BB;
    font-size:20px;
}
.btn

{
    background-color:#4478BB;
}
.custom-faq-section {
    margin: auto;
    padding: 50px 20px;
}
.custom-faq-header {
    font-size:34px;
    font-weight: 700;
    text-align: center;
}
.custom-faq-item {
    border-bottom: 1px solid #ddd;
    border: none;
}
.custom-faq-button {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    background-color: transparent !important;
    border-bottom: #000;
}
.custom-faq-button:hover{
    text-decoration: none;
    color: #4478BB;
    font-weight: bold;
}
.custom-faq-button:hover {
    text-decoration: none;
}
.sample-kit-section {
    padding: 50px 0;
}
.sample-kit-section h2{
    font-weight: 700;
    font-size:34px;
}
.sample-kit-section p{
    font-size:16px;
}
.sample-kit-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.sample-kit-btn {
    background-color: #4478BB;
    color: #fff;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s all;
    border: none;
}
.sample-kit-img img {
    max-width: 100%;
}
.quote-section h2
{
    font-size:34px;
    font-weight: 700;
}
.quote-section p
{
    font-size:16px;
}
.nav-request
{
    color: #fff;
    background-color: #4478BB;
    border-radius: 50px;
    font-size: 14px;
    padding: 9px 20px;
    font-weight: 500;
    transition: 0.3s all;
}
/* Terms & Conditions Section */

.terms-heading {
    font-size: 34px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding:30px;
    color: #333; /* Dark text color */
}

.terms-content {
    border: 1px solid #e9ecef; /* Light border */
    background-color: #fff; /* White background */
}

.terms-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555; /* Medium gray text color */
    margin-bottom: 1rem; /* Space between paragraphs */
}
.terms-conditions-long
{
    background-color:#fff;
}
.custom-mailer-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}
.custom-mailer-title {
    font-size: 32px;
    font-weight: bold;
}
.custom-mailer-description {
    font-size: 16px;
    color: #555;
}
.custom-mailer-images img {
    max-width: 100%;
    height: auto;
}
.quote-form-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.quote-form-container h3
{
    font-size:32px;
    font-weight: 600;
}
.quote-form-container input,
.quote-form-container select,
.quote-form-container textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.quote-submit-btn {
    background: #4478BB;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}
.custom-breadcrumb {
    font-size: 14px;
    color: #333;
    padding:10px;
    display: flex;
    align-items: center;
}

.custom-breadcrumb a {
    color: #000;
    text-decoration: none;
}

.custom-breadcrumb a:hover {
    text-decoration: underline;
}

.custom-breadcrumb .breadcrumb-home i {
    font-size: 16px;
    color: #000;
}

.custom-breadcrumb .breadcrumb-separator {
    margin: 0 5px;
    color: #666;
}

.custom-breadcrumb .breadcrumb-active {
    font-weight: bold;
    color: #4478BB;
}
.category-first-section

{
    text-align:left;
}
.category-first-section .section-description
{
    max-width: 100%;
}
/* Hover effect: Swap images */
.category-first-section .product-card:hover .product-image {
    opacity: 1; /* Hide the original image on hover */
}
.custom-category-section
{
    background-color: #fff;
}
.custom-info-section {
    background-color: #fff;
    padding: 10px 15px; /* Reduced left & right padding */
}
.custom-info-item {
    text-align: center; /* Center content */
    font-size: 16px;
    white-space: nowrap;
}
.custom-info-item img {
    height: 22px;
    display: block;
    margin: 0 auto 5px; /* Centers image */
}
.custom-info-item a {
    color: #4478BB;
    text-decoration: none;
    font-weight: bold;
}
.custom-info-item a:hover {
    text-decoration: underline;
}
.product-overview {
    padding: 50px 0;
}
.product-description {
    font-size: 16px;
    color: #444;
}
.product-image-gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.product-image-gallery img:hover {
    transform: scale(1.1);
}
.product-main-image img {
    width: 100%;
    border-radius: 5px;
}
.custom-quote-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.custom-quote-form input,
.custom-quote-form select,
.custom-quote-form textarea {
    margin-bottom: 10px;
}
.quote-btn {
    width: 100%;
    background-color: #4478BB;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
}
.custom-tabs {
    background-color: #4072B3; /* Blue Background */
    border-radius: 8px; /* Rounded Corners */
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.custom-tabs .nav-link {
    color: white !important; /* White Text */
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border: none;
}

.custom-tabs .nav-link.active,
.custom-tabs .nav-link:hover {
    text-decoration: none; /* Underline on Active/Hover */
}
.custom-tabs .nav-link:hover {
    text-decoration: none; /* Underline on Active/Hover */
    color:#fff !important;
}
.custom-tabs .nav-link.active
{
    background-color:#4072B3;

}
/* Tab Content Styling */
.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    margin-top: 10px;
    border-radius: 8px;
    background-color: #F5F5F5;
}
#description
{
    background-color: #f5f5f5;
}
#description .custom-packaging-section
{
    background-color:#F5F5F5;
}
/* Unique Styling */
.subwoofer-section {
    padding: 50px 0;
}

.subwoofer-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
}

.subwoofer-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.subwoofer-list {
    padding-left: 20px;
}

.subwoofer-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.dimension-title {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-top: 30px;
}
html {
    scroll-behavior: smooth;
}
.custom-material-section {
    padding: 40px 0;
}
.custom-material-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}
.custom-material-card:hover {
    transform: translateY(-5px);
}
.custom-material-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}
.custom-material-title {
    font-weight: bold;
    margin-top: 15px;
    font-size: 18px;
}
.custom-info-section {
    padding: 40px 0;
    background-color:#f5f5f5;
}
.custom-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease-in-out;
}
.custom-info-card:hover {
    transform: translateY(-5px);
}
.custom-info-icon {
    font-size: 40px;
    color: #3b82f6; /* Blue color */
    margin-bottom: 10px;
}
.custom-info-title {
    font-weight: bold;
    font-size: 18px;
}
.custom-blog-section {
    padding: 50px 0;
    background-color: #fff;
}
.custom-blog-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.custom-blog-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}
.custom-blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.custom-blog-card:hover {
    transform: translateY(-5px);
}
.custom-blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.custom-blog-content {
    padding: 15px;
}
.custom-blog-date {
    font-size: 14px;
    color: #6c757d;
}
.custom-badge {
    background: #007bff;
    color: white;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 5px;
    margin-left: 10px;
}
.custom-blog-heading {
    font-weight: bold;
    font-size: 16px;
    margin-top: 5px;
    text-decoration:none;
}
/* Shine effect */
 .custom-blog-card::before {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 100%
    );
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* Ensure the shine effect doesn't interfere with hover */
}

/* Hover and focus effect: Trigger shine animation */
.custom-blog-card:hover::before,
.custom-blog-card:focus::before {
    animation: shine 0.85s;
    opacity: 1;
}
.blog-container {
    margin: auto;
    padding: 20px;
}
.blog-content img {
    width: 100%;
    border-radius: 10px;
}
.sidebar .cta-box {
    background-color: #2a67b1;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.sidebar .cta-box img {
    width: 100px;
    margin-bottom: 10px;
}
.sidebar .cta-box .btn {
    background-color: white;
    color: #2a67b1;
    font-weight: bold;
    border-radius: 50px;
}
.sidebar .tips-box {
    margin-top: 20px;
}
.sidebar .tips-box img {
    width: 100%;
    border-radius: 10px;
}
.packaging-tip {
    margin-top:20px;
    margin-bottom: 20px;
    background-color:#f5f5f5;
    border-radius:10px;
}
.packaging-tip p{
   padding:10px;
}
.sidebar img {
    max-width: 100%;
    border-radius: 10px;
}
.blog-content h2
{
    font-size:34px;
    font-weight: bold;
}
.about-us-section {
    background-color: #f7f7f7;
    padding: 60px 0;
}
.about-us-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
}
.about-us-text {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}
.about-us-image img {
    max-width: 100%;
    height: auto;
}
.about-packaging-section {
    background-color: #ffffff;
    padding: 60px 0;
}
.about-packaging-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
}
.about-packaging-text {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}
.about-packaging-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.about-packaging-section {
    background-color: #f8f9fa; /* Light gray background */
    padding: 60px 0;
}
.about-packaging-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
}
.about-packaging-text {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}
.about-packaging-image img {
    max-width: 100%;
    height: auto;
}
 /* Mobile Header Styling */
 .mobile-header {
    background-color: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}
.mobile-header .logo {
    max-width: 160px;
}
.mobile-header .contact-info a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}
.mobile-header .contact-info a:hover {
    text-decoration: underline;
}
.mobile-header .search-box {
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.mobile-header .search-box input {
    border: none;
    outline: none;
    padding: 8px;
}
.mobile-header .search-box .btn {
    border: none;
    background-color: #fff;
}
.mobile-header .menu-btn {
    background: none;
    border: none;
    font-size: 24px;
}

/* Mobile Menu Styling */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.2);
    padding: 20px;
    transition: 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 1000;
}
.mobile-menu.show {
    left: 0;
}
.mobile-menu .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    float: right;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
}
.mobile-menu ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}
.mobile-menu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    display: block;
}
.mobile-menu ul li a:hover {
    color: #0056b3;
}
.shop-industries-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}
.shop-industries-sidebar {
    width: 450px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
    height: 400px;
}
.shop-industries-sidebar h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.shop-industries-sidebar ul {
    list-style: none;
    padding: 0;
}
.shop-industries-sidebar li {
    padding: 8px 0;
    font-size: 14px;
}
.shop-industries-content {
    flex-grow: 1;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.product-image {
    width: 100%;
    border-radius: 8px;
}
.product-title {
    font-size: 16px;
    margin: 10px 0;
}
.shop-industries-content .shop-now-btn {
    background-color: #2a67b1;
    color: white;
    font-size:14px;
    padding: 10px 15px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}
.suggestions-list {
    border: 1px solid #ddd;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    position: absolute;
    z-index: 1000;
    width: 200px;
    top: 45px;
    right:0px;
    border-radius:10px;
    display: none;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}
.search-input{
    width: 280px;
}
@media (max-width: 576px) {
    /* Your mobile styles here */
    .box-section .card-img-top
    {
        height:auto;
    }
     .packaging-card img
    {
        height:auto;
    }
}

/* Small devices (landscape phones, 576px to 768px) */
@media (max-width: 768px) {
    .box-section .card-img-top
    {
        height:auto;
    }
    .packaging-card img
    {
        height:auto;
    }
}