/* Fonts and base */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Heebo:wght@100..900&display=swap');

:root {
            --white: #ffffff;
            --off-white: #f8f9fa;
            --black: #111111;
            --matt-black: #1c1c1c;
            --light-gray: #e9ecef;
            --medium-gray: #6c757d;
            --dark-gray: #343a40;
            --transition: all 0.3s ease;
            
            --black: #000000;
            --matte-black: #1a1a1a;
            --white: #ffffff;
            --off-white: #f8f8f8;



            --sec-bg:#ffffff;
            --sec-soft:#f7f7f7;
            --text:#151515;
            --muted:#6b6b6b;
            --border:#e9e9e9;
            --btn:#111;
            --btnText:#fff;
        }

body {
  font-family: "Heebo", sans-serif;
  margin: 0;
  padding: 0;
}

a{
    color: #111;
    text-decoration: none;
}
.section-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Cinzel', serif;
}
p.section-sub-title {
    text-align: center;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 15px;
    color: #111;
    letter-spacing: 3px;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #ccc;
  border-top-color: #111;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Header Base ===== */
#mainHeader .container-fluid {
  background: #f8f9fa;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 75px;
  display: flex;
  align-items: center;
}

.container-fluid {
  width: 100%;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== Logo ===== */
.logo-left img {
  height: 45px;
  width: 300px;
  filter: brightness(0);
}

/* ===== Navigation ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: 'Heebo', sans-serif;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #000;
}

/* ==============================Shop Button (with border style) ========================== */
.btn-shop {
  background: #111;
  color: #fff !important;
  border: 2px solid #111;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: 'Heebo', sans-serif;
  transition: all 0.3s ease;
}

.btn-shop:hover {
  background: #fff;
  color: #111 !important;
  border-color: #111;
}

/* ================================= Mobile Styles ========================== */
#menuToggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #111;
  cursor: pointer;
}

.mobile-logo a img {
    height: 65px;
}

#mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 2000;
  padding: 50px;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

body.menu-open #mobileMenu {
  display: block;
}

#menuClose {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #111;
  cursor: pointer;
}

#mobileMenu nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

#mobileMenu nav a {
  font-size: 1.6rem;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

/* ========================= Mobile Dropdown ========================= */
.mobile-dropdown .mobile-drop-btn {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.mobile-drop-content {
  display: none;
  flex-direction: column;
  margin-top: 5px;
  margin-left: 10px;
}

.mobile-drop-content.show {
  display: flex;
}

.mobile-drop-content a {
  font-size: 1rem;
  padding: 5px 0;
  text-transform: none;
}

/* ====================== Mobile Shop Button ====================== */
.btn-shop-mobile {
  display: inline-block;
  background: #111;
  color: #fff !important;
  text-align: center;
  padding: 12px 25px;
  border-radius: 25px;
  margin-top: 20px;
}

/* ========================== Responsive ====================== */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  #menuToggle {
    display: block;
  }
  .container-fluid {
    padding: 0 25px;
  }
  .logo-left img {
    height: 45px;
  }
}

/* =========================== Animation ====================== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================================Slider===================================*/

.video-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)); /* Optional gradient */
  z-index: 2; /* Between image and text */
}

.video-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 78px;
}
.video-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.video-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.video-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 5;
  max-width: 800px;
}
.slide-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}
.slide-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 25px;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
  font-family: 'Cinzel', serif;
}
.slide-content a {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 1rem;
  padding: 10px 30px;
  transition: background 0.3s ease, color 0.3s ease;
}
.slide-content a:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

/* Slider dots */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 0; /* square */
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
  background-color: #111; /* red color */
  transform: scale(1.1);
}


/* Responsive */
@media (max-width: 768px) {
  .desktop-menu {
    display: none !important;
  }
  #mobileMenu ul li a {
    font-size: 1.1rem;
  }
}

/* ================================================== */
/* BRANDS SECTION */
/* ================ */
.brands-section {
  background-color: #fff;
  padding: 100px 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.brands-heading {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.brands-list {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  color: var(--primary-color);
}

.brands-message {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  margin-bottom: 50px;
  color: var(--text-dark);
}


/* =================================About section================================== */
.contact-info.bg-coninfo {
    background: rgb(28, 28, 28);
    padding: 70px 40px 50px 40px;
}
.contact-column.con-info {
    margin: auto;
}
img.img-fluid.sml-img {
  width: 75%;
  height: 100%;
  margin-top: -150px;
  margin-left: 255px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
p.lead.text-white {
    font-size: 17px;
    font-weight: 400;
    font-family: 'Heebo', serif;
    width: 50%;
    margin: auto;
}
.aboutsec-home {
  padding-left: 100px;
}

a.btn.about-more.px-4.py-2 {
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 14px 40px 10px 40px !important;
}

a.btn.about-more.px-4.py-2:hover {
  background: #fff;
  color: #111;
  border: 1px solid #111;
}

h2.about-heading.mb-3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.aboutsec-home p {
  font-size: 0.95rem;
  text-align: justify;
  line-height: 1.7;
}

/* =========================== Responsive CSS ================================ */

@media (max-width: 1199.98px) {
  .aboutsec-home {
    padding-left: 50px;
  }
  img.img-fluid.sml-img {
    margin-left: 180px;
    width: 70%;
  }
}

@media (max-width: 991.98px) {
  .aboutsec-home {
    padding-left: 0;
    margin-top: 30px;
  }
  img.img-fluid.sml-img {
    margin-left: 100px;
    width: 80%;
    margin-top: -100px;
  }
}

@media (max-width: 767.98px) {
  .abt-img {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  img.img-fluid.sml-img {
    margin-left: 0;
    margin-top: -60px;
    width: 70%;
  }

  .aboutsec-home {
    padding-left: 0;
    text-align: center;
  }

  .aboutsec-home p {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  img.img-fluid.sml-img {
    width: 85%;
    margin-top: -40px;
  }

  h2.about-heading.mb-3 {
    font-size: 1.1rem;
  }

  a.btn.about-more.px-4.py-2 {
    font-size: 12px;
    padding: 8px 20px;
  }
}


/* ================================Our Experience Matters Area Started==================================== */

.design-top {
    margin-top: 60px;
}

.designtop-btf {
    margin-top: 120px;
}
.design-top-btt {
    margin-top: 90px;
}
.category-card h4 a {
    color: white;
    text-decoration: none;
}
.category-card h4 a:hover {
    color: #111;
}





.stats-section {
    position: relative;
    background: rgb(28, 28, 28);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.95);
  z-index: 0;
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stat-box {
  /* border-left: 1px solid rgba(255, 255, 255, 0.2); */
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  /* padding: 20px; */
}

@media (max-width: 767.98px) {
  .stat-box {
    border: none;
    padding: 10px 0;
  }
}

/* ==============================Form Buyer========================== */
 .form-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
        .form-label {
            font-weight: 500;
        }
        .form-check-label {
            margin-right: 20px;
        }
 
        h2.order-tt {
    font-size: 32px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}
.form-section h4 {
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Heebo', serif;
}
h4.gty-size {

  font-size: 18px;
    text-transform: uppercase;
    font-family: 'Heebo', serif;
}

/* ============================Our why choose us Area Started============================== */

    .why-choose-section {
      padding: 60px 0;
    }

    .feature-card {
      background: #ffffff;
      border-radius: 15px;
      padding: 13px 10px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    }

    .feature-icon {
      font-size: 40px;
      color: #111;
    }

    .feature-title {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #222;
    }

    .feature-desc {
      font-size: 0.95rem;
      color: #555;
    }
.feature-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 13px 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  color: #222;
}

.feature-card:hover {
  background-color: #111; /* Bootstrap red */
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-desc,
.feature-card:hover .feature-icon {
  color: #fff;
}



.brand-img .container-fluid {
  display: block !important;
  padding: 0 15px !important;
}


/* ===============================Brand Image Slider Area Started============================== */

section.brand-img.py-5 {
    background: #f8f9fa;
    padding-top: 30px;
}
.slide.slick-slide img {
    width: 65px;
    height: 55px;
}

.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
    height: 100px;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* ======================Testimonial Area Started======================== */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background:#111;
}
.test-success a {
    font-size: 15px;
    font-family: 'Heebo';
    text-transform: uppercase;
    padding: 15px 30px 15px 30px;
    background: none !important;
    color: #fff !important;
}
.test-success a:hover{
  background: #fff !important;
  color: #111 !important;
}

.testimonial-box {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: auto;
    margin-bottom: 30px; /* gap bottom */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.testimonial-box .avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 auto 10px;
}

.testimonial-box .star-success {
    color: #1a1a1a;
    margin-bottom: 10px;
}

.testimonial-box .star-success i {
    margin-right: 2px;
}

/* Only description scrollable */
.testimonial-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-y: auto;
    max-height: 6.5em; /* ~3 lines */
    padding-right: 5px;
    margin-bottom: 15px;
}

.testimonial-text::-webkit-scrollbar {
    width: 4px;
}

.testimonial-text::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 2px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-position {
    font-size: 0.85rem;
    color: #a0a0a0;
}

/* Responsive adjustments */
@media(max-width:1200px) {
    .testimonial-box { height: 320px; }
}
@media(max-width:992px) {
    .testimonial-box { height: 300px; }
}
@media(max-width:768px) {
    .testimonial-box { height: auto; }
    .testimonial-text { max-height: 150px; overflow-y: auto; }
}


/* ================================================= */
/* RESPONSIVE ADJUSTMENTS */
/* ================ */
@media (max-width: 992px) {
  .brands-section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  header .row {
    flex-direction: column;
  }
  
  .left-menu, .right-menu {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  
  .left-menu ul, .right-menu ul {
    justify-content: center;
  }
  
  .logo {
    order: -1;
    margin-bottom: 15px;
  }
  
  .video-slider {
    height: 80vh;
  }
}

@media (max-width: 576px) {
  nav ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li a {
    font-size: 0.8rem;
  }
  
  .video-slider {
    height: 70vh;
  }
  
  .slider-nav {
    bottom: 30px;
  }
  
  .brands-section {
    padding: 60px 0;
  }
}

    /* ======================================= */
        /* FOOTER STYLES */
        /* ================ */
        .footer-section {
            background: #f8f9fa;
            color: var(--black);
            padding: 70px 0 20px;
            position: relative;
        }

        .footer-min {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 40px;
            margin-bottom: 50px;
        }

        .footer-main-logo img {
            max-width: 230px;
            height: auto;
            /* filter: brightness(0) invert(1); */
        }

        .footer-main-content p {
            color: var(--black);
            font-size: 15px;
            line-height: 1.7;
            text-align: center;
            padding: 0 20px;
            font-family: 'Heebo', sans-serif;
        }

        /* Footer headings - Cinzel font */
        .footer-section h3,
        .footer-section h4 {
            color: var(--black);
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: 'Cinzel', serif;
        }

        .footer-section h3:after,
        .footer-section h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: var(--black);
        }

        .footer-about p {
            margin-bottom: 25px;
            color: var(--light-gray);
            font-family: 'Heebo', sans-serif;
        }

        .footer-contact p {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            color: var(--matt-black);
            font-family: 'Heebo', sans-serif;
        }

        .footer-contact i {
            margin-right: 12px;
            color: var(--black);
            margin-top: 4px;
            width: 16px;
            text-align: center;
        }

        .footer-services ul {
            list-style: none;
            padding: 0;
        }

        .footer-services ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 15px;
            font-family: 'Heebo', sans-serif;
        }

        .footer-services ul li:before {
            content: "▸";
            position: absolute;
            left: 0;
            color: var(--black);
            font-size: 0.9rem;
        }

        .footer-services ul li a {
            color: var(--black);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
            display: inline-block;
            font-family: 'Heebo', sans-serif;
        }

        .footer-services ul li a:hover {
            color: var(--black);
            transform: translateX(5px);
        }

        .footer-contact-info p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            color: var(--black);
            font-family: 'Heebo', sans-serif;
        }

        .footer-contact-info i {
            margin-right: 12px;
            color: var(--black);
            margin-top: 4px;
            width: 16px;
            text-align: center;
        }

        /* Request Form Button */
        .ttm-btn {
            display: inline-block;
            background: transparent;
            color: var(--black);
            border: 1px solid var(--black);
            padding: 12px 30px;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: var(--transition);
            border-radius: 0;
            font-family: 'Cinzel', serif;
        }

        .ttm-btn:hover {
            background: var(--matt-black);
            color: var(--light-gray);
        }

        /* Free Quote Phone */
        .free-queto {
            color: var(--black) !important;
            font-size: 1.25rem !important;
            font-weight: 600;
            margin-bottom: 15px !important;
            font-family: 'Heebo', sans-serif;
        }

        /* Social Icons */
        .footer-socialicon a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            color: var(--black);
            transition: var(--transition);
            margin-right: 8px;
        }

        .footer-socialicon a:hover {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
            transform: translateY(-3px);
        }

        .footer-socialicon {
            display: flex;
            justify-content: flex-end;
        }

        /* Copyright Section */
        .bottom-footer-text {
        background-color: #f8f9fa;
        padding: 25px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .copyright {
            color: var(--black);
            font-size: 0.9rem;
            font-family: 'Heebo', sans-serif;
        }

        .copyright a {
            color: var(--black);
            text-decoration: none;
            transition: var(--transition);
            font-family: 'Heebo', sans-serif;
        }

        .copyright a:hover {
            color: var(--matt-black);
        }


        /* Textile Industry Specific Styling */
        .textile-pattern {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, 
                var(--white) 0%, 
                var(--white) 20%, 
                transparent 20%, 
                transparent 40%, 
                var(--white) 40%, 
                var(--white) 60%, 
                transparent 60%, 
                transparent 80%, 
                var(--white) 80%, 
                var(--white) 100%);
            opacity: 0.1;
        }

        .fabric-texture {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

        /* ================ */
        /* RESPONSIVE STYLES */
        /* ================ */
        @media (max-width: 991px) {
            .footer-main-content p {
                padding: 0;
                margin-top: 20px;
            }
            
            .footer-socialicon {
                justify-content: flex-start;
                margin-top: 20px;
            }
            
            .footer-section h3:after,
            .footer-section h4:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            .footer-section {
                text-align: center;
                padding: 50px 0 0;
            }
            
            .footer-contact-info p,
            .footer-contact p {
                justify-content: center;
            }
            
            .footer-services ul li a:hover {
                transform: none;
            }
            
            .footer-min {
                padding-bottom: 30px;
                margin-bottom: 40px;
            }
            
            .footer-main-logo {
                text-align: center;
                margin-bottom: 20px;
            }
            
            .footer-main-logo img {
                margin: 0 auto;
            }
            
            .footer-section h3,
            .footer-section h4 {
                margin-top: 30px;
            }
        }

        @media (max-width: 576px) {
            .footer-socialicon {
                justify-content: center;
            }
            
            .footer-main-content p {
                font-size: 1rem;
            }
        }





  .abt-img img {
    width: 100%;
    height: 470px;
}

/* ================================== All page design css ============================= */

 /* Breadcrumb Section with Overlay */
        .breadcrumb-section {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }

        .breadcrumb-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(34, 45, 53, 0.8);
            z-index: 1;
        }

        .breadcrumb-content {
            position: relative;
            z-index: 2;
        }

        .breadcrumb-title {
          font-size: 36px;
          font-weight: 500;
          letter-spacing: 1px;
          margin-bottom: 0;
          text-transform: uppercase;
          font-family: 'Cinzel', serif;
        }


        /* ===========================Contact Section============================= */
        .contact-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .contact-container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .contact-column {
            flex: 1 1 100%;
        }
        .section-title.text-center.mb-5 p {
            font-size: 16px;
            text-transform: capitalize;
            font-family: 'Heebo', sans-serif;
        }

        @media (min-width: 768px) {
            .contact-column {
                flex: 1 1 48%;
            }
        }

        .contact-info, .contact-form {
            /* background: #fff; */
            padding: 30px;
            border-radius: 8px;
            /* box-shadow: 0 4px 10px rgba(0,0,0,0.05); */
        }

        .contact-info h3, .contact-form h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: #333;
            text-transform: uppercase;
            font-family: 'Cinzel', serif;
        }

        .contact-item {
            display: flex;
            margin-bottom: 20px;
        }

        .contact-icon {
            font-size: 20px;
            color: #fff;
            margin-right: 15px;
            margin-top: 3px;
        }

        .contact-text h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: #333;
            text-transform: uppercase;
            font-family: 'Cinzel', serif;
        }

        .contact-text p {
        font-size: 15px;
        margin: 0;
        color: #666;
        font-family: 'Heebo', serif;
    }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
    height: 40px;
    font-size: 14px;
    border-bottom: 1px solid rgb(28, 28, 28);
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: none !important;
    font-family: 'Heebo', serif;
}


        textarea.form-control {
            height: auto;
            min-height: 120px;
        }

       .submit-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    transition: background 0.3s;
    text-transform: uppercase;
}

        .submit-btn:hover {
            background: rgb(28, 28, 28);
        }

        /* a.send-whatsapp {
    background: #075E54;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    transition: background 0.3s;
    text-transform: uppercase;
    margin-left: 20px;
} */
        /* Map Section */
     section.map-contact-last {
    margin-bottom: -100px;
}

/* ==============================Team Area Started================================= */


.team-card {
      position: relative;
      transition: transform 0.3s ease;
    }

    .team-card:hover {
      transform: translateY(-5px);
    }

    .team-card img {
    width: 180px;
    height: 180px;
    display: block;
    border-radius: 50%;
    margin: auto;
}

    .team-info {
    padding: 20px;
    position: relative;
    width: fit-content;
    background: #fff;
    margin: auto;
}

    .team-info::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 3px;
      background-color: #111;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .team-card:hover .team-info::after {
      width: 80%;
    }

    .team-name {
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 5px;
      color: #222;
      text-align: center;
    }

    .team-position {
      font-style: italic;
      font-size: 0.95rem;
      color: #777;
      text-align: center;
    }
    .team-phone {
      text-align: center;
    }
    .team-phone a {
    color: #000000;
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
    }

    @media (max-width: 576px) {
      .social-icons {
        flex-direction: row;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        justify-content: center;
        padding: 10px 0;
        border-radius: 0;
        background: #111;
      }

      .team-card:hover .social-icons {
        left: 0;
      }
    }


    /* =================================Why Choose us area started============================ */

   .overlay-img {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 60%;
      border: 6px solid #fff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    @media (max-width: 768px) {
      .overlay-img {
        position: static;
        margin-top: 20px;
        width: 100%;
      }
    }
    .choose-card {
      border: none;
      background-color: #fff;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-radius: 16px;
    }
    .choose-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    }
    .choose-card .icon {
      width: 60px;
      height: 60px;
      line-height: 60px;
      margin: 0 auto 15px;
      background-color: #f0f4f8;
      border-radius: 50%;
    }


    #vision-mission .section-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--primary-color, #111);
}

#vision-mission .section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

#vision-mission .card-box {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

#vision-mission .card-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

#vision-mission .card-box .icon {
  color: var(--primary-color, #111);
}

#vision-mission h5 {
  font-weight: 600;
  color: #333;
}

#vision-mission p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  #vision-mission .card-box {
    padding: 2rem 1.2rem;
  }
}
.call-action h3 {
    font-size: 40px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}
.call-action a {
    padding: 14px 40px 14px 40px !important;
    background: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Heebo', serif;
    font-size: 15px;
    color: #111;
}
.call-action a:hover {
    color: #fff !important;
    background: #ffffff00 !important;
    border: 1px solid #fff;
}
.section-call {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    padding: 0 60px; /* More left padding for modern look */
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(0, 0, 0, 0.90) 100%
    ),
    url("../images/call.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

/* =================================== Testimonial Page started ======================== */
.testimonial-box01 {
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  
}

.quote-icon {
  font-size: 30px;
  color: #ccc;
}
section.py-5.tes-bg {
    background: rgb(28, 28, 28);
}
.star-success {
    color: #111;
}
.avatar.av-round {
    background: #111;
}
img.success-image {
    width: 80%;
    height: 600px;
    border: 4px solid #111;
    border-radius: 10px;
}
 v
.color-swatch {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 3px;
    /* border: 2px solid #ccc; */
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}
.color-swatch input {
    display: none;
}
.color-swatch input:checked + span {
    border: 2px solid #000;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
}


label.form-label {
    font-size: 14px;
    text-transform: capitalize;
    font-family: 'Heebo', serif;
}
input.buyer-fo {
    height: 40px;
    font-size: 14px;
    border: 1px solid rgb(28, 28, 28);
    font-family: 'Heebo', serif;
    border-radius: unset;
}

.form-select {
    font-size: 14px;
    border-radius: unset;
    height: 40px;
}

select.form-select.buyer-fo{
  height: 40px;
    font-size: 14px;
    border: 1px solid rgb(28, 28, 28);
    font-family: 'Heebo', serif;
    border-radius: unset;
    box-shadow: none;
}
textarea.form-control.buyer-fo{
    font-size: 14px;
    border: 1px solid rgb(28, 28, 28);
    font-family: 'Heebo', serif;
    border-radius: unset;
}

.form-check-input[type=checkbox] {
    border-radius: unset !important;
}

td.size-tab {
    font-size: 14px;
    height: 30px !important;
    padding: 0px 0px 0px 2px;
    padding-top: 14px;
}
input.form-control.tb-qty {
    height: 35px;
    border: 1px solid;
}





a.order-now-btnt {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    padding: 10px 20px 10px 20px;
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Rubik';
}
.order-partition {
    justify-content: space-between;
}

/* ====================================animation slider Area started================================= */
.custom-slide-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      min-height: 450px;
      background: #000;
      cursor: pointer;
    }

    .custom-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .custom-slide.active {
      opacity: 1;
    }

    .custom-slide img.main-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 4s ease;
    }

    .custom-slide-wrapper:hover .custom-slide.active img.main-img {
      transform: scale(1.08);
    }

    .custom-text-overlay {
      position: absolute;
      top: -100px;
      left: 0;
      right: 0;
      bottom: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      color: #fff;
      z-index: 3;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.2) 100%);
    }

    .custom-text-overlay h5,
    .custom-text-overlay p {
      opacity: 0;
    }

    /* Fixed bottom title */
    .custom-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    padding: 12px;
    text-align: start;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Inter';
    color: #fff;
    border-radius: 0 0 15px 15px;
    z-index: 4;
    pointer-events: none;
}

    /* Corner image */
.corner-img {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 150px;
    height: 110px;
    border-radius: 5px;
    border: 3px solid #fff;
    object-fit: cover;
    z-index: 5;
}

    @keyframes fadeUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }

    .animate-fadeUp {
      animation: fadeUp 0.8s ease forwards;
    }

/* ========================Faq Section Started=============================*/


    .news-section .section-title{
  font-weight: 400;
  color: #1e293b;
}

.news-card{
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: #ffffff;
}

.news-media{
  width: 100%;
  height: 450px;
  background: #f1f5f9;
  overflow: hidden;
}

.news-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-content{
  padding: 22px 26px 40px;
}

.news-title{
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 10px;
}

.news-text{
  color: #475569;
  margin: 0;
  line-height: 1.7;
  padding-bottom: 30px;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  filter: invert(35%) sepia(98%) saturate(3976%) hue-rotate(174deg)
          brightness(100%) contrast(97%);
}

/* Indicators */
.carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #111;
  opacity: .4;
}
.carousel-indicators .active{
  opacity: 1;
}

/* Mobile */
@media (max-width: 575.98px){
  .news-media{ height: 260px; }
  .news-title{ font-size: 16px; }
  .news-content{ padding: 16px; }
}


/* ========================All Product Page Area Started======================== */
/* section.product-section {
    margin-top: 115px;
} */
.nav-tabs {
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border: none;
    gap: 0.5rem;
  }

button.nav-link i {
    padding-right: 5px;
}
  .nav-tabs .nav-link {
    background-color: var(--off-white);
    color: var(--matt-black);
    font-weight: 400;
    border-radius: 50px;
    border: 1px solid var(--light-gray);
    width: 150px;
    text-align: center;
    transition: var(--transition);
    font-family: 'Heebo', sans-serif;
    padding: 0.6rem 0.3rem;
    font-size: 0.9em;
}

  .nav-tabs .nav-link:hover {
    background-color: var(--light-gray);
    color: var(--black);
  }

  .nav-tabs .nav-link.active {
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
    border-color: var(--black);
  }

  .product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .product-image-container {
    position: relative;
    overflow: hidden;
  }

  .product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
  }

  .product-card:hover img {
    transform: scale(1.03);
  }

  .product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--black);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .product-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .product-card .product-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-family: 'Heebo', sans-serif;
    color: var(--black);
    text-align: start;
    padding-left: 0;
    padding: 0;
}

  .product-card .product-specs {
    font-size: 0.95rem;
    color: var(--matt-black);
    margin-bottom: 1rem;
    /* flex-grow: 1; */
  }

  .product-card .product-specs b {
    font-weight: 600;
    color: var(--black);
  }

  .product-card .product-description {
    font-size: 0.9rem;
    color: var(--matt-black);
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .product-card .btn-quote {
    background-color: var(--black);
    color: var(--white);
    font-weight: 400;
    border: 1px solid var(--black);
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Heebo', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

  .product-card .btn-quote:hover {
    background-color: transparent;
    color: var(--black);
  }

  .modal-content {
    border-radius: 0;
    overflow: hidden;
    border: none;
  }

  .modal-header {
    background-color: var(--black);
    color: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
  }

  .modal-title {
    font-weight: 700;
  }

  .btn-close {
    filter: invert(1);
  }

  .modal-body {
    padding: 2rem;
    background-color: var(--off-white);
  }

  .form-label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
  }

  .form-control {
    border-radius: 0;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    background-color: var(--white);
  }

  .form-control:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.25);
  }

  .btn-submit {
    background-color: var(--black);
    color: var(--white);
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    transition: var(--transition);
    width: 100%;
  }

  .btn-submit:hover {
    background-color: var(--matt-black);
  }


  @media (max-width: 767px) {
    .product-card img {
      height: 220px;
    }
    .nav-tabs .nav-link {
      width: 100px;
      font-size: 0.9rem;
    }
    .section-title {
      font-size: 1.75rem;
    }
  }


 /* ========================Started Brand Story & Journey========================= */

.timeline-section {
    width: 100%;
    background: #f8f8f8;
    padding: 70px 0;
    font-family: 'Heebo', sans-serif;
}

.timeline-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
    font-family: 'Cinzel', serif;
}

.timeline-subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #444;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    width: 90%;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #000;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* TIMELINE ITEMS */
.timeline-item {
    width: 50%;
    padding: 20px 40px;
    position: relative;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item .content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #000;
}

.timeline-item.left .content {
    border-right: 4px solid #000;
    border-left: none;
}

.timeline-item h3 {
    font-family: 'Cinzel', serif;
    text-align: start;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.98em;
    line-height: 1.6em;
    color: #444;
    text-align: start;
}

/* DOTS */
.timeline-item:before {
    content: '';
    position: absolute;
    top: 20px;
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
    z-index: 10;
}

.timeline-item.left:before {
    right: -9px;
}

.timeline-item.right:before {
    left: -9px;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .timeline:before {
        left: 10px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 40px;
        text-align: left !important;
    }
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
    }
    .timeline-item.left .content,
    .timeline-item.right .content {
        border-left: 4px solid #000;
        border-right: none;
    }
    .timeline-item:before {
        left: 2px !important;
    }
}








/* .global-map-section {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    font-family: 'Heebo', sans-serif;
}

.global-map-section .section-title {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    margin-bottom: 8px;
}

.global-map-section .section-sub {
    opacity: 0.8;
    font-size: 16px;
}


.map-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin-top: 40px;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    opacity: 0.6;
    transition: transform 0.4s ease;  
}




.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.pin-dot {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #ffefba;
    animation: pulse 1.6s infinite;
}

.pin-info {
    display: none;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 12px;
    margin-top: 6px;
    border-radius: 6px;
}

.map-pin:hover .pin-info {
    display: block;
} */

/* ========= PIN POSITIONS ========= */


/* .pin-bd { top: 63%; left: 78%; }


.pin-germany { top: 40%; left: 54%; }

.pin-usa { top: 42%; left: 23%; }


.pin-canada { top: 33%; left: 20%; }


.pin-uk { top: 36%; left: 48%; }


.pin-spain { top: 48%; left: 46%; }


.pin-sweden { top: 30%; left: 52%; }


.pin-japan { top: 45%; left: 88%; }


.pin-netherlands { top: 35%; left: 51%; }


@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.7); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.9; }
} */


.custom-dual.no-gap {
    display: flex;
    width: 100%;
}

.custom-dual.no-gap .left-small {
    flex: 1;
}

.custom-dual.no-gap .right-large {
    flex: 2;
}

.custom-dual.no-gap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block; /* removes default whitespace */
}


/* ======================Gallery Area Started======================== */
/* =========================
   PRODUCT GALLERY + LIGHTBOX
   (CLEAN VERSION)
   ========================= */

/* ---------- GALLERY GRID ---------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

button.tab-btn.active {
    background-color: var(--black);
    color: #fff;
    font-weight: 600;
    border-color: var(--black);
    border-radius: 50px;
    border: 1px solid var(--light-gray);
    width: 150px;
    text-align: center;
    transition: var(--transition);
    font-family: 'Heebo', sans-serif;
    padding: 0.6rem 0.3rem;
    font-size: 0.9em;
}
button.tab-btn {
    background-color: var(--off-white);
    color: var(--matt-black);
    font-weight: 400;
    border-radius: 50px;
    border: 1px solid var(--light-gray);
    width: 150px;
    text-align: center;
    transition: var(--transition);
    font-family: 'Heebo', sans-serif;
    padding: 0.6rem 0.3rem;
    font-size: 0.9em;
    text-transform: uppercase;
}

/* ---------- PRODUCT CARD (FINAL) ---------- */
.product-gallery{
  background: var(--sec-bg, #fff);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border, #e9e9e9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: var(--transition, all 0.3s ease);
  opacity: 1;
  transform: scale(1);
}

.product-gallery:hover{
  transform: translateY(-10px);
  box-shadow: 0 28px 75px rgba(0,0,0,0.16);
  border: 1px solid #111;
}

.product-image{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-gallery:hover .product-image{
  transform: scale(1.08);
}

.product-name{
  padding: 16px 16px 18px;
  text-align: left;
  font-weight: 700;
  color: var(--text, #151515);
  font-size: .95rem;
  letter-spacing: 0.2px;
}

.product-name::after{
  content:"";
  display:block;
  width: 46px;
  height: 2px;
  margin-top: 10px;
  background: var(--matte-black, #1a1a1a);
  opacity: .55;
  border-radius: 999px;
}

/* category label hide (only filter use) */
.product-category{
  display: none;
}

/* ---------- FILTER (TAB) HELPERS ---------- */
.product-gallery.hidden{
  display: none !important;
}

/* Optional: If you want fade in animation when filter changes */
.product-gallery.active{
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(20px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ---------- LIGHTBOX ---------- */
.lightbox{
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active{
  display: flex;
  opacity: 1;
}

.lightbox-content{
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-img{
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.lightbox-caption{
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 1.1rem;
}

.close-btn{
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-btn:hover{ color: #ff4757; }

.nav-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  background: rgba(0,0,0,0.3);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.nav-btn:hover{ background: rgba(0,0,0,0.7); }

.prev-btn{ left: 30px; }
.next-btn{ right: 30px; }

/* ---------- RESPONSIVE GRID ---------- */
@media (max-width: 1200px){
  .gallery{ grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px){
  .gallery{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px){
  .gallery{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-image{ height: 190px; }

  .nav-btn{
    font-size: 30px;
    width: 50px;
    height: 50px;
  }

  .prev-btn{ left: 10px; }
  .next-btn{ right: 10px; }

  .close-btn{
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}

@media (max-width: 400px){
  .gallery{ grid-template-columns: 1fr; }
}


/* =========================Innovation & sustainability & Supply Chain============================= */

        /* base helpers */
  .px-section{
    background:var(--sec-bg);
    padding:72px 18px;
    font-family:var(--font-body);
  }
  .px-section.px-mini{
    background:var(--sec-soft);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  .px-wrap{
    max-width:1180px;
    margin:0 auto;
  }

  /* headings */
  .px-head{
    text-align:center;
    margin-bottom:34px;
  }
  /* .px-kicker{
    display:inline-block;
    letter-spacing:.22em;
    font-size:12px;
    color:var(--muted);
    text-transform:uppercase;
    margin-bottom:10px;
    font-family:var(--font-body);
  }
  .px-title{
    font-family:var(--font-title);
    font-size:34px;
    line-height:1.15;
    color:var(--text);
    margin:0 0 10px;
    font-weight:600;
  } */
  .px-sub{
    margin:0 auto;
    max-width:820px;
    color:var(--muted);
    font-size:16px;
    line-height:1.8;
    font-family:var(--font-body);
  }

  /* grid cards */
  .px-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin-top:26px;
  }
  .px-grid-4{
    grid-template-columns:repeat(4, 1fr);
  }
  .px-card{
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px 18px 16px;
    background:#fff;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .px-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 26px rgba(0,0,0,.06);
  }
  .px-card h4 {
    margin: 0 0 10px;
    font-size: 1.1em;
    color: var(--text);
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: uppercase;
}
  .px-list {
    margin: 0;
    padding-left: 18px;
    color: #212529bf;
    line-height: 1.7;
    font-size: 0.90em;
    font-family: 'Heebo';
}
  .px-note{
    margin-top:8px;
    color:var(--muted);
    font-size:0.90em;
    line-height:1.7;
    font-family:var(--font-body);
  }

  /* actions */
  .px-actions{
    margin-top:28px;
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
  }
  .px-btn{
    display:inline-block;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid var(--btn);
    background:var(--btn);
    color:var(--btnText);
    text-decoration:none;
    font-size:14px;
    letter-spacing:.04em;
    font-family:var(--font-body);
  }
  .px-btn.outline{
    background:transparent;
    color:var(--btn);
  }

  /* mini icons */
  .px-icon{
    width:44px;height:44px;
    border-radius:12px;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:12px;
    color:#fff;
    font-weight:700;
    font-size:14px;
    font-family:var(--font-body);
  }

  /* responsive */
  @media (max-width: 980px){
    .px-grid{ grid-template-columns:repeat(2, 1fr); }
    .px-grid-4{ grid-template-columns:repeat(2, 1fr); }
  }
  @media (max-width: 560px){
    .px-title{ font-size:28px; }
    .px-grid{ grid-template-columns:1fr; }
    .px-grid-4{ grid-template-columns:1fr; }
  }


  /* ======================Responsive Area Started======================== */




@media (min-width: 300px) and (max-width: 576px) {
.logo-left a img {
    width: 220px !important;
    height: 40px !important;
}
.mobile-logo a img {
    width: 215px !important;
    height: 45px !important;
}
#mobileMenu nav a {
    font-size: 1.1rem;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}
.slide-content a {
  margin-top: 20px !important;
}
.call-action h3 {
    font-size: 25px;
    font-weight: 700;
}
.breadcrumb-title {
    font-size: 25px;
    line-height: 1.3;
    padding: 10px;
}
p.lead.text-white {
    font-size: 16px;
    width: 100%;
    padding: 10px;
}
.abt-img img {
    width: 100%;
    height: 100%;
}
.slide-content {
    width: 100% !important;
    padding: 10px;
}
.designtop-btf {
    margin-top: 20px;
}
.design-top-btt {
    margin-top: 20px;
}
    
h2.order-tt {
    font-size: 20px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}
 }

/* ------------------------Order Fixed Button---------------------------  */

 .fixed-btn.round-btn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: #c62828;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.fixed-btn.round-btn:hover{
  background: #a51f1f;
  color: #fff;
}

/* Mobile */
@media (max-width: 768px){
  .fixed-btn.round-btn{
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 480px){
  .fixed-btn.round-btn{
    bottom: 70px; /* footer overlap avoid */
  }
}



