/*=============================
    ROOT THEME COLORS
==============================*/
:root {  --primary: #f07740;  --primary-dark: #e66a24;  --secondary: #25211b;  --text-light: #f5f0e8;
  --text-muted: #b8a992;  --text-dark: #808080;  --bg-dark: #25211b;  --bg-elevated: #2b241c;  --bg-soft: #2d251e;  --bg-warm: #2b241c;  --border-subtle: #3a3027;}
/*=============================
   GLOBAL RESET & BODY
==============================*/
* {  margin: 0;  padding: 0;  box-sizing: border-box;}
body {  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",
    Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;  color: var(--text-dark); 
     line-height: 1.6;  
      font-family: "Geom", sans-serif;
 background:  linear-gradient(90deg, 
    rgba(60, 42, 32, 1) 1%,   /* left side aur light */
    rgba(32, 22, 16, 1) 8%,   /* original light blending */
    rgba(15, 9, 6, 1) 15%,
    rgba(12, 7, 5, 1) 30%,
    rgba(8, 5, 3, 1) 50%,
    rgba(3, 2, 1, 1) 70%,
    rgba(0, 0, 0, 1) 100%
);
background:#fff;

    }
h1,h2{text-transform:uppercase; font-weight:normal;     background: linear-gradient(135deg, #a0a0a0, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;}
h1 {  font-size: 56px;  font-weight: 700; text-transform:uppercase; font-weight:normal;}h2 {  font-size: 50px;  font-weight: 600;}
h3 {  font-size: 26px;  font-weight: 500; color:#000; }h4 {  font-size: 22px;  font-weight: 500;}
h5 {  font-size: 18px;  font-weight: 400;}h6 {  font-size: 16px;  font-weight: 400;}

.fs-14 {  font-size: 14px;}.fs-16 {  font-size: 16px;}.fs-18 {  font-size: 18px;}
.fs-20 {  font-size: 20px;}.fs-22 {  font-size: 22px;}.mt-5 {  margin-top: 5px;}.mt-10 {  margin-top: 10px;}
.mt-15 {  margin-top: 15px;}.mt-20 {  margin-top: 20px;}.mt-30 {  margin-top: 30px;}.mt-40 {  margin-top: 40px;}
.mt-100 {  margin-top: 100px;}.mb-10 {  margin-bottom: 10px;}.mb-20 {  margin-bottom: 20px;}.mb-30 {  margin-bottom: 30px;}
.pt-10 {  padding-top: 10px;}.pt-20 {  padding-top: 20px;}.pt-30 {  padding-top: 30px;}.pt-40 {  padding-top: 40px;}
.pt-80 {  padding-top: 80px;}.pb-10 {  padding-bottom: 10px;}.pb-20 {  padding-bottom: 20px;}.pb-30 {  padding-bottom: 30px;}
.pb-40 {  padding-bottom: 40px;} .pb-100 {  padding-bottom: 100px;}.p-20 {  padding: 20px;}.px-20 {  padding-left: 20px;  padding-right: 20px;}.py-20 {  padding-top: 20px;  padding-bottom: 20px;}.mx-auto {  margin-left: auto;  margin-right: auto;}.container {  width: 1400px;  max-width: 100%;  margin: auto;  padding-left: 20px;  padding-right: 20px;}
/* Flex & Others */
.flex {  display: flex;}.flex-between {  display: flex;  justify-content: space-between;  align-items: center;}.flex-center {
  display: flex;  justify-content: center;  align-items: center;}.shadow {  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);}.radius {  border-radius: 12px;}.text-center {  text-align: center;}.hide-mobile {  display: block;}
/*=============================
       BUTTONS
==============================*/
.btn {  padding: 10px 20px;  border-radius: 5px;  font-size: 16px;  font-weight: 600;  text-decoration: none;  display: inline-block;  cursor: pointer;  transition: 0.3s ease;  border: none;}
.btn-primary {  /* background: var(--primary-gradient);  color: var(--text-light);  box-shadow: 0 4px 12px rgba(240, 119, 64, 0.3); */  background: #ffffff9c;  color: #000000;}.btn-primary:hover {
  background: linear-gradient(135deg, #e66a24 0%, #f07740 100%);  transform: translateY(-3px);  box-shadow: 0 8px 20px rgba(230, 106, 36, 0.4);}.btn-outline {  background: transparent;  border: 2px solid var(--primary);  color: var(--primary);  margin-left: 15px;}
.btn-outline:hover {  background: var(--primary);  color: var(--text-light);}
/*=============================
       BUTTONS
==============================*/
/* Button Styles */
.btn {
  padding: 12px 28px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s ease;
  border: none;
}

/* Primary Button */
.btn-primary {
  background: #ffffff9c;
  color: #000000;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e66a24 0%, #f07740 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 106, 36, 0.4);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  margin-left: 15px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* Button Container - Centering the Buttons */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding-top: 10px; /* Optional, for spacing from the top */
}

@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    gap: 15px;
  }
}

/*=============================
    NAVBAR - FULL UPDATED 2025 PREMIUM VERSION
==============================*/
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 22px 0;
background: linear-gradient(90deg, 
    rgba(60, 42, 32, 1) 1%,   /* left side aur light */
    rgba(32, 22, 16, 1) 8%,   /* original light blending */
    rgba(15, 9, 6, 1) 15%,
    rgba(12, 7, 5, 1) 30%,
    rgba(8, 5, 3, 1) 50%,
    rgba(3, 2, 1, 1) 70%,
    rgba(0, 0, 0, 1) 100%	
);
  backdrop-filter: blur(10px);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  background:#000;
}  
.navbar.hide {
  transform: translateY(-110%);
}
.navbar.show {
  transform: translateY(0);
  padding: 14px 0;
  /* background: rgba(20, 17, 14, 0.96); */
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Inner Layout */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

/* Left Menu */
.navbar-menu-left {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Center Logo */
.navbar-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.navbar-logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

.navbar.show .navbar-logo img {
  height: 62px;
}

/* Right Section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.navbar-social {
  display: flex;
  gap: 16px;
}

.navbar-social a {
  color: var(--text-light);
  font-size: 22px;
  text-decoration: none; /* Remove underline/border */
  transition: all 0.3s ease;
}

.navbar-social a:hover {
  color: var(--primary);
  transform: translateY(-2px);
  opacity: 1;
}


/* Menu Items */
.navbar-item > a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 16.5px;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-item > a:hover {
  color: var(--primary);
}

.navbar-item > a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.navbar-item > a:hover::after {
  width: 100%;
}

.dropdown-arrow {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.navbar-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 100px;
  transform: translateX(-50%) translateY(15px);
  background: var(--bg-elevated);
  min-width: 240px;
  border-radius: 12px;
  padding: 14px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 119, 64, 0.15);
}

.navbar-dropdown:hover .navbar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(8px);
}

.navbar-dropdown-menu a {
  display: block;
  padding: 12px 28px !important;
  color: #f0e6d9;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-dropdown-menu a:hover {
  background: rgba(240, 119, 64, 0.15);
  color: var(--primary);
  padding-left: 35px !important;
}

/* Mobile Toggle Button */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: 0.3s;
}

.navbar-toggle span {
  width: 30px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: all 0.4s ease;
  transform-origin: center;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive */
@media (max-width: 1200px) {
  .navbar-menu-left,
  .navbar-right .btn-primary {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
.navbar-inner{
  padding-top:20px ;
}
  .navbar-logo {
    left: auto;
    right: auto;
    transform: none;
    /* position: relative; */
  }
  .navbar-logo img {
    height: 65px;
  }
  .navbar{
    padding: 0px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0px 0;
  }
  .navbar.show {
    padding: 0px 0;
  }
  .navbar-logo img {
    height: 58px;
  }
  .navbar.show .navbar-logo img {
    height: 52px;
  }
}
/*=============================
       SIDEBAR
==============================*/
.sidebar {
  position: fixed;
  top: 0;
  left: -100%; /* hidden by default */
  width: 300px; /* sidebar width */
  height: 100%;
  background: var(--bg-elevated);
  padding: 30px 25px;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
  transition: left 0.4s ease;
  overflow-y: auto;       /* scroll only if content overflows */
  scrollbar-width: thin;  /* Firefox: thin scrollbar */
  scrollbar-color: rgba(0,0,0,0.3) transparent; /* Firefox */
  z-index: 1000;
}

/* Webkit browsers (Chrome, Safari) scrollbar style */
.sidebar::-webkit-scrollbar {
  width: 6px;             /* thin scrollbar */
}

.sidebar::-webkit-scrollbar-track {
  background: transparent; /* track is invisible */
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 3px;
}

/* Active sidebar when opened */
.sidebar.active {
  left: 0;
}

.sidebar.active {
  left: 0;
}
.sidebar-menu {
  list-style: none;
  text-decoration: none;
}
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}
.sidebar-close {
  font-size: 38px;
  cursor: pointer;
  width: 46px;
  height: 46px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.sidebar-close:hover {
  background: #333;
}
.sidebar-menu a {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  color: var(--text-light);
  border-bottom: 1px solid #3a3027;
  text-decoration: none;
}
.sidebar-submenu {
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.sidebar-submenu.active {
  max-height: 500px;
  list-style: none;
}
.sidebar-arrow {
  font-size: 14px;
  transition: 0.3s;
}
.sidebar-has-submenu.open .sidebar-arrow {
  transform: rotate(90deg);
}
/*=============================
       RESPONSIVE
==============================*/
@media (max-width: 992px) {
  .navbar-menu,
  .navbar-right > .hide-mobile,
  .navbar-social {
    display: none;
  }
  .navbar-toggle {
    display: flex;
  }
}

/*=============================
    BANNER SLIDER
==============================*/
.banner-slider {
  width: 100%;
  position: relative;
}

/* Container scales automatically with images */
.banner-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 /7; /* maintains 16:9 ratio, adjusts height automatically */
}

/* Each slide */
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  z-index: 0;
}

/* Active slide */
.banner-slide.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}

/* Slide images */
.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills container without stretching */
  display: block;
}

/* Next / Prev Buttons */
.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: 0.3s;
  z-index: 2;
}

.banner-prev {
  left: 15px;
}
.banner-next {
  right: 15px;
}

.banner-prev:hover,
.banner-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Dots */
.banner-dots {
  text-align: center;
  margin-top: 15px;
}

.banner-dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.banner-dot.active {
  background-color: var(--primary);
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
  .banner-slider {
    /* margin-top: 79px; */
  }
  .banner-prev,
  .banner-next {
    font-size: 20px;
    padding: 8px 12px;
  }

  .banner-dot {
    height: 10px;
    width: 10px;
  }
}
  
@media (max-width: 480px) {
  .banner-prev,
  .banner-next {
    font-size: 18px;
    padding: 6px 10px;
  }

  .banner-dot {
    height: 8px;
    width: 8px;
  }

}/*============================= PROJECT SOLUTION SECTION =============================*/
.project-solution-section {
  padding: 0px 0 0px;
}

.project-solution-content {
  max-width: 1000px;
  margin:30px auto 30px;
  text-align: center;
}

/* Soft Orange Glow Animation */
.project-solution-title {
  font-weight: normal;
  font-size: 52px;
  margin-bottom: 1px;
  /* background: linear-gradient(90deg, #e66a6d3a, #ff6610, #6c3920, #502f1f, #ff6610); */
  background: linear-gradient(90deg, #706e6b, #706e6b, #050505, #000000, #706e6b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: softGlow 5s ease-in-out infinite;
    text-transform: uppercase;;
}

@keyframes softGlow {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.project-solution-text {
  font-size: 20px;
  color: #e0d6c5;
  max-width: 900px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

/* Buttons */
.project-solution-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.project-solution-btn-primary,
.project-solution-btn-outline {
  padding: 14px 36px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.4s;
}

.project-solution-btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 8px 25px rgba(240, 119, 64, 0.35);
}

.project-solution-btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

.project-solution-btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.project-solution-btn-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
}

/* Image with Overlay */
.project-solution-image {
  position: relative;
  text-align: center;
}

.project-solution-main-img {
  width: 100%;
  height: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
  display: block;
}

.project-solution-image-overlay {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff46;
    font-size: 160px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    pointer-events: none;
    /* text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); */
    /* font-family: 'Arial', sans-serif; */
    width: 80%;
    z-index: 1;
}

/* Responsive */
@media (max-width: 1200px) {
  .project-solution-title { font-size: 50px; }
  .project-solution-text { font-size: 18px; }
  .project-solution-image-overlay { font-size: 48px; }
}

@media (max-width: 992px) {
  .project-solution-section { padding: 80px 0 20px; }
  .project-solution-title { font-size: 42px; }
  .project-solution-text { font-size: 17px; }
  .project-solution-buttons { flex-direction: column; gap: 16px; }
  .project-solution-btn-primary,
  .project-solution-btn-outline { width: 260px; padding: 14px 30px; font-size: 16px; }
  .project-solution-image-overlay { font-size: 38px; }
}

@media (max-width: 768px) {
  .project-solution-section { padding: 60px 0 100px; }
  .project-solution-image-overlay { font-size: 32px; }
}

@media (max-width: 480px) {
  .project-solution-image-overlay { font-size: 24px; }
  .project-solution-title { font-size: 32px; }
  .project-solution-text { font-size: 15px; padding: 0 15px; }
}

/* best product */
/*=============================
    BEST PRODUCT SECTION - 100% SAME AS IMAGE
==============================*/
.best-product {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(25, 21, 19, 0.98), rgba(15, 12, 10, 0.95))
              /*, url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat */
              ;
  position: relative;
  overflow: hidden;
  background:none;
}

.best-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(90deg, rgba(20,17,14,0.96) 0%, transparent 50%, rgba(20,17,14,0.92) 100%); */
  pointer-events: none;
}

.best-product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.best-product-content {
  color: var(--text-light);
  background-color: #ffffff;
      padding: 35px;
}

.best-product-title {
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #070707;     text-transform: uppercase; font-size:35px;
}

.best-product-highlight {
  color: var(--primary);
  font-weight: 900;
}

.best-product-subtitle {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.best-product-desc {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  max-width: 680px;
}

/* Right Side - Image + Stats */
.best-product-image-wrapper {
  position: relative;
  /* border-radius: 20px; */
  overflow: hidden;
  /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); */
}

.best-product-image {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.best-product-image-wrapper:hover .best-product-image {
  transform: scale(1.08);
}

.best-product-stats {
position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 100px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(15px);
    padding: 18px 100px;
    /* border-radius: 20px; */
    border: 1px solid rgba(240, 119, 64, 0.3);
max-width: 1200px;
  }

.best-product-stat {
  text-align: center;
}

.best-product-number {
  font-size: 52px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.best-product-label {
  font-size: 16px;
  color: #e0d6cb;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* MOBILE RESPONSIVE - EXACT SAME LOOK */
@media (max-width: 992px) {
  .best-product-content {
    color: var(--text-light);
    /* background-color: #e0d6cb1f; */
    background-color: #ffffff;
    padding: 10px;
    text-align: left;
  }
  .best-product {
    padding: 30px 0;
  }
  .best-product-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
    
  }
  .best-product-title {
    font-size: 42px;
    line-height: 1.2;
  }
  .best-product-image {
    height: 500px;
  }
  .best-product-stats {
    position: static;
    transform: none;
    margin: 40px auto 0;
    padding: 24px 30px;
    gap: 30px;
  }
  .best-product-number {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .best-product-title {
    font-size: 36px;
  }
  .best-product-desc {
    font-size: 16px;
  }
  .best-product-stats {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
  .best-product-image {
    height: 420px;
  }
}
/*=============================
    BRANDS SECTION
==============================*/
.brands-section {
  padding: 120px 0;
  background: #0f0c0a;
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: "";
  position: absolute;
  inset: 0;
  
  background: 
    radial-gradient(circle at 15% 50%, rgba(240, 119, 64, 0.1) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

.text-center { text-align: center; }

.brands-header { margin-bottom: 90px; }

.brands-title {
  font-size: 48px;
  font-weight: normal;
  color: #ffffff;
  margin-bottom: 16px;
}

.brands-subtitle {
  font-size: 18px;
  color: #b8a992;
  font-weight: 400;
}

/* Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px 40px;
  justify-items: center;
}

/* Brand Card */
.brand-card {
  text-align: center;
  animation: brandWave 14s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 0.8s);
}

@keyframes brandWave {
  0%, 100% { transform: translateY(0px) translateX(0px); }
  25%       { transform: translateY(-14px) translateX(-6px); }
  50%       { transform: translateY(-6px) translateX(0px); }
  75%       { transform: translateY(-18px) translateX(8px); }
}

/* Brand Logo */
.brand-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.brand-logo::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.brand-icon {
  font-size: 68px;
  color: white;
  position: relative;
  z-index: 2;
}
/* Brand Colors */
.brand-ig      { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.brand-fb      { background: linear-gradient(135deg, #1877f2 0%, #1665d8 100%); }
.brand-behance { background: linear-gradient(135deg, #1769ff 0%, #0050ff 100%); }
.brand-wa      { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.brand-name {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 20px;
  transition: color 0.4s ease;
}
.brand-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #b8a992;
  padding: 10px 26px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
  font-size: 14px;
}
/* Hover Effects */
.brand-card:hover {
  animation-play-state: paused;
}
.brand-card:hover .brand-logo {
  transform: translateY(-10px) scale(1) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9);
}
.brand-card:hover .brand-name {
  color: #f07740;
} 
/* Responsive */
@media (max-width: 992px) {
  .brands-section {padding: 45px 0;}
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
  .brands-title { font-size: 40px; }
}

@media (max-width: 576px) {
  .brands-grid { grid-template-columns: 1fr; gap: 70px; }
  .brand-logo { width: 110px; height: 110px; }
  .brand-icon { font-size: 56px; }
  .brands-title { font-size: 36px; }
}


/* footer */
/*=============================
    FOOTER - 100% CLEAN CLASSES ONLY
    (Uses your existing mt-*, mb-*, pt-*, pb-* utilities)
==============================*/
.footer {
  background: #0a0806;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Logo */
.footer-logo {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

/* Address */
.footer-address {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  max-width: 340px;
}

/* Social Icons */
.footer-social-link {
  font-size: 22px;
  color: #fff;
  margin-right: 20px;
  transition: all 0.3s ease;
}
.footer-social-link:hover {
  color: var(--primary);
  transform: translateY(-4px);
}

/* Headings */
.footer-heading {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  display: inline-block;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

/* Contact Info */
.footer-label {
  color: #ffffff;
  font-weight: 600;
}
.footer-phone,
.footer-email {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.footer-phone:hover,
.footer-email:hover {
  color: #ffffff;
}

/* Links */
.footer-links {
  list-style: none;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  transition: all 0.3s ease;
}
.footer-link::before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}
.footer-link:hover {
  color: #ffffff;
  padding-left: 26px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-copyright {
  color: #666;
  font-size: 14px;
}

/* RESPONSIVE - Using your container & utilities */
@media (max-width: 992px) {
  .footer-link::before {
  content: "";
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    /* text-align: center; */
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-link {
    padding-left: 0;
  }
  
  .our-collection-grid
  .footer-link::before {
    display: none;
  }
}
/* ====================== OUR COLLECTION SECTION ====================== */
    .our-collection-section {
      padding: 50px 20px;
      max-width: 1900px;
      margin: 0 auto;
     /* background: #0f0a05; */  /* dark background */
    }

    .our-collection-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .our-collection-title {
      font-size: 56px;
      font-weight: normal;
      background: linear-gradient(135deg, #a0a0a0, #000000);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
      text-transform: uppercase;
    }
    .our-collection-subtitle {
      font-size: 19px;
      color: #ccc;
    }

    .our-collection-carousel-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: 0 80px;
      box-sizing: border-box;
    }

    .our-collection-carousel {
      display: flex;
      gap: 32px;
      padding: 20px 0;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      width: fit-content;
    }

    .our-collection-product-card {
      min-width: 335px;
      max-width: 450px;
      width: 420px;
      flex-shrink: 0;
      height: 520px;
      overflow: hidden;
      position: relative;
     /* background: rgba(30, 25, 20, 0.7);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6); */ 
      transition: all 0.6s ease;
    }

  

    .our-collection-product-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    /*  transition: transform 1.2s ease; border: solid 1px #e5e5e5; */
    }

    .our-collection-product-card:hover .our-collection-product-img {
     /* transform: scale(1.2); */
    }

    .our-collection-product-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
     /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.95)); */
      padding: 20px 30px 30px;
      opacity: 1;
      
      background-color: rgba(22, 22, 22, 0.55);
    height: 100%;
    transition: transform 0.4s ease;
    }
    .our-collection-product-name a{ color:#fff; text-shadow: 1px 1px 8px #060606; text-decoration:none;}  
    
      .our-collection-product-card:hover .our-collection-product-overlay {
      /* transform: translateY(-20px) scale(1.03);
      box-shadow: 0 40px 100px rgba(240, 119, 64, 0.3);  */
      background: none;
       
      /*  background: linear-gradient(#000000, rgb(0 0 0 / 12%)); height: 50px; */
    }

    .our-collection-product-name {
      font-size: 26px;
      font-weight: 700;
      color: white;
      margin-bottom: 0px;
      position: absolute;
    bottom: 20px;
    
    }
   /* .our-collection-product-card:hover .our-collection-product-overlay a{color:#fff; text-shadow: 2px 2px 5px #444; }   */


    .read-more-link {
      font-size: 16px;
      color: #f07740;
      text-decoration: underline;
      cursor: pointer;
      font-weight: 600;
    }
  .read-more-link a{color: #f07740;}
    .read-more-link:hover, .read-more-link a:hover{
      color: #e04e1a;
    }
    
  

    /* Arrows */
    .our-collection-prev,
    .our-collection-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 64px;
      height: 64px;
      background: rgba(240, 119, 64, 0.25);
      border: 2px solid rgba(240, 119, 64, 0.5);
      color: #f07740;
      font-size: 32px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
    }
    .our-collection-prev { left: 20px; }
    .our-collection-next { right: 20px; }
    .our-collection-prev:hover,
    .our-collection-next:hover {
      background: #f07740;
      color: white;
      border-color: #f07740;
      transform: translateY(-50%) scale(1.15);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .our-collection-carousel-wrapper { padding: 0 60px; }
      .our-collection-product-card {
        min-width: calc(100vw - 120px);
        max-width: calc(100vw - 120px);
        width: auto;
      }
    }

    @media (max-width: 768px) {
      .our-collection-section { padding: 30px 16px; }
      .our-collection-title { font-size: 44px; }
      .our-collection-subtitle { font-size: 18px; }
      .our-collection-carousel-wrapper { padding: 0 50px; }
      .our-collection-carousel { gap: 20px; }
      .our-collection-prev, .our-collection-next {
        width: 56px; height: 56px; font-size: 28px;
      }
      .our-collection-prev { left: 12px; }
      .our-collection-next { right: 12px; }
    }

    @media (max-width: 480px) {
      .our-collection-title { font-size: 38px; }
      .our-collection-product-card { min-width: calc(100vw - 80px); }
      .our-collection-product-name { font-size: 24px; }
      .our-collection-prev, .our-collection-next {
        width: 50px; height: 50px; font-size: 24px;
      }
      .our-collection-prev { left: 8px; }
      .our-collection-next { right: 8px; }
    }
/*  */
/* ================================
   Marquee Section
================================= */

.unique-marquee-section {
  width: 100%;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #101010;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 6s linear infinite;
}

.marquee-track span {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  padding: 15px;
  white-space: nowrap;
}

/* 🔥 KEY FIX */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 20px;
  }
}/*============================= CAROUSEL SECTION =============================*/
.our-client-carousel-container {
  padding: 50px 0;
  text-align: center;
}

.our-client-carousel-title {
  font-size: 50px;
  font-weight: normal;
  margin-bottom: 30px;
  color: var(--text-light);
}

.our-client-carousel {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px; /* Optional: Rounded corners for the carousel */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Light shadow for depth */
}

.our-client-carousel-images {
  display: flex;
  transition: transform 1s ease-in-out;
  gap: 20px;
}

.our-client-carousel-slide {
  position: relative;
  min-width: calc(20% - 20px);
  transition: opacity 0.5s ease-in-out;
  box-sizing: border-box;
  background-color: #ececec;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}

.our-client-carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Navigation Buttons Styling */
.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-prev:hover, .carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Hover effect on images */
.our-client-carousel-slide:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Responsiveness */
@media (max-width: 768px) {
  .our-client-carousel-title {
    font-size: 40px;
  }

  .our-client-carousel {
    width: 90%;
  }

  .our-client-carousel-slide {
    min-width: calc(33.33% - 20px);
  }
}

@media (max-width: 480px) {
  .our-client-carousel-slide {
    min-width: calc(50% - 20px);
  }
}

/*============================= CATEGORY SECTION =============================*/
.category-section {
    text-align: center;
    padding: 50px 20px;
}

.category-title {
    font-size: 50px;
    color: var(--text-light);
    margin-bottom: 30px;
      font-weight: normal;
      text-transform: uppercase;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 5 items per row by default */
    gap: 30px;
    justify-items: center;
    align-items: center;
    overflow-x: hidden; /* Hide overflow for a carousel effect */
    position: relative;
    width: 100%;
}

.category-item {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-size: 18px;
    width: 100%;
    border-radius: 0;
    cursor: pointer;
}

.category-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Add smooth transition for scrolling */
.category-container {
    scroll-behavior: smooth;
}

/* Responsive Design */

/* Medium Screens: 4 items per row (max-width: 1024px) */
@media (max-width: 1024px) {
    .category-container {
        grid-template-columns: repeat(3, 1fr);  /* 4 items per row on medium screens */
    }
    .category-item {
        max-width: 280px;  /* Adjust max width for medium screens */
        height: 350px;  /* Adjust height for medium screens */
    }
}

/* Small Screens: 3 items per row (max-width: 768px) */
@media (max-width: 768px) {
    .category-container {
        grid-template-columns: repeat(2, 1fr);  /* 3 items per row on smaller screens */
    }
    .category-item {
        max-width: 220px;  /* Adjust max width for smaller screens */
        height: 280px;  /* Adjust height for smaller screens */
    }

    .category-btn {
        font-size: 16px;  /* Adjust button text size for smaller screens */
    }
}

/* Very Small Screens: 2 items per row (max-width: 480px) */
@media (max-width: 480px) {
    .category-container {
        grid-template-columns: repeat(2, 1fr);  /* 2 items per row on very small screens */
    }
    .category-item {
        max-width: 180px;  /* Adjust the max-width for very small screens */
        height: 220px;  /* Adjust height for very small screens */
    }

    .category-btn {
        font-size: 14px;  /* Adjust button text size further for very small screens */
    }
}
          
.about-hero {        padding: 80px 0;        /* position: relative; */         overflow: hidden;		      }	  
.about-hero::before {    content: "";    position: absolute;    top: 0;    left: 0;    right: 0;    bottom: 0;    /* background: linear-gradient(to bottom, transparent 0%, var(--bg-dark) 100%; */    z-index: 1;
    /* background: #424242; */    background-color: rgba(0, 0, 0, 0.55);}
.about-hero .wpb_wrapper h1, .about-hero .wpb_wrapper h2{color:#fff;}
.about-hero h3{font-size: 55px; color:#fff; text-transform:uppercase; font-weight:normal;} .zoom-overlay h3 a.linklist { color: #fff !important;}