img { width: 100%; height: auto; object-fit: cover; }
.custom-heading {
    position: relative;
    display: inline-block;
    font-size: 120px;
    font-weight: 330;
    font-family: 'Montserrat', sans-serif;
  }
  
  .custom-heading::after {
    content: url("https://darkgray-swan-211408.hostingersite.com/wp-content/uploads/2025/09/Star-1-2.svg");
    position: absolute;
    top: 24px;
    right: 40px;
    width: 40px;
    height: auto;
  }
  
  /*Large screens 1367–1200px */
  @media (max-width: 1367px) and (min-width: 1200px) {
    .custom-heading {
      font-size: 100px;
    }
    .custom-heading::after {
        top: 41px;
        right: 60px;
        width: 30px;
    }
  }
  
  /*Medium screens 1224px */
  @media (max-width: 1224px) {
    .custom-heading {
      font-size: 80px;
    }
    .custom-heading::after {
        top: 41px;
        right: 40px;
        width: 30px;
    }
  }
  
  /*Tablets ~880px */
  @media (max-width: 880px) {
    .custom-heading {
      font-size: 60px;
    }
    .custom-heading::after {
        top: 44px;
        right: 14px;
        width: 24px;
    }
  }
  
  /* 🔹 Mobile up to 767px */
  @media (max-width: 767px) {
    .custom-heading {
      font-size: 31px;
    }
    .custom-heading::after {
      top: 62px;
      right: 185px;
      /* margin: 0px; */
      width: 10px !important;
  }
  }
  /* Animate only icon list with class .marquee-icons */
.marquee-icons {
  --gap: 3rem;          /* space between items */
  --speed: 35s;          /* slower speed */
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-icons .elementor-icon-list-items {
  display: inline-flex;
  gap: var(--gap);
  animation: marquee-scroll var(--speed) linear infinite;
  min-width: max-content;
  
  /* Make it start immediately */
  transform: translateX(0);
}

.marquee-icons .elementor-icon-list-item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Default: transparent header 9 sept 2025*/
/* Default state = transparent */
.elementor-element-a087fe9 {
  background: transparent !important;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

/* When sticky activates */
.elementor-element-a087fe9.elementor-sticky--effects {
  background-color: #F8ECDB !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/*style for partial slider resources page addded 10 sept 2025*/
/* Only affects carousel with the custom class */
.partial-slide-carousel .swiper-wrapper {
  padding-right: 15% !important;
  box-sizing: content-box;
}

.partial-slide-carousel .swiper-slide {
  width: auto !important;
}


.partial-slide-carousel .swiper-slide {
  width: auto !important; /* lets Swiper calculate slide width */
}
/* Tablet & Mobile - single full slide, no partial */
@media (max-width: 1200px) {
  .partial-slide-carousel .swiper-wrapper {
    padding-right: 0 !important; /* remove peek */
  }

  .partial-slide-carousel .swiper-slide {
    width: 100% !important; /* full slide width */
  }
}
.our-journey .journey-container:hover h3,
.our-journey .journey-container:hover p {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

/*contact form style*/
/* ===== Reset All Inputs & Textareas ===== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  border: none !important;              
  border-bottom: 2px solid #ccc !important; 
  background: transparent !important;   
  border-radius: 0 !important;          
  padding: 6px 0 !important;            
  font-size: 16px !important;
  color: #000 !important;
  width: 100% !important;
  box-shadow: none !important;          
  margin: 0 !important;                 /* remove extra space */
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 label,
.wpcf7 ::placeholder,
.wpcf7 .wpcf7-submit {
  font-family: 'Montserrat', sans-serif !important;
}

/* ===== On Focus ===== */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-bottom: 2px solid #6B4033 !important;
  outline: none !important;
}

/* ===== Labels ===== */
.wpcf7 label {
  /* display: block; */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px; /* tighter than before */
  color: #000;
}

/* ===== Placeholders ===== */
.wpcf7 ::placeholder {
  color: #999;
  font-size: 14px;
  opacity: 1;
}

/* ===== Grid Layout ===== */
.contact-form-grid {
  display: grid;
  gap: 15px; /* reduced from 25px */
}

.contact-form-grid .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* reduced from 30px */
}

.contact-form-grid .full-width {
  grid-template-columns: 1fr;
}

/* ===== Message textarea ===== */
.wpcf7 textarea {
  height: 100px !important; /* reduced height */
  resize: none;
  line-height: 1.5;
  margin: 0 !important;
}

/* ===== Submit Button (cleaned up single version) ===== */
.wpcf7 .wpcf7-submit {
  background: #6B4033 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 24px !important; /* reduced height */
  font-size: 15px !important;
  width: auto !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  float: right;
  margin-top: 10px; /* small spacing above */
}

.wpcf7 .wpcf7-submit:hover {
  background: #6B4033 !important;
  color: #F6C072 !important;
}


.heading-with-icon {
  position: relative;
  display: inline-block;
  font-size: 120px;
  font-weight: 330;
  font-family: 'Montserrat', sans-serif;
}
/* ===== Responsive (Mobile) ===== */
@media (max-width: 768px) {
  .contact-form-grid .form-row {
    grid-template-columns: 1fr !important; /* force single column */
    gap: 15px; /* tighter spacing for mobile */
  }

  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 textarea {
    font-size: 14px !important; /* slightly smaller text for mobile */
  }

  .wpcf7 .wpcf7-submit {
    width: 100% !important;   /* full width button on mobile */
    float: none !important;   /* center it */
    margin-top: 15px !important;
  }
}


.heading-with-icon::after {
  content: url("https://darkgray-swan-211408.hostingersite.com/wp-content/uploads/2025/09/Vector-8.svg");
  position: absolute;
  top: -73px;
  right: 216px;
  width: 40px;
  height: auto;
}

/* Large screens 1367–1200px */
@media (max-width: 1367px) and (min-width: 1200px) {
  .heading-with-icon {
      font-size: 100px;
  }
  .heading-with-icon::after {
    top: -51px;
    right: 226px;
    width: 30px;
}
}

/* Medium screens 1224px */
@media (max-width: 1224px) {
  .heading-with-icon {
      font-size: 80px;
  }
  .heading-with-icon::after {
    top: -26px;
    right: 409px;
    width: 33px;
}
}

/* Tablets ~880px */
@media (max-width: 880px) {
  .heading-with-icon {
      font-size: 60px;
  }
  .heading-with-icon::after {
    top: -5px;
    right: 325px;
    width: 24px;
}
}

/* Mobile up to 767px */
@media (max-width: 767px) {
  .heading-with-icon {
      font-size: 27px;
  }
  .heading-with-icon::after {
    top: 7px;
    right: 165px;
    width: 10px !important;
}

form.wpcf7-form.init {
  max-width: 350px!important;
  padding: 0px !important;
}
.wpcf7 input[type="file"] {
  cursor: pointer;
  max-width: 350px !important;
}
}
/*style for about us pg innovative cards box*/
/*for blur visiblity of table overlay image added 11 sept 2025*/
.glass-box {
  background: #FFFFFF33;               /* white with 20% opacity */
  backdrop-filter: blur(2px);         
  -webkit-backdrop-filter: blur(2px); 
}

/*home product full width css*/
/* .full-product-grid {
  display: grid; 
} /* or flex depending on your setup */

/* .full-product-grid .elementor-loop-item:last-child,
.full-product-grid .elementor-post:last-child,
.full-product-grid .product:last-child,
.full-product-grid li.product:last-child { */
  /* grid-column: 1 / -1 !important;    
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;              
  justify-self: start !important;    
} */

/*new launch badge style added 12-09-2025*/
.new-launch-badge {
  
  top: 10px;
  left: 10px;
  background-color: #5F803F;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 1;
  z-index: 10;
}
.elementor-post {
  position: relative;
}

/*17 sept 2025 style for home product vertical center btn*/

.hover-card-wrapper {
  position: relative;
}

.card-btn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.hover-card-wrapper:hover .card-btn-center {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.05);
}
/* @media (min-width: 1366px) and (max-width: 1919px) {
  .elementor-309 .elementor-element.elementor-element-433a2f5:not(.elementor-motion-effects-element-type-background), .elementor-309 .elementor-element.elementor-element-433a2f5 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: var( --e-global-color-29a2249 );
    background-image: url("https://darkgray-swan-211408.hostingersite.com/wp-content/uploads/2025/09/Group-23-1.svg");
    background-position: 69em 30vh !important;
    background-repeat: no-repeat;
    background-size: 19% auto !important;
}
} */


[type=button], 
[type=submit], 
button {
    background-color: #6B4033 !important;
    font-family: "Cabin", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    padding: 10px 20px !important;
    color: #fff !important; /* default text color */
    border: none !important;
    border-radius: 3px !important;
    transition: all .3s ease !important;
    cursor: pointer !important;
}

/* Hover effect: only text color changes */
[type=button]:hover, 
[type=submit]:hover, 
button:hover {
    color: #F6C072 !important;
}

.cat-item a {
  color: #622D1D !important;
  text-decoration: none !important; /* optional: removes underline */
  transition: color .3s ease !important;
}

.wp-block-latest-posts__post-title {
  color: #622D1D !important;
  text-decoration: none !important;
  transition: color .3s ease !important;
}

/* Categories, Latest Posts, and Archives links */
.cat-item a,
.wp-block-latest-posts__post-title,
.wp-block-archives-list a {
    color: #622D1D !important;
    text-decoration: none !important;
    transition: color .3s ease !important;
}

/* Categories, Latest Posts, Archives, and Post Titles */
.cat-item a,
.wp-block-latest-posts__post-title,
.wp-block-archives-list a,
.entry-title a {
    color: #622D1D !important;
    text-decoration: none !important;
    transition: color .3s ease !important;
}

/*font for sidebar 2oct 2025*/
.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container, .e-con>.elementor-widget>.elementor-widget-container {
  font-family: 'Cabin' !important;
  }

/*css for our journey section*/
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  padding: 50px 0;
}

/* central line – only visible between first & last items  added 7oct2025*/
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 70px; /* start below first icon */
  bottom: 150px; /* end above last icon */
  width: 2px;
  background: #d9d9d9;
  transform: translateX(-50%);
  z-index: 1;
}

/* timeline item setup */
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 60px;
}

.timeline-year {
  width: 35%;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 45px;
  color: #000;
  padding-right: 30px;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.timeline-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.timeline-content {
  width: 40%;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #000;
  line-height: 1.6;
  padding-left: 30px;
}
/* Remove line before first and last items */
.timeline-item:first-child::before,
.timeline-item:last-child::after {
  content: none;
}

/* responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
    bottom: 100px;
  }
  .timeline {
    padding: 0px 0;
}
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 30px;
  }

  .timeline-year {
    text-align: left;
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
   font-size: 35px;
  }

  .timeline-icon {
/*     position: relative; */
    left: 0;
    top: 0;
    transform: none;
    margin-bottom: 10px;
    width: 40px;
    height: 40px
  }

  .timeline-content {
    width: 100%;
    padding-left: 0;
    font-size: 16px;
  }
}
/* Remove line before first and last items */
.timeline-item:first-child::before,
.timeline-item:last-child::after {
  content: none !important;
}

/* Mobile/Tablet layout: icon → year → content */
@media (max-width: 1024px) {
.timeline::before {
    top: 20px;
    left:17px !important;
}
 .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 35px;
/*     gap: 10px; */
}

  .timeline-icon {
/*     position: relative; */
    left: 0;
    top: 0;
    transform: none;
    margin-bottom: 10px;
    width: 35px;
    height: 35px;
}

  .timeline-year {
    order: 2;
    text-align: left;
    width: auto;
    padding: 0;
    margin-bottom:0px !important;
    margin-left: 30px;
    margin-top: -5px;
  }

  .timeline-content {
    order: 3;
    width: auto;
    padding-left: 31px;
   font-size: 15px !important;
  }

}

/*css added to buttons all over site has cosistence height width added 17oct2025*/
/* Fixed size button */
/* Fixed size for Elementor buttons with drumini-btn class on container */
.drumini-btn .elementor-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 180px !important;
    height: 38px !important;
    padding: 0 !important;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
    padding:10px 25px 10px 25px !important;
}

/*css to reduce margin bottom for blog title*/
.custom-blog-title {
  margin-block-end: -1rem;
}
/*added css for no job opening available message career page*/
body.no-jobs .elementor-element-5682500,
body.no-jobs .elementor-element-5682500 .elementor-widget-container,
body.no-jobs .elementor-element-5682500 .e-loop-nothing-found-message {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
}
.no-openings {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  
}
/*category slider styles*/
.category-swiper { width: 100%; max-width: 600px; margin: auto; }
/* Default: Large screens (1920px and above) */
.category-swiper img {
width: 100%;
height: 662px;
object-fit: cover;
}

/* Laptop screens (between 1366px and 1919px) */
@media (max-width: 1919px) and (min-width: 1366px) {
.category-swiper img {
height: 663px;
}
}

/* Tablets (between 769px and 1365px) */
@media (max-width: 1365px) and (min-width: 768px) {
.category-swiper img {
height: 600px;
}
.category-swiper {
width: 100%;
max-width: 720px;

}
}

/* Mobiles (up to 767px) */
@media (max-width: 767px) {
.category-swiper img {
height: 306px;
}
}

/* Pagination bullets */
.category-swiper .swiper-pagination-bullet {
background-color: rgba(0, 0, 0, 0.2);
opacity: 1;
}

.category-swiper .swiper-pagination-bullet-active {
background-color: #ffffff !important;
opacity: 1;
}

/*category details styles*/
/* Category Details Section */
.category-details-container {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Each block */
.category-detail-block {
  margin-bottom: 10px;
  margin-top: 10px;
}

/* Heading (e.g., “Available Finishes”) */
.category-detail-heading {
  font-family: "Montserrat", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 22.5px;
  color: #838383;
  margin-bottom: 5px;
}

/* Content text (e.g., “Raw, Pre-Laminated”) */
.category-detail-content {
  font-family: "Cabin", Sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: #272727;
}

/* Divider styling */
.category-detail-divider {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}








/* Start download catglog pdf form css  */
/* 🌟 Popup Form Styling */
.atscatpop .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.atscatpop .wpcf7-form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.atscatpop .wpcf7-form-control:focus {
  border-color: #622D1D;
  box-shadow: 0 0 0 3px rgba(244, 90, 94, 0.1);
  outline: none;
}

/* Error states */
.atscatpop .wpcf7-not-valid {
  border-color: #622D1D !important;
}

.atscatpop .wpcf7-not-valid-tip {
  color: #622D1D;
  font-size: 13px;
}

/* Submit button */
.atscatpop .wpcf7-submit {
  background: #622D1D;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.atscatpop .wpcf7-submit:hover {
  background: #622D1D;
}

/* Success & error messages */
.atscatpop .wpcf7-response-output {
  margin-top: 10px;
  font-size: 14px;
  border-radius: 6px;
  padding: 10px;
}

.atscatpop .wpcf7-mail-sent-ok {
  color: #2ecc71;
  border: 1px solid #2ecc71;
}

.atscatpop .wpcf7-validation-errors {
  color: #e67e22;
  border: 1px solid #e67e22;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .atscatpop .wpcf7-form-control {
    font-size: 14px;
  }
}


/* Ends download catglog pdf form css  */

/* =======================================================
   Popup Container (Full-Screen Overlay)
   ======================================================= */
   .atscatpop-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none; /* ✅ Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* =======================================================
     Popup Box
     ======================================================= */
  .atscatpop {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    position: relative;
    animation: atspopfadein 0.3s ease;
  }
  
  /* Popup fade-in animation */
  @keyframes atspopfadein {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }
  
  /* =======================================================
     Close Button
     ======================================================= */
  .atscatpop-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
  }
  
  .atscatpop-close:hover {
    color: #622D1D;
  }
  
  /* =======================================================
     Form Styling (inside popup)
     ======================================================= */
  .atscatpop .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .atscatpop .wpcf7-form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .atscatpop .wpcf7-form-control:focus {
    border-color: #622D1D;
    box-shadow: 0 0 0 3px rgba(244,90,94,0.1);
    outline: none;
  }
  
  /* Submit Button */
  .atscatpop .wpcf7-submit {
    background: #622D1D;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .atscatpop .wpcf7-submit:hover {
    background: #622D1D;
  }
  
  /* =======================================================
     Thank You Message
     ======================================================= */
  .atscatpop-thank {
    text-align: center;
  }
  
  .atscatpop-thank a {
    display: inline-block;
    margin-top: 10px;
    background: #622D1D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
  }
  
  .atscatpop-thank a:hover {
    background: #622D1D;
  }
  


