/*
Theme Name: ISarva Theme
Theme URI: https://isarvait.com
Description: ISarva Theme is simple theme mainly used in Elementor based theme
Version: 1.0
*/

	@media(min-width:1200px){
.hfe-nav-menu{
    flex-wrap:nowrap !important
}
}


body {
  margin: 0;
  box-sizing: border-box;
}


/* Contact form */
.contact-form {
  width: 100%;
  background-color: #FFE2E2; /* Match your form's background if needed */
  padding: 40px 40px 40px 40px;
  border-radius: 10px;
  font-family: poppins;
}
.contact-form br{
	display:none;
}
.contact-form label {
  display: block;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  font-family: 'poppins';
  margin-top: 22px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  background-color: #ffffff;
  color: #fff;
  padding: 15px;
  border: none;
  margin-top: 8px;
  font-size: 13px;
  font-family: poppins;
  box-sizing: border-box;
  font-family: poppins;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    color: #000000;
}
.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color:#868686;
}

.contact-form input[type="submit"] {
  background-color: #D30404;
  color: #fff;
  font-size: 16px;
  padding: 12px 30px;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  background-color: #fff;
  color: #D30404;
  border: 1px solid #D30404;
}

/* Responsive styles */
@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }

  .contact-form label {
    font-size: 15px;
  }

  .contact-form input[type="submit"] {
    width: 100%;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 15px;
  }

  .contact-form label {
    font-size: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }
}
	

/* ========================================================== Product List style =============================================================== */

.products-grid-slick {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

   @media (max-width: 1440px) {
  .products-grid-slick {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Tablet & below ===== */
@media (max-width: 1024px) {
  .products-grid-slick {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 80px; /* space for arrows */
  }

  .products-grid-slick .slick-prev,
  .products-grid-slick .slick-next {
    top: auto !important;
    /* bottom: -60px; */
    z-index: 9999;
  }

 
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .products-grid-slick {
    grid-template-columns: 1fr;
  }
}
  @media(max-width: 1024px) {
    .products-grid-slick .slick-prev {
    left: 45% !important;
        bottom: 40px !important;
        transform: translate(-45%, 45%) !important;
    
  }
 .products-grid-slick .slick-next {
        left: 55% !important;
        bottom: 40px !important;
        transform: translate(-45%, 45%) !important;
 }
  }




    /* Card */
    .product-card {
        background: #fff;
        border: none;
        overflow: hidden;
        text-align: center;
        min-height: 506px;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgb(0 0 0 / 16%);
    }

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);

}


    /* Image */
    .product-card-img-sec {
        padding: 10px;
    }

    .product-card-img-sec img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }

    /* Content */
    .product-card-contnt-sec {
        padding: 0 25px 20px;
        flex-grow: 1;
    }

    .product-headline {
        font-size: 20px !important;
        font-weight: 600;
        font-family: 'montserrat', serif;
        line-height: 26px !important;
        margin-bottom: 15px;
        margin: 10px;
        color:#203753;
    }

    .product-text {
        font-size: 16px !important;
        color: #2e2e2e !important;
        line-height: 1.5;
        font-family: 'poppins', sans-serif;
    }

    /* Button INSIDE card */
    .product-card-btn {
        background: #ffc9c9;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        color: #203753;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-decoration: none;
    }

    .product-card-btn span {
        font-size: 18px;
    }

    .product-card-btn:hover {
        background: #ffb3b3;
    }

    .products-grid-slick .product-slide {
    padding: 0 15px; /* GAP BETWEEN CARDS */
}

/* Optional: ensure full height cards */
.product-card {
    height: 100%;
}

 .slick-prev:before {
  position: relative;
  font-size: 45px!important;
  right: 20px;
 }
  .slick-next:before { 
  position: relative;
  font-size: 45px!important;
  left: 0px;
}
/* ==========================================================Product List style end  =============================================================== */

/* ===== Single Product Page ===== */


/* ================= PRODUCT BANNER ================= */

.product-banner {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.product-banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.product-banner-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
    margin-top: 0px !important;
}

.product-breadcrumb {
    max-width: 600px;
    font-size: 15px;
    color: #ddd;
    margin: auto;
}


.product-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.product-breadcrumb span {
    margin: 0 6px;
    color: #ff3b3b!important;

}

.product-breadcrumb span:last-child {
  color: #e10600; /* active color */
  font-weight: 500;
}


/* ================= PRODUCT CONTENT ================= */

/* ================= PRODUCT BANNER ================= */

.product-banner {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.product-banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.product-banner-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.2;
    width: 100%;
    max-width: 800px;
}

.product-breadcrumb {
    font-size: 15px;
    color: #ddd;
}

.product-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.product-breadcrumb span {
    margin: 0 6px;
    color: #ff3b3b;
}

/* ================= PRODUCT CONTENT ================= */

.product-single-section {
    padding: 80px 0;
}

.product-single-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-single-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 70px;
  
}

/* LEFT IMAGE (HEIGHT CONTROLLED) */
.product-single-image img{
    width: 100%;
    max-height: 100%;
    overflow: hidden;
    border-radius: 0px;
}

.product-single-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
   
   
}

/* RIGHT CONTENT */
.product-single-content {
    display: flex;
    flex-direction: column;
}

.product-single-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
    line-height: 1.3;
    margin-top: 0 !important;
}

.product-single-text {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
}
.hfe-nav-menu .sub-menu li.menu-item {
    position: relative;
    background: inherit;
    z-index: 9999;
    margin: 0;
  }

  .product-single-body {
    color: #2e2e2e;
  }
/* ================= RESPONSIVE ================= */

@media (max-width:1023px) {
   .product-single-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 1024px) {
    

    .product-single-image img{
        max-height:100%;
        object-fit: cover !important;
      
    }

    .product-single-title {
        font-size: 28px;
    }

        .product-single-body {
            margin-top: -10px;
        }
}

@media (max-width: 768px) {
    .product-banner {
        height: 260px;
    }

    .product-banner-title {
        font-size: 36px;
    }

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

   

    .product-single-title {
        font-size: 28px;
        text-align: center;
        margin-top: 0px !important;
    }

    .product-single-body {
        text-align: center;
    }

    .button-container {
        justify-content: center;

    }
}

/* Gallery button */
.product-read-more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    border: 1.5px solid #D30404;
    border-radius:0px !important;
    color: #D30404;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all .3s ease;
    width: fit-content;
}

.product-read-more-btn:hover {
    background: #D30404;
    color: #fff;
}


/*  Request Quote */

.product-request-quote-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    border: 1.5px solid #D30404;
    border-radius:0px !important;
    color: #ffffff;
    background: #D30404;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all .3s ease;
    width: fit-content;
}

.product-read-more-btn:hover {
    border: 1.5px solid #D30404;
    background: #ffffff;
    color: #D30404;
}


.button-container{
    display:flex !important;
    gap:20px;
}



/* ======================================= PRODUCTS TABS =========================================== */

.product-tabs-wrap {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-tabs-nav button {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 10px;
    border: none;
    background: #f1f1f1;
    color: #2e2e2e;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    font-family: "Montserrat", sans-serif !important;
}

/* ACTIVE TAB */
.product-tab-btn.active {
    background: #D30404;
    color: #fff;
}

/* TAB CONTENT */
.product-tab-content {
    display: none;
    background: #fff4f4;
    padding: 30px;
    min-height: 262px !important;
    color: #2e2e2e;
    font-family: "Poppins", sans-serif;
}

.product-tab-content.active {
    display: block;
}

/* ===============================
   RESPONSIVE – TABLET & MOBILE
================================ */

@media (max-width: 991px) {
    .product-tabs-wrap {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-tabs-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .product-tabs-nav button {
        width: auto;
        flex: 1 1 calc(50% - 10px);
        margin-bottom: 0;
        text-align: center;
        padding: 14px 12px;
        font-family: "Montserrat", sans-serif !important;
    }
}

/* ===============================
   MOBILE – STACKED / ACCORDION
================================ */

@media (max-width: 768px) {

  .product-tabs .tab-title,
  .acf-tab-button,
  .tab-header {
    height: auto !important;
    padding: 16px 20px !important;
    min-height: auto !important;
    align-items: flex-start;
  }

  .product-tabs .tab-title h3,
  .tab-header h3 {
    font-size: 16px;
    line-height: 1.3;
  }

  .tab-toggle-icon {
    margin-top: 4px;
  }
}



/* ==========================================================
   PRODUCT SPECIFICATIONS – FULL & FINAL
   Works with ACF + Custom Template + Elementor
========================================================== */

/* ==================================================
   PRODUCT SPECIFICATIONS – TABLE DESIGN
================================================== */

.product-specifications-section {
    margin-bottom: 60px;
}

.product-specifications-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* TABLE BASE */
#product-specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffebe9;
    color: #000000;
    font-size: 15px;
}

/* HEADER */
#product-specs-table th {
    background-color: #7c0000;
    color: #ffffff;
    font-weight: 500;
    padding: 16px 20px;
    border: 1px solid #727272 !important;
    font-size: 18px;
}

/* BODY CELLS */
#product-specs-table td {
    padding: 16px 20px;
    border: 1px solid #727272 !important;
}  

/* ROW STRIPES (ALTERNATE COLORS) */
#product-specs-table tr:nth-child(even) td {
    background-color: #ffebe9;
}

#product-specs-table tr:nth-child(odd) td {
    background-color: #fac5bc;
    border: 1px solid #727272  !important;
}

/* PARAMETER COLUMN */
#product-specs-table td:first-child {
    font-weight: 500;
    width: 35%;
}

/* SPECIFICATION COLUMN */
#product-specs-table td:last-child {
    width: 65%;
}

/* ==================================================
   RESPONSIVE – MOBILE FRIENDLY
================================================== */

@media (max-width: 768px) {

    #product-specs-table,
    #product-specs-table tr,
    #product-specs-table td,
    #product-specs-table th {
       
        width: 100%;
    }

   
    /* Row card style */
    #product-specs-table tr {
        margin-bottom: 18px;
        border: 1px solid rgba(255,255,255,0.25);
    }

    /* Parameter */
    #product-specs-table td:first-child {
        background-color: #1c334d;
        font-weight: 600;
    }

    /* Specification */
    #product-specs-table td:last-child {
        background-color: #243f5c;
    }

    #product-specs-table td {
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    #product-specs-table td:last-child {
        border-bottom: none;
    }

    .product-specifications-title {
        text-align: center !important;
    }

}


/* ============================ BLOG GRID ================================ */

/* ===============================
   BLOG SLIDER WRAPPER
   =============================== */
.sam-blog-slider {
    position: relative;
}


/* ===============================
   BLOG CARD
   =============================== */
/* ===============================
   BLOG SLIDER WRAPPER (OWL FIX)
   =============================== */
.sam-blog-slider {
    position: relative;
    padding: 30px 20px; /* space for shadow + arrows */
}


/* ===============================
   BLOG CARD
   =============================== */
.sam-blog-card {
    background: #fff;
   
   

    /* allow shadow on all sides */
    overflow: visible;

    /* clean 4-side shadow */
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.10);

    display: flex;
    flex-direction: column;

    transition: transform .3s ease, box-shadow .3s ease;
}

.sam-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.14);
}


/* ===============================
   BLOG IMAGE
   =============================== */


.sam-blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  
}


/* ===============================
   BLOG CONTENT
   =============================== */
.sam-blog-content {
    padding: 25px;
    height:100%;
    display: flex;
    flex-direction: column;
    font-family: "Poppins", Sans-serif !important; 
}


/* ===============================
   BLOG TITLE
   =============================== */
.sam-blog-title {
    font-size: 20px !important;
    line-height: 26px;
    font-weight: 600 !important;
    color: #203753 !important;
    margin-bottom: 12px;
    margin-top: 10px !important;
    font-family: "Montserrat", Sans-serif !important; 

    /* keep equal card height */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sam-blog-title a {
    color: inherit;
    text-decoration: none;
}

.sam-blog-title a:hover {
    text-decoration: underline;
}


/* ===============================
   BLOG EXCERPT
   =============================== */
.sam-blog-excerpt {
    font-size: 16px !important;
    line-height: 1.65;
    color: #2e2e2e !important;
    margin-bottom: 18px;
  
}

.sam-blog-date {
    color: #2e2e2e !important;
}


/* ===============================
   READ MORE
   =============================== */
.sam-read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #D30404 !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .2s ease;
}

.sam-read-more:hover {
    transform: translateX(4px);
}


/* ===============================
   OWL NAV – ARROWS
   =============================== */
.sam-blog-slider .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}

.sam-blog-slider .owl-nav button {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff !important;
    border: 1.5px solid #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: background .2s ease;
}

.sam-blog-slider .owl-prev {
    left: 10px;
}

.sam-blog-slider .owl-next {
    right: 10px;
}

.sam-blog-slider .owl-nav button span {
    font-size: 18px;
    color: #000;
}

.sam-blog-slider .owl-nav button:hover {
    background: #000 !important;
}

.sam-blog-slider .owl-nav button:hover span {
    color: #fff;
}


/* ===============================
   RESPONSIVE – TABLET
   =============================== */
@media (max-width: 1024px) {

    .sam-blog-image img {
        height: 200px;
    }

    .sam-blog-content {
        padding: 22px;
    }

    .sam-blog-title {
        font-size: 18px;
    }

    .sam-blog-excerpt {
        font-size: 14.5px;
    }
}


/* ===============================
   RESPONSIVE – MOBILE
   =============================== */
@media (max-width: 767px) {
  

    .sam-blog-image img {
        height: 180px;
    }

    .sam-blog-content {
        padding: 18px;
    }

    .sam-blog-title {
        font-size: 16.5px;
        line-height: 1.4;
    }

    .sam-blog-excerpt {
        font-size: 14px;
    }

    .sam-blog-readmore {
        font-size: 13.5px;
    }

    /* swipe UX */
    .sam-blog-slider .owl-nav {
        display: none;
    }
}


/* ===============================
   BLOG CONTENT
   =============================== */
.sam-blog-content {
    padding: 25px;
   
    display: flex;
    flex-direction: column;
}

/* Title */
.sam-blog-title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;

}

.sam-blog-title a {
    color: inherit;
    text-decoration: none;
}

.sam-blog-title a:hover {
    text-decoration: underline;
}

/* Excerpt */
.sam-blog-excerpt {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 18px;
    
}

/* Read more */
.sam-blog-readmore {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .2s ease, color .2s ease;
}

.sam-blog-readmore:hover {
    transform: translateX(4px);
}


/* ===============================
   OWL NAV – IMAGE ARROWS
   =============================== */
.sam-blog-slider .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    pointer-events: none;
}

.sam-blog-slider .owl-nav button {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff !important;
    border: 1.5px solid #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: background .2s ease;
}

.sam-blog-slider .owl-prev {
    left: 12px;
}

.sam-blog-slider .owl-next {
    right: 12px;
}

.sam-blog-slider .owl-nav button span {
    font-size: 18px;
    color: #000;
}

.sam-blog-slider .owl-nav button:hover {
    background: #000 !important;
}

.sam-blog-slider .owl-nav button:hover span {
    color: #fff;
}


/* ===============================
   RESPONSIVE – TABLET
   =============================== */
@media (max-width: 1024px) {

    .sam-blog-image img {
        height: 200px;
    }

    .sam-blog-content {
        padding: 22px;
    }

    .sam-blog-title {
        font-size: 18px;
    }

    .sam-blog-excerpt {
        font-size: 14.5px;
    }

    .sam-blog-slider .owl-nav {
        top: 38%;
    }

    .sam-blog-slider .owl-nav button {
        width: 44px;
        height: 44px;
    }
}


/* ===============================
   RESPONSIVE – MOBILE
   =============================== */
@media (max-width: 767px) {


    .sam-blog-image img {
        height: 180px;
    }

    .sam-blog-content {
        padding: 18px;
    }

    .sam-blog-title {
        font-size: 16.5px;
        line-height: 1.4;
    }

    .sam-blog-excerpt {
        font-size: 14px;
        line-height: 1.6;
    }

    .sam-blog-readmore {
        font-size: 13.5px;
    }

    /* Hide arrows on mobile (swipe) */
    .sam-blog-slider .owl-nav {
        display: none;
    }
}



/* ============================ SINGLE BLOG ============================== */

.sam-single-blog {
    padding: 80px 0;
}

.sam-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.sam-back-link {
    margin-bottom: 30px;
}

.sam-back-link a {
    color: #c40000;
    font-weight: 600;
    text-decoration: none;
}

.sam-single-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sam-single-image img {
    width: 100%;
    border-radius: 12px;
    max-height: 600px;
}

.sam-single-title {
    font-size: 36px;
    line-height: 1.3;
    color: #c40000;
    margin-bottom: 15px;
    margin-top: 0;
}

.sam-single-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.sam-single-excerpt {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.sam-single-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .sam-single-header {
        grid-template-columns: 1fr;
    }

    .sam-single-title {
        font-size: 28px;
    }
}


.product-tabs-nav .product-tab-btn:last-child {
    margin-bottom: 0;
}
.product-tabs-content{
    background: #fff4f4;
}
.products-grid-slick  .slick-list{
    padding:20px 0 !important;
}

.product-first-section{
    padding-bottom: 60px !important;
}