 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: #ffffff;
 }

 a {
     text-decoration: none;
 }

 p {
     color: #7a7a7a;
     font-size: 16px;
 }

 .top-header {
     background: #ffff;
     padding: 22px 60px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
 }

 .social-contact {
     display: flex;
     flex-direction: column;
     gap: 18px;
 }

 .social-icons {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .social-icons a {
     width: 30px;
     height: 30px;
     border-radius: 50%;
     background: #0171ce;
     color: #fff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     transition: 0.3s ease;
 }

 .social-icons a:hover {
     transform: translateY(-3px);
     background: #0560aa;
 }

 .headeremail {
     color: #444;
     font-size: 14px;
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 400;
 }

 .headeremail i {
     color: #0171ce;
     font-size: 16px;
 }

 .logo img {
     max-width: 380px;
     width: 100%;
     object-fit: contain;
 }

 .top-quote-btn a {
     background: #0171ce;
     color: #fff;
     padding: 12px 20px;
     border-radius: 2px;
     font-size: 16px;
     font-weight: 600;
     transition: 0.3s ease;
     display: inline-block;
 }

 .top-quote-btn a:hover {
     background: #0560aa;
 }

 .navbar {
     background: #0171ce;
     padding: 8px 0;
     display: block;
 }

 .navbar ul {
     list-style: none;
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 70px;
     margin: auto;
 }

 .navbar ul li a {
     color: #fff;
     font-size: 16px;
     font-weight: 500;
     transition: 0.3s ease;
 }

 .navbar ul li a:hover {
     opacity: 0.8;
 }

 /* Responsive */
 @media (max-width: 991px) {
     .top-header {
         flex-direction: column;
         gap: 30px;
         text-align: center;
     }

     .social-contact {
         align-items: center;
     }

     .navbar ul {
         gap: 30px;
         flex-wrap: wrap;
     }

     .navbar ul li a {
         font-size: 20px;
     }

     .quote-btn a {
         font-size: 20px;
     }

     .headeremail {
         font-size: 18px;
     }
 }

 @media (max-width: 576px) {
     .top-header {
         padding: 20px;
     }

     .logo img {
         max-width: 260px;
     }

     .navbar ul {
         flex-direction: column;
         gap: 18px;
     }
 }

 .mobile-header {
     display: none;
 }

 @media (max-width: 768px) {

     .top-header {
         display: none;
     }

     .navbar {
         display: none;
     }

     .mobile-header {
         display: flex;
         align-items: center;
         justify-content: space-between;
         padding: 16px 20px;
         background: #ffffff;
         border-bottom: 5px solid #0171ce;
     }

     .mobile-logo img {
         max-width: 220px;
         width: 100%;
     }

     .menu-toggle {
         width: 48px;
         height: 48px;
         border: none;
         background: #0171ce;
         color: #fff;
         font-size: 22px;
         cursor: pointer;
         border-radius: 2px;
     }
 }

 /* Mobile Menu when opens */
 .mobile-menu {
     position: fixed;
     top: 10vh;
     right: -100%;
     width: 100%;
     height: auto;
     background: #f2b24f;
     z-index: 999;
     transition: 0.4s ease;
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-menu ul {
     list-style: none;
     padding: 20px;
     margin: 0;
 }

 .mobile-menu ul li {
     margin: 20px 0;
 }

 .mobile-menu ul li a {
     color: #fff;
     text-decoration: none;
     font-size: 18px;
     font-weight: 600;
 }

 .close-menu {
     width: 100%;
     background: #0171ce;
     color: #fff;
     border: none;
     padding: 12px;
     text-align: right;
     font-size: 24px;
     cursor: pointer;
 }

 /* content section */
 .content-section {
     padding: 0 120px;
 }

 .heading {
     color: #0171ce;
     font-weight: 600;
 }

 .content-section p {
     color: #7a7a7a;
     font-size: 16px;
     margin-bottom: 2rem;
     line-height: 28px;
 }

 .button {
     background-color: #fcb61a;
     padding: 12px 24px;
     text-transform: uppercase;
     font-weight: 600;
     border: 0px;
 }

 .button:hover {
     background-color: #0560aa;
 }

 /* Left Right Section */
 .imagee img {
     border-radius: 10px;
     object-fit: cover;
     object-position: center;
 }

 .right-content .btn {
     background-color: #0171ce;
     font-weight: 500;
     font-size: 14px;
     padding: 9px 18px;
     border: none;
     border-radius: 0px;
 }

 .right-content .btn:hover {
     background-color: #0560aa;
 }

 .right-content p {
     margin-bottom: 1rem;
     font-size: 16px;
 }


 /* Backgroung Image Scrolling */
 .quote-section {
     position: relative;
     width: 100%;
     min-height: 300px;

     background: url('/wp-content/uploads/scrolling-image.webp') center center/cover no-repeat;
     background-attachment: fixed;
     display: flex;
     align-items: center;
     justify-content: center;

     padding: 80px 20px;
     overflow: hidden;
 }

 .quote-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
 }

 .quote-content {
     position: relative;
     z-index: 2;
     max-width: 950px;
     text-align: center;
     color: #fff;
 }

 .quote-content h3 {
     font-size: 24px;
     margin-bottom: 35px;
     line-height: 1.3;
 }

 .quote-content p {
     color: #fff;
 }

 .quote-btn {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     background: #f9bb52;
     color: #fff;
     padding: 12px 24px;
     border-radius: 4px;
     font-size: 16px;
     text-decoration: none;
     transition: 0.3s ease;
     font-weight: 600;
 }

 .quote-btn:hover {
     background: #e5a63a;
     transform: translateY(-3px);
 }

 @media(max-width:768px) {

     .quote-section {
         min-height: 420px;
         background-attachment: scroll;
     }

     .quote-content h3 {
         font-weight: 600;
     }

     .quote-content p {
         font-size: 16px;
         line-height: 1.7;
     }

     .quote-btn {
         font-size: 18px;
         padding: 15px 28px;
     }

     p {
         margin: 10px 0px;
     }

     .content-section {
         padding: 0px 20px;
     }

     .right-content {
         padding-top: 20px;
         padding-bottom: 10px;
     }
 }

 /* Our Process Section */
 .our-process span {
     font-size: 22px;
     font-weight: 600;
     line-height: 24px;
     color: #0171ce;
 }

 .our-process p {
     font-size: 14px;
     line-height: normal;
 }

 .form-heading {
     text-align: center;
     padding: 15px 30px;
     background-color: #fcb61a;
 }

 .form-label {
     font-size: 14px;
 }

 .form-control {
     border-radius: 0px;
     background-color: #f1f1f1;
 }

 .get-quote-form .btn {
     background-color: #ffbd59;
     font-weight: 500;
     font-size: 14px;
     padding: 9px 18px;
     border: none;
     border-radius: 0px;
     width: 100%;
     margin-top: 15px;
 }

 .get-quote-form .btn:hover {
     background-color: #e5a63a;
 }

 .cat-desc {
     padding: 3rem 1rem;
     background-color: #f6f6f6;
     border-radius: 10px;
     max-height: 380px;
     overflow-x: hidden;
     overflow-y: scroll;
 }

 .cat-desc h2 {
     font-size: 24px;
     font-weight: 600;
     margin-top: 0.8rem;
     margin-bottom: 0.6rem;
     color: #231f20;
 }

 .cat-desc h3 {
     font-size: 20px;
 }

 .cat-desc h4 {
     font-size: 18px;
 }

 .cat-desc p {
     font-size: 13px;
     line-height: normal;
     margin-bottom: 10px;
 }

 /************* Our Blogs Page ******************/
 .blog-container {
     padding: 60px 20px;
 }

 .blog-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 40px;
     margin-bottom: 60px;
 }

 .blog-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     flex-direction: column;
 }

 .blog-image-wrapper {
     position: relative;
     width: 100%;
     height: 240px;
     overflow: hidden;
     background: #f5f5f5;
 }

 .blog-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .blog-content {
     padding: 28px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .blog-title {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 12px;
     line-height: 1.4;
 }

 .blog-excerpt {
     color: #666;
     line-height: 1.7;
     margin-bottom: 20px;
     flex: 1;
     font-size: 14px;
 }

 .blog-read-more {
     display: inline-flex;
     align-items: center;
     color: #fdb41a;
     font-weight: 600;
     text-decoration: none;
     transition: gap 0.3s ease;
     gap: 8px;
 }

 .blog-title a {
     color: #0171ce;
 }

 .blog-read-more svg {
     width: 20px;
     height: 20px;
 }

 /* Single Blog Section */

 .blog-breadcrumb {
     background: #f6f6f6;
     padding: 20px 0;
     margin-bottom: 40px;
 }

 .blog-breadcrumb nav {
     font-size: 0.9rem;
 }

 .breadcrumb {
     background-color: transparent;
 }

 .breadcrumb-item {
     color: #000;
     font-size: 15px;
     display: flex;
     align-items: center;
 }

 .blog-breadcrumb a {
     color: #666;
     text-decoration: none;
     transition: color 0.3s;
 }

 .breadcrumb-item+.breadcrumb-item {
     padding-left: 10px;
 }

 .blog-breadcrumb .active {
     color: #2c3e50;
     font-weight: 500;
 }

 .breadcrumb-item+.breadcrumb-item::before {
     content: "";
     display: inline-block;
     width: 22px;
     height: 22px;
     background-image: url(../images/angle-double-right.svg);
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
     padding-right: 0;
     margin: 0;
     flex-shrink: 0;
 }

 .blog-detail-container {
     padding: 0 20px 80px;
 }

 .article-main {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
 }

 .article-featured-image {
     width: 100%;
     height: 100%;
 }

 .article-header {
     position: relative;
     height: 500px;
     overflow: hidden;
 }

 .article-body {
     padding: 50px;
 }

 .article-title {
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 30px;
     line-height: 1.3;
 }

 .article-content {
     font-size: 1.1rem;
     line-height: 1.8;
     color: black;
 }

 .article-content h2,
 .article-content h3 {
     margin-top: 2rem;
     margin-bottom: 1rem;
     color: #0171ce;
     font-weight: 600;
 }

 .article-content img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
     margin: 1.5rem 0;
 }

 /* Side Bar Blogs */
 .blog-sidebar {
     position: sticky;
     top: 20px;
 }

 .sidebar-widget {
     background: white;
     border-radius: 12px;
     padding: 30px;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
 }

 .widget-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: black;
     margin-bottom: 25px;
     padding-bottom: 15px;
     border-bottom: 3px solid #fdb41a;
 }

 .recent-post-item {
     display: flex;
     gap: 15px;
     padding: 15px 0;
     border-bottom: 1px solid #fdb41a;
     text-decoration: none;
     transition: all 0.3s;
 }

 .recent-post-thumb {
     flex-shrink: 0;
     width: 80px;
     height: 80px;
     border-radius: 8px;
     overflow: hidden;
 }

 .recent-post-thumb img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .recent-post-content h5 {
     font-size: 0.95rem;
     font-weight: 600;
     color: #0171ce;
     margin-bottom: 8px;
     line-height: 1.4;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 @media (max-width: 768px) {
     .article-header {
         height: 250px;
     }

     .article-body {
         padding: 0;
     }

     .article-title {
         font-size: 1.3rem;
         font-weight: 700;
         margin-bottom: 30px;
         line-height: 1.3;
     }

     .pages-container {
         padding: 80px 10px !important;
     }
 }

 .pages-container {
     padding: 80px 0px;
 }

 .icon-contact {
     display: flex;
     align-items: center;
     gap: 20px;
     padding: 10px 0px;
 }

 .icon-contact i {
     font-size: 24px;
     color: #fcb61a;
 }

 .icon-contact a {
     font-size: 16px;
     font-weight: 600;
 }

 /* Product Page Starting */
 .image-gallery {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     width: 100%;
 }

 .rounded-main {
     border-radius: 10px;
 }

 .thumb-row {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content: center;
     margin-top: 15px;
 }

 .thumb {
     width: 100px;
     height: 100px;
     object-fit: cover;
     cursor: pointer;
     border-radius: 10px;
     border: 2px solid transparent;
     transition:
         transform 0.3s ease,
         opacity 0.3s ease,
         border-color 0.3s ease;
 }

 .thumb:hover {
     transform: scale(1.08);
     opacity: 0.85;
 }

 .active-thumb {
     border-color: #000;
     transform: scale(1.05);
 }

 .product-details h1 {
     font-size: 24px;
     margin-bottom: 20px;
 }

 .product-details p {
     font-size: 14px;
     margin-bottom: 10px;
     color: black;
     line-height: 1.5rem;
 }

 .product-details .btn {
     background-color: #ffbd59;
     font-weight: 500;
     font-size: 14px;
     padding: 9px 18px;
     border: none;
     border-radius: 0px;
     width: 100%;
     margin-top: 15px;
 }

 .process-section {
     padding: 10px 20px;
     background-color: #0171ce;
     border-radius: 5px;
     margin: 60px auto 60px auto;
 }

 .process-card {
     color: white;
 }

 .process-card {
     border-radius: 10px;
     cursor: pointer;
 }

 .process-card:hover .process-title,
 .process-card:hover .process-text {
     color: black;
 }

 .process-card:hover {
     background-color: #fff !important;
     box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1) !important;
     transform: translateY(-5px);
 }

 .process-icon {
     background-color: #ffbd59;
     padding: 13px;
     width: 70px;
     height: 70px;
 }

 .process-title {
     display: block;
     font-size: 1.2rem;
     font-weight: 500;
 }

 .process-text {
     font-size: 14px;
     color: white;
 }

 .specification-section {
     padding: 50px 0;
     background: #fff;
 }

 .custom-tabs {
     display: flex;
     gap: 15px;
     border-bottom: none;
     margin-bottom: 20px;
     flex-wrap: wrap;
 }

 .custom-tabs .nav-link {
     border: none;
     background: #e5e5e5;
     color: #000;
     padding: 15px 30px;
     font-size: 16px;
     font-weight: 600;
     transition: 0.3s ease;
 }

 .custom-tabs .nav-link:hover {
     background: #d8d8d8;
 }

 .custom-tabs .nav-link.active {
     background: #ffbd59;
     color: #fff;
 }

 .custom-tab-content {
     background: #fff;
 }

 /* Scroll Area */

 .content-scroll {
     max-height: 520px;
     overflow-y: auto;
     padding-right: 10px;
 }

 /* Custom Scrollbar */

 .content-scroll::-webkit-scrollbar {
     width: 6px;
 }

 .content-scroll::-webkit-scrollbar-thumb {
     background: #bdbdbd;
     border-radius: 10px;
 }

 .content-scroll h2,
 .content-scroll h3 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 10px;
     color: #000;
 }

 .content-scroll h3 {
     font-size: 22px;
 }

 .content-scroll p {
     font-size: 15px;
     line-height: normal;
     color: #000;
 }

 .content-scroll ul {
     padding-left: 20px;
     margin-bottom: 20px;
 }

 .content-scroll ul li {
     margin-bottom: 10px;
     font-size: 15px;
 }

 .content-scroll a {
     color: #1d5cff;
     text-decoration: none;
 }

 .content-scroll a:hover {
     text-decoration: underline;
 }

 .custom-table {
     width: 100%;
     border-collapse: collapse;
     overflow: hidden;
     border-radius: 12px;
 }

 .custom-table th,
 .custom-table td {
     padding: 18px 20px;
     border: 1px solid #ececec;
     text-align: left;
     font-size: 16px;
     vertical-align: top;
 }

 .custom-table th {
     width: 35%;
     font-weight: 700;
     background: #fafafa;
 }
 /* FREQUENTLY ASKED QUESTIONS */
 .section-heading {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}
.faq-question{
    width: 100%;
    background: #d6d6d6;
    border: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 10px;
    border-radius: 5px;
    transition: background .4s, color .4s;
}
.faq-answer {
    font-weight: 400;
    text-align: left;
    background: #fff;
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s;
    padding: 0 10px;
}
.faq-icon {
    font-size: 20px;
    transition: transform .3s;
}
.faq-item.open .faq-question {
    background: #ffbd59;
    color: #fff;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 10px;
}
.product-title{
    padding: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
}
.related-products {
    margin: 80px 0px;
}
 @media (max-width: 991px) {

     .custom-tabs .nav-link {
         padding: 12px 24px;
         font-size: 16px;
     }

     .content-scroll h2,
     .content-scroll h3 {
         font-size: 24px;
     }

     .content-scroll p,
     .content-scroll ul li {
         font-size: 15px;
     }
 }

 @media (max-width: 767px) {

     .specification-section {
         padding: 35px 0;
     }

     .custom-tabs {
         gap: 10px;
     }

     .custom-tabs .nav-link {
         width: 100%;
         text-align: center;
         font-size: 15px;
         padding: 12px 15px;
     }

     .content-scroll {
         max-height: 400px;
     }

     .content-scroll h2,
     .content-scroll h3 {
         font-size: 20px;
         line-height: 1.4;
     }

     .content-scroll p,
     .content-scroll ul li {
         font-size: 15px;
         line-height: 1.7;
     }

     .custom-table th,
     .custom-table td {
         padding: 14px;
         font-size: 14px;
     }

     .custom-table th {
         width: 40%;
     }
 }

 @media (max-width: 768px) {
     .thumb {
         width: 90px;
         height: 90px;
     }
 }

 @media (max-width: 480px) {

     .thumb-row {
         gap: 8px;
     }

     .thumb {
         width: 70px;
         height: 70px;
     }

     .rounded-main {
         border-radius: 8px;
     }
 }
/* Product category */
.pcategpory-banner{
    background-color: #f6f6f6;
    padding: 50px 0px;;
}
.pcategpory-banner h1{
    font-size: 36px;
    margin-bottom:15px ;
}
.category-banner-btn {
    text-decoration: none;
    color: white;
    background: #ffbd59;
    width: 140px;
    text-align: center;
    padding: 7px 0;
    border-radius: 5px;
}



 /* Footer Section */
 .footer-headng {
     font-weight: 700;
     color: #fff;
 }

 .footer-link {
     color: #fff;
     font-size: 13px;
     text-decoration: none;
     line-height: 30px;
 }

 footer p {
     font-size: 14px;
 }