/* ROOT */
/* ==========================================================================
   PRIME AGRO HEADER DESIGN SYSTEM
   ========================================================================== */

:root {
    --agro-primary: #2D6A4F;       /* Forest / Steel Green */
    --agro-primary-hover: #1B4332; /* Deep Dark Green */
    --agro-accent: #52B788;        /* Light Fresh Green */
    --agro-light: #F8F9FA;         /* Soft Background Light */
    --agro-dark: #1A1A1A;          /* Text Charcoal Black */
    --agro-text-muted: #6C757D;    /* Gray Text */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   1. ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
    background-color: var(--agro-primary-hover);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.announcement-bar .container-xl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .announcement-bar .container-xl {
        justify-content: center;
        gap: 5px;
    }
}

/* ==========================================================================
   2. MAIN HEADER WRAPPER
   ========================================================================== */
.fashion-headers {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* LOGO */
.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   3. DESKTOP NAVIGATION
   ========================================================================== */
.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a, 
.desktop-nav .dropdown-btn {
    color: var(--agro-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: none;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.desktop-nav a:hover, 
.desktop-nav .dropdown-btn:hover {
    color: var(--agro-primary);
}

/* DROPDOWN MENU (DESKTOP) */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    border: 1px solid rgba(0,0,0,0.05);
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.desktop-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.desktop-nav .dropdown-menu li {
    width: 100%;
}

.desktop-nav .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
}

.desktop-nav .dropdown-menu li a:hover {
    background-color: var(--agro-light);
    color: var(--agro-primary);
    padding-left: 25px;
}

/* ==========================================================================
   4. HEADER ICONS & SEARCH
   ========================================================================== */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    color: var(--agro-dark);
    font-size: 1.35rem;
    position: relative;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    color: var(--agro-primary);
}

/* CART/WISHLIST BADGE */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--agro-accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* LIVE SEARCH BOX */
.search-box {
    position: relative;
    width: 260px;
}

.search-box input {
    width: 100%;
    padding: 8px 35px 8px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
    background-color: var(--agro-light);
}

.search-box input:focus {
    border-color: var(--agro-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.search-box .bi-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--agro-text-muted);
    pointer-events: none;
}

/* SUGGESTIONS BOX */
.suggestions {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1100;
    border: 1px solid rgba(0,0,0,0.05);
}

.suggest-item {
    display: block;
    padding: 12px 15px;
    color: var(--agro-dark);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #F0F0F0;
    transition: background 0.2s;
}

.suggest-item:last-child {
    border-bottom: none;
}

.suggest-item:hover {
    background: var(--agro-light);
    color: var(--agro-primary);
}

/* MOBILE TOGGLE BUTTON */
#mobileToggle {
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
    color: var(--agro-dark);
}

/* ==========================================================================
   5. MOBILE RESPONSIVE NAVIGATION
   ========================================================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 60px 25px 30px 25px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}

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

#closeMobileMenu {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--agro-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid #F0F0F0;
}

.mobile-nav ul li a, 
.mobile-nav .dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    color: var(--agro-dark);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
}

/* MOBILE DROPDOWN MECHANISM */
.mobile-nav .dropdown-menu {
    list-style: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.mobile-nav .dropdown.active .dropdown-menu {
    max-height: 500px; /* Large safe value */
    margin-bottom: 10px;
}

.mobile-nav .dropdown-menu li {
    margin-bottom: 0;
    border-bottom: none;
}

.mobile-nav .dropdown-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--agro-text-muted);
    padding: 8px 0;
}

body.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 99998;
    pointer-events: none;
}

.mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   6. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    #mobileToggle {
        display: block;
    }
    .header-icons .search-box {
        display: none;
    }
    .mobile-nav .search-box {
        display: block;
        position: relative;
        width: 100%;
        margin-bottom: 22px;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    .mobile-nav .search-box input {
        width: 100%;
        padding: 12px 42px 12px 15px;
        border-radius: 30px;
        border: 1px solid #E0E0E0;
        background-color: var(--agro-light);
        display: block;
    }
    .mobile-nav .search-box .bi-search {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--agro-text-muted);
        pointer-events: none;
    }
}

@media (max-width: 576px) {
    .header-wrapper {
        flex-wrap: wrap;
    }
    .search-box {
        position: static;
        width: 100%;
        order: 3;
        margin-top: 10px;
        padding: 0;
        box-shadow: none;
        display: block;
    }
    .mobile-nav .search-box {
        margin-bottom: 24px;
    }
    .mobile-nav .search-box input {
        font-size: 0.95rem;
    }
}
@media (max-width: 992px) {
    
    /* ==========================================================================
       FORCE FIX: REMOVING ALL INHERITED AND CHILD BLURS FROM MENU PANEL
       ========================================================================== */
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%; 
        max-width: 320px;
        height: 100vh;
        
        background: #ffffff !important; 
        filter: none !important;
        -webkit-filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        will-change: transform;
        
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
        z-index: 99999;
        padding: 75px 24px 40px 24px;
        display: flex;
        flex-direction: column;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    /* 2. FORCE NO BLUR ON NAVIGATION LIST & LINKS */
    .mobile-nav ul,
    .mobile-nav ul li,
    .mobile-nav ul li a, 
    .mobile-nav .dropdown-btn {
        filter: none !important;
        -webkit-filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* Links Text Appearance (Sharp & Solid Black) */
    .mobile-nav ul li a, 
    .mobile-nav .dropdown-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px 12px;
        color: #1A1A1A !important; /* Pure crisp black */
        font-size: 1.15rem;
        font-weight: 600;
        text-decoration: none;
        background: none;
        border: none;
        text-align: left;
        border-radius: 8px;
        transition: background 0.2s ease, color 0.2s ease;
    }

    /* Click/Active State Highlight (No Blur, Only Soft Green Color Tint) */
    .mobile-nav ul li a:active, 
    .mobile-nav .dropdown-btn:active,
    .mobile-nav ul li a:focus,
    .mobile-nav .dropdown-btn:focus {
        background: rgba(45, 106, 79, 0.08) !important; 
        color: #2D6A4F !important;
        filter: none !important;
        backdrop-filter: none !important;
    }

    /* Dropdown Inner Sub-menus */
    .mobile-nav .dropdown-menu {
        filter: none !important;
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.015) !important;
    }

    .mobile-nav .dropdown-menu li a {
        font-size: 1rem;
        font-weight: 500;
        color: #4A5568 !important;
        padding: 10px 14px;
        filter: none !important;
    }

}
/*--------------------------------------------------------------
# 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 */
}

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