/* ROOT */
:root{

    /* Uniform Theme Colors */

    --uniform-navy:#0B1F3A;
    --uniform-gold:#D4A017;
    --uniform-steel:#1E3A5F;
    --uniform-light:#F5F7FA;

    --uniform-white:#FFFFFF;
    --uniform-dark:#111827;

    --uniform-text:#5B6475;
    --uniform-border:#E5E7EB;

    --uniform-success:#0F766E;
    --uniform-hover:#C99700;

    --uniform-icon:#F8FAFC;

    --shadow-sm:0 4px 15px rgba(11,31,58,.08);
    --shadow-md:0 10px 30px rgba(11,31,58,.12);
    --shadow-lg:0 15px 40px rgba(11,31,58,.18);

    --radius-sm:10px;
    --radius-md:16px;
    --radius-lg:50px;

    --transition:.35s ease;

    --font:'Poppins',sans-serif;

}

/*====================================
HEADER
====================================*/

.fashion-headers{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    box-shadow:var(--shadow-sm);
    font-family:var(--font);
}

/*====================================
TOP BAR
====================================*/

.announcement-bar{

    background: linear-gradient(
        90deg,
        var(--uniform-navy),
        var(--uniform-steel)
    );

    color:#fff;

    padding:12px 0;
}

.announcement-bar .container-xl{

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.announcement-bar span{

    font-size:13px;
    font-weight:500;
    letter-spacing:.3px;
}

/*====================================
MAIN HEADER
====================================*/

.header-wrapper{

    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

/*====================================
LOGO
====================================*/

.logo{
    flex-shrink:0;
}

.logo img{
    max-height:70px;
    width:auto;
    display:block;
}

/*====================================
DESKTOP MENU
====================================*/

.desktop-nav{
    flex:1;
}

.desktop-nav ul{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:35px;

    margin:0;
    padding:0;
    list-style:none;
}

.desktop-nav ul li{
    position:relative;
}

.desktop-nav ul li a,
.dropdown-btn{

    background:none;
    border:none;

    color: var(--uniform-navy);

    text-decoration:none;

    font-size:15px;
    font-weight:500;

    padding:10px 0;

    transition:var(--transition);
}

.desktop-nav ul li a:hover,
.dropdown-btn:hover{
    color: var(--uniform-gold);
}

/*====================================
UNDERLINE EFFECT
====================================*/

.desktop-nav ul li a{
    position:relative;
}

.desktop-nav ul li a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-5px;

    width:0;
    height:2px;

    background: var(--uniform-gold);

    transition:.3s;
}

.desktop-nav ul li a:hover::after{
    width:100%;
}

/*====================================
DROPDOWN
====================================*/

/* ====================================
PREMIUM KURTI DROPDOWN FIX
Replace old dropdown CSS with this
==================================== */

.dropdown{
    position:relative;
}

.dropdown-btn{
    display:flex;
    align-items:center;
    gap:6px;
    cursor:pointer;
}

.dropdown-btn i{
    font-size:12px;
    transition:.3s ease;
}

.dropdown:hover .dropdown-btn i{
    transform:rotate(180deg);
}

.desktop-nav .dropdown-menu{
    position:absolute;
    top:120%;
    left:50%;
    transform:translateX(-50%);

    min-width:520px;
    width:max-content;

    display:grid !important;
    grid-template-columns:repeat(2,minmax(180px,1fr));

    gap:8px;

    background:#fff;

    border: 1px solid var(--uniform-border);
    border-radius: var(--radius-md);

    padding:18px;

    box-shadow: var(--shadow-md);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.desktop-nav .dropdown-menu li{
    width:100%;
    margin:0;
    display:block;
}

.desktop-nav .dropdown-menu li a{
    display:block;
    width:100%;

    padding:14px 16px;

    border-radius:12px;

    color: var(--uniform-navy);

    text-decoration:none;

    font-size:14px;
    font-weight:500;

    transition:.3s ease;
}

.desktop-nav .dropdown-menu li a:hover{
    background: var(--uniform-light);
    color: var(--uniform-gold);
    transform:translateX(4px);
}

/* category count more than 8 */

.desktop-nav .dropdown-menu{
    max-height:450px;
    overflow-y:auto;
}

.desktop-nav .dropdown-menu::-webkit-scrollbar{
    width:5px;
}

.desktop-nav .dropdown-menu::-webkit-scrollbar-thumb{
    background: var(--uniform-gold);
    border-radius:20px;
}

/*====================================
HEADER RIGHT
====================================*/

.header-icons{

    display:flex;
    align-items:center;

    gap:12px;
}

/*====================================
SEARCH BOX
====================================*/

.search-box{
    position:relative;
}

.search-box input{

    width:280px;
    height:48px;

    border: 1px solid var(--uniform-border);

    background: var(--uniform-light);

    border-radius:50px;

    padding:0 50px 0 20px;

    outline:none;

    transition:.3s;
}

.search-box input:focus{

    border-color: var(--uniform-gold);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);

    background:#fff;
}

.search-box i{

    position:absolute;

    right:18px;
    top:50%;

    transform:translateY(-50%);

    color: var(--uniform-navy);
}

.suggestions{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    width:100%;

    background:#fff;
    border: 1px solid var(--uniform-border);
    border-radius:12px;

    box-shadow:0 12px 30px rgba(0,0,0,0.08);

    z-index:9999;

    overflow:hidden;

    max-height:350px;
    overflow-y:auto;

    display:none;
}

.suggestions.active{
    display:block;
}

.suggestions a,
.suggestions .suggestion-item{
    display:flex;
    align-items:center;

    padding:12px 15px;

    color:#333;
    text-decoration:none;

    font-size:14px;
    font-weight:500;

    border-bottom:1px solid #f3f3f3;

    transition:all .25s ease;
    cursor:pointer;
}

.suggestions a:last-child,
.suggestions .suggestion-item:last-child{
    border-bottom:none;
}

.suggestions a:hover,
.suggestions .suggestion-item:hover{
    background: var(--uniform-light);
    color: var(--uniform-gold);
    padding-left:20px;
}

.suggestions::-webkit-scrollbar{
    width:6px;
}

.suggestions::-webkit-scrollbar-thumb{
    background:#d8d8d8;
    border-radius:10px;
}

.suggestions::-webkit-scrollbar-thumb:hover{
    background: var(--uniform-gold);
}

/*====================================
ICONS
====================================*/

.icon-btn{

    width:46px;
    height:46px;

    border-radius:50%;

    background: var(--uniform-light);

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color: var(--uniform-navy);

    transition:.3s;

    position:relative;
}

.icon-btn i{
    font-size:20px;
}

.icon-btn:hover{

    background: var(--uniform-gold);

    color:#fff;

    transform:translateY(-2px);
}

/*====================================
CART BADGE
====================================*/

.cart-badge{

    position:absolute;

    top:-4px;
    right:-4px;

    width:20px;
    height:20px;

    border-radius:50%;

    background: var(--uniform-gold);

    color:#fff;

    font-size:11px;
    font-weight:600;

    display:flex;
    align-items:center;
    justify-content:center;
}

/*====================================
MOBILE TOGGLE
====================================*/

#mobileToggle{

    display:none;

    font-size:32px;

    cursor:pointer;

    color: var(--uniform-navy);
}

/*====================================
MOBILE MENU
====================================*/

.mobile-nav{

    position:fixed;

    top:0;
    right:-100%;

    width:320px;
    height:100vh;

    background:#fff;

    padding:30px;

    overflow-y:auto;

    transition:.4s ease;

    z-index:99999;

    box-shadow:-10px 0 40px rgba(0,0,0,.12);
}

.mobile-nav.active{
    right:0;
}

.mobile-nav ul{

    list-style:none;

    padding:0;
    margin-top:50px;
}

.mobile-nav ul li{
    margin-bottom:15px;
}

.mobile-nav ul li a{

    text-decoration:none;

    color: var(--uniform-navy);

    font-size:16px;

    font-weight:500;
}

.mobile-nav ul li a:hover{
    color: var(--uniform-gold);
}

.mobile-nav .dropdown-menu{

    position:static;

    opacity:1;
    visibility:visible;

    display:none;

    box-shadow:none;

    border:none;

    background:transparent;

    padding-left:15px;
}

.mobile-nav .dropdown.active .dropdown-menu{
    display:block;
}

.mobile-nav .dropdown-btn{

    width:100%;

    text-align:left;
}

#closeMobileMenu{

    font-size:30px;

    cursor:pointer;

    color: var(--uniform-navy);

    float:right;
}

/*====================================
SCROLL EFFECT
====================================*/

.fashion-headers.scrolled{

    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/*====================================
RESPONSIVE
====================================*/

@media(max-width:1200px){

    .search-box input{
        width:220px;
    }

    .desktop-nav ul{
        gap:25px;
    }

}

@media(max-width:991px){

    .announcement-bar{
        display:none;
    }

    .desktop-nav{
        display:none;
    }

    .search-box{
        display:none;
    }

    #mobileToggle{
        display:block;
    }

    .logo img{
        max-height:55px;
    }

    .header-wrapper{
        min-height:75px;
    }

}

@media(max-width:576px){

    .mobile-nav{
        width:100%;
    }

    .logo img{
        max-height:50px;
    }

    .icon-btn{
        width:40px;
        height:40px;
    }

    .icon-btn i{
        font-size:18px;
    }

}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--med-secondary); /* Using new accent color */
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff; /* White icon */
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--med-secondary), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block; /* Keep as is */
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px; /* Slightly reduced margin */
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 0px; /* Adjusted for better alignment */
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex; /* Keep as is */
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: var(--med-muted); /* Using muted color for description */
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--med-secondary); /* Using new accent color */
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(255,111,0,0.25); /* Accent color shadow */
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--med-secondary), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--med-secondary); /* Accent color for video icon */
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--med-secondary);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--med-secondary), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}


.whatsapp-button {

position:fixed;

bottom:25px;
right:25px;

width:60px;
height:60px;

background: #25D366; /* Keep WhatsApp green */

color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:30px;

box-shadow: 0 6px 15px rgba(0,0,0,0.3); /* Keep as is */

z-index:999;

text-decoration:none;

animation: whatsapp-pulse 2s infinite;

}

.whatsapp-button:hover{

transform:scale(1.1);

background:#20b858;

}

/* Tooltip */

.whatsapp-tooltip {

position:absolute;

right:70px;

background:black;

color:white;

padding:6px 12px;

border-radius:6px;

font-size:13px;

opacity:0;

white-space:nowrap;

transition:0.3s;

}

.whatsapp-button:hover .whatsapp-tooltip{

opacity:1;

}

/* Pulse animation */

@keyframes whatsapp-pulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
box-shadow:0 0 0 15px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}
/*--------------------------------------------------------------
# Certificate Section
--------------------------------------------------------------*/
.certification-section {
  background: var(--med-bg);
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
}

.certification-track {
  display: flex;
  gap: 60px;
  animation: scrollCert 10s linear infinite;
  align-items: center;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px; /* Slightly reduced gap */
  min-width: 220px;
  font-weight: 600;
  color: var(--charcoal);
  font-size: 16px;
  white-space: nowrap;
}

.cert-item img {
  height: 42px;
  object-fit: contain;
  filter: grayscale(80%); /* Slightly less grayscale */
  opacity: 0.8; /* Slightly less opaque */
  transition: 0.3s ease;
}

.cert-item:hover img {
  filter: grayscale(0%); /* Full color on hover */
  transform: scale(1.05);
}

/* Animation */
@keyframes scrollCert {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media(max-width: 768px) {
  .certification-track {
    animation-duration: 2s; /* Mobile speed = 10 seconds */
  }

  .cert-item {
    min-width: 180px;
    font-size: 14px;
  }

  .cert-item img {
    height: 34px;
  }
}

.about-banner {
  width: 100%;
  height: 300px;
  background: url('../../assets/images/industrial-banner.webp') center/cover no-repeat; /* Changed banner image */
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%; /* Keep as is */
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 220px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Category Section
--------------------------------------------------------------*/
/* -------------------- */


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-handloom {
  background: var(--med-bg-light); /* Using light background variable */
}

/* IMAGE AREA */
.about-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--med-shadow); /* Using new shadow variable */
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrap:hover .about-main-img {
  transform: scale(1.08);
}

/* FLOATING FABRIC BADGE */
.fabric-badge {
  position: absolute;
  bottom: 18px;
  left: 25px; /* Slightly more offset */
  background: rgba(198,90,58,0.95);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* TEXT SIDE */
.about-label {
  display: inline-block;
  color: var(--med-secondary); /* Using new accent color */
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}

.about-title {
  font-size: 42px; /* Slightly smaller */
  font-weight: 800; /* Slightly less bold */
  color: var(--med-primary); /* Using new primary color */
  line-height: 1.15;
}

.about-title span {
  color: var(--med-secondary); /* Using new accent color */
}

/* DESCRIPTION */
.about-description {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  line-height: 1.7; /* Slightly reduced line height */
  margin-top: 16px;
  max-width: 560px;
}

/* HIGHLIGHT LIST */
.about-highlights {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.about-highlights li {
  font-size: 15px;
  font-weight: 600;
  color: var(--med-text);
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.about-highlights li::before {
  content: "✓"; /* Changed bullet point to checkmark */
  position: absolute;
  left: 0;
  color: #CFAE70;
  font-size: 16px;
}

/* BUTTON */
.about-btn-premium {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px; /* Slightly smaller button */
  border-radius: var(--med-radius); /* Using new radius */
  background: var(--med-secondary); /* Solid accent color */
  color: white;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255,111,0,0.35); /* Accent color shadow */
  transition: all 0.3s ease;
}

.about-btn-premium:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--med-secondary), black 10%); /* Slightly darker on hover */
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .about-title {
    font-size: 34px;
  }

  .about-description {
    font-size: 16px;
  }

  .about-image-wrap {
    border-radius: 16px;
  }

  .fabric-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/*--------------------------------------------------------------
# Prefooter Section
--------------------------------------------------------------*/
/* ================================
LUXURY SOFA HOME SECTION
================================ */

.luxury-sofa-section{
background:#0b0b0b;
padding: 60px 20px; /* Slightly reduced padding */
position:relative;
overflow:hidden;
color:#fff;
font-family:var(--sofa-font);
}

/* CONTAINER */

.luxury-sofa-section .container{
max-width:1200px;
margin:auto;
}

/* LAYOUT */

.luxury-sofa-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
gap:70px;
}

/* ================================
TEXT AREA
================================ */

.luxury-sofa-text{
flex:1;
max-width: 580px; /* Slightly wider text area */
}

/* BADGE */

/* .sofa-badge{
display:inline-block;
background:rgba(255,106,0,0.12);
border:1px solid rgba(255,106,0,0.35);
color:#c89b3c;
padding:7px 18px;
border-radius:40px;
font-size:12px;
letter-spacing:1px;
font-weight:600;
margin-bottom:18px;
} */

/* HEADING */

.luxury-heading{
font-size: 38px; /* Slightly smaller heading */
font-weight: 700;
line-height:1.2;
margin-bottom:18px;
}

.luxury-heading span{
background: var(--med-secondary); /* Solid accent color */
-webkit-background-clip:text;
color:transparent;
}

/* DESCRIPTION */

.luxury-desc{
color: rgba(255,255,255,0.7); /* Lighter white for contrast */
font-size:16px;
line-height:1.7;
margin-bottom:34px;
}

/* ================================
BUTTON
================================ */

.luxury-btn{
display:inline-flex;
align-items:center;
gap:12px;
padding:15px 36px;
border-radius: var(--med-radius); /* Using new radius */
background: var(--med-secondary); /* Solid accent color */
color:#fff;
font-weight:600;
text-decoration:none;
font-size:15px;
position: relative;
overflow:hidden;
transition:.35s;
box-shadow:0 10px 30px rgba(255,106,0,0.35);
}

/* BUTTON ICON */

.luxury-btn i{
transition:.35s;
}

/* BUTTON HOVER */

.luxury-btn:hover{
transform:translateY(-4px);
box-shadow: 0 18px 40px rgba(255,111,0,0.5); /* Accent color shadow */
}

.luxury-btn:hover i{
transform:translateX(6px);
}

/* LIGHT SWEEP */

.luxury-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.35),
transparent
);
transition:.6s;
}

.luxury-btn:hover::before{
left:100%;
}

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

.luxury-sofa-image{
flex:1;
text-align:center;
position:relative;
}

.luxury-sofa-image img{
max-width:100%;
border-radius: var(--med-radius); /* Using new radius */
transition:.5s;
box-shadow:0 20px 60px rgba(0,0,0,0.6);
}

/* IMAGE HOVER */

.luxury-sofa-image:hover img{
transform:scale(1.05);
}

/* ================================
ORANGE GLOW BACKGROUND
================================ */

.sofa-glow{
position:absolute;
border-radius:50%;
filter:blur(100px);
opacity:.35;
pointer-events:none;
}

.glow1{
width:380px;
height: 380px;
background: var(--med-secondary); /* Accent color glow */
top:-150px;
right:-150px;
}

.glow2{
width: 420px;
height: 420px;
background: var(--med-primary); /* Primary color glow */
bottom:-180px;
left:-160px;
}

/* ================================
RESPONSIVE
================================ */

@media(max-width:992px){

.luxury-sofa-wrapper{
flex-direction:column;
text-align:center;
gap:50px;
}

.luxury-sofa-text{
max-width:100%;
}

.luxury-heading{
font-size:34px;
}

}

/* MOBILE */

@media(max-width:600px){

.luxury-sofa-section{
padding:80px 20px;
}

.luxury-heading{
font-size:28px;
}

.luxury-desc{
font-size:14px;
}

.luxury-btn{
padding:13px 28px;
font-size:14px;
}

.luxury-sofa-image img{
border-radius: var(--med-radius);
}

}
/*--------------------------------------------------------------
# Section Banner
--------------------------------------------------------------*/
.section-banner {
  width: 100%;
  height: 320px;
  background: url('../../assets/images/industrial-contact-banner.webp') center/cover no-repeat; /* Changed banner image */
  position: relative;
  margin: 0px 0px 0px;
}

/* Overlay */
.banner-overlay {
  width: 100%;
  height: 100%; /* Keep as is */
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}

/* Content */
.banner-content {
  max-width: 1200px;
  margin: auto; /* Keep as is */
  padding: 0 20px;
  color: white;
}

.banner-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block; /* Keep as is */
  background: var(--med-secondary); /* Accent color */
  color: white;
  padding: 10px 22px;
  border-radius: var(--med-radius); /* New radius */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.banner-btn:hover {
  background: #9f4228;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .section-banner {
    height: 220px;
  }

  .banner-content h2 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Bulk Section
--------------------------------------------------------------*/
.bulk-section {
  padding: 60px 0; /* Slightly more padding */
  background: var(--med-bg-light); /* Using light background variable */
  font-family: 'Poppins', sans-serif;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto; /* Keep as is */
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 60%; /* Slightly wider image */
  height: 360px;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CARD */
.bulk-content {
  width: 40%; /* Slightly narrower content */
  background: var(--med-bg);
  padding: 35px; /* Slightly reduced padding */
}

.bulk-content h2 {
  font-size: 26px; /* Slightly smaller heading */
  font-weight: 700; /* Bolder heading */
  margin-bottom: 10px;
}

.subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.bulk-points li::before {
  content: "✔";
  position: absolute;
  left: 0; /* Keep as is */
  color: #c07a3f;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-weight: 500;
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 280px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 26px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* CONTACT SECTION */

/* ================= CONTACT SECTION ================= */

.lux-contact-section{
background: var(--med-bg-light); /* Using light background variable */
padding:40px 20px;
color:#2b2b2b;
position:relative;
overflow:hidden;
}

/* subtle wood glow */
.lux-contact-section::before{
content:"";
position:absolute;
top:-100px;
left:-100px;
width:300px;
height:300px;
background:radial-gradient(circle, rgba(44,62,80,0.15), transparent); /* Primary color glow */
filter:blur(80px);
}

/* ================= HEADER ================= */

.contact-header{
max-width:750px;
margin:auto;
margin-bottom:60px;
text-align:center;
}

.contact-tag{
color: var(--med-secondary); /* Accent color for tag */
font-weight:600;
letter-spacing:3px;
font-size:12px;
display:block;
margin-bottom:10px;
}
 
.contact-title{
font-size:40px;
font-weight:800;
margin-bottom:12px;
color:#1a1a1a;
}

.contact-title span{
color: var(--med-secondary); /* Accent color for title span */
}

.contact-subtext{
color:#6b6b6b;
font-size:15px;
line-height:1.7;
}

/* ================= INFO CARD ================= */

.contact-info-card{
background: var(--med-bg);
padding:35px;
border-radius: var(--med-radius);
border:1px solid var(--med-border);
height:100%;

box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

.contact-info-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.contact-info-card h4{
margin-bottom:25px;
font-weight:700;
color:#1a1a1a;
}

/* INFO ITEM */

.info-item{
display:flex;
gap:14px;
margin-bottom:20px;
}

.info-item i{
color: var(--med-secondary); /* Accent color for icons */
font-size:20px;
background:#f5f1eb;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

.info-item h6{
margin:0;
font-size:14px;
color:#1a1a1a;
}

.info-item p{
margin:0;
font-size:13px;
color:#666;
}

/* NOTE */

.contact-note{
margin-top: 20px;
background:#f5f1eb;
border-left:4px solid #c89b3c;
padding:14px 16px;
border-radius:10px;
font-size:14px;
color:#555;
}

/* ================= FORM CARD ================= */

.contact-form-card{
background: var(--med-bg);
padding:35px;
border-radius: var(--med-radius);
border:1px solid var(--med-border);

box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:.3s;
}

.contact-form-card:hover{
transform:translateY(-5px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.contact-form-card h4{
margin-bottom:25px;
font-weight:700;
color:#1a1a1a;
}

/* ================= INPUTS ================= */

.lux-input{
background: var(--med-bg-light);
border:1px solid var(--med-border);
color: var(--med-text);
border-radius: var(--med-radius);
padding:14px 16px;
transition:.3s;
}

.lux-input::placeholder{
color: var(--med-muted);
}

.lux-input:focus{
border-color: var(--med-secondary); /* Accent color on focus */
box-shadow:0 0 0 2px rgba(255,111,0,0.2); /* Accent color shadow */
background:#fff;
color:#000;
}

/* ================= BUTTON ================= */

.lux-contact-btn{
padding:14px 38px;
border-radius:40px;
border: none;
background: var(--med-secondary); /* Solid accent color */
color:#fff;
font-weight:600;
cursor:pointer;
transition:.3s;
letter-spacing:.4px;

box-shadow:0 10px 25px rgba(255,111,0,0.35); /* Accent color shadow */
}

.lux-contact-btn:hover{
transform: translateY(-2px);
box-shadow:0 15px 40px rgba(255,111,0,0.5); /* Accent color shadow */
background:#2b1d1a;
}

/* ================= MAP SECTION ================= */

.contact-map-section{
margin-top:70px;
}

.map-header h3{
font-size:26px;
font-weight:700;
margin-bottom:8px;
color:#1a1a1a;
}

.map-header p{
color:#777;
margin-bottom:25px;
}

/* MAP */

.map-container{
border-radius: var(--med-radius);
overflow: hidden;
border:1px solid #eee;

box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* MAP EFFECT */

.map-container iframe{
filter:grayscale(.6);
transition:.4s;
}

.map-container:hover iframe{
filter:grayscale(0);
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.lux-contact-section{
padding:60px 15px;
}

.contact-title{
font-size:28px;
}

.contact-info-card,
.contact-form-card {
padding:25px;
}

.info-item{
gap:10px;
}

.info-item i{
width:35px;
height:35px;
font-size:16px;
}

}
/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: var(--med-primary); /* Primary color for service list links */
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding-right: 15px; /* Ensure consistent padding */
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

.service-details .services-list a.active {
  color: #fff; /* White text for active */
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--med-secondary), transparent 90%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

.service-details .download-catalog a:hover {
  color: var(--med-secondary);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px; /* Keep as is */
  color: var(--med-secondary); /* Accent color for icons */
}

/*--------------------------------------------------------------