/*!
Theme Name: Al-Shafee

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

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

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  padding: 0;  
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #0b0d13;
}
:root {
  --bg-1: #101018;
  --bg-2: #1a1f2b;
  --glass: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffff;
  --muted: #ffff;
  --accent: #ffff;
}
.container {
    width: 100%;
    max-width: 1248px;
    padding: 0 20px;
    overflow: visible;
}
/*header start here*/
header.custom_header {
position: relative;
width: 100%;
z-index: 10;
margin-top: 0;
/* background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35); */
padding: 40px 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    margin-top: 0;
    height: 88px;
    flex-wrap: nowrap;
    overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 99;
  flex-shrink: 0;
}

.logo a img {
    width: 180px;
	height: 58px;
    z-index: 99;
    flex-shrink: 0;
}

.nav {
  flex: 1;
}
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: center;
}
.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.nav ul li {
    padding: 0px 15px;
    flex-shrink: 0;
}
.nav-link {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 0.2rem 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:focus,
.nav-link:active,
.nav-link:focus-visible {
  color: inherit;
  outline: none;
  box-shadow: none;
}

.nav-link.active {
  color: var(--accent);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.cta {
    border-radius: 12px;
    border: 1px solid transparent;
    background: #d9a12a;
    backdrop-filter: blur(22px);
    color: #000;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
    padding: 18px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

.cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgb(0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 5;
}
body.menu-open::after {
  opacity: 1;
  pointer-events: auto;
}
.nav-item.has-mega { position: relative; }
.nav-item.has-mega > .nav-link.active, .nav-link:hover{
  color: #f2b705;
}
.nav-item.has-mega > .nav-link.active::after, .nav-link:hover::after {
  background: #f2b705;
  transform: scaleX(1);
}
.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  top: calc(100% + 29px);
  min-width: 322px;
  max-width: 90vw;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  overflow: hidden;
  z-index: 1000;
  background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.nav-item.open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 320px;
  min-width: 320px;
  max-height: 60vh;
  overflow-y: auto;
  padding-bottom: 12px;
  flex-direction: column;
  gap: 0px !important;
  justify-content: flex-start !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
}
.category-list::-webkit-scrollbar {
  width: 8px;
}
.category-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.category-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  transition: background 0.2s ease;
}
.category-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}
.cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0!important;
  margin-right: 30px;
  margin-bottom: 2px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(95deg, rgb(26 29 40 / 88%), rgb(14 16 24 / 97%));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}

.cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  text-decoration: none;
  color: inherit;
}
.cat-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 200px;
}
.cat-left i {
  font-size: 20px;
  width: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}
.cat:hover .cat-left i,
.cat.active .cat-left i {
  color: #f2b705;
}
.cat .chevron {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  transition: color 0.2s ease;
}
.cat:hover .chevron,
.cat.active .chevron {
  color: rgba(255, 255, 255, 0.9);
}
.cat:hover,
.cat.active {
  /* background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75)); */
  backdrop-filter: blur(12px);
  color: #fff;
  margin-right: 0;
  /* border: 1px solid rgba(255, 255, 255, 0.12); */
  background: linear-gradient(95deg, rgba(242, 183, 5, 0.25), rgba(242, 183, 5, 0.18));
  border-color: rgba(242, 183, 5, 0.6);
}

.cat-link:hover {
  text-decoration: none;
  color: inherit;
}
/* Default active (e.g., Garments) should stand out on load */
.cat.active {
  background: linear-gradient(95deg, rgba(242, 183, 5, 0.25), rgba(242, 183, 5, 0.18));
  border-color: rgba(242, 183, 5, 0.6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* Section Border - Add border to all sections except hero and footer with fade effect */
section:not(.hero-section):not(.main-footer):not(.shop-sec) {
  position: relative;
  border-bottom: none;
  overflow: hidden;
}

section.shop-sec {
  position: relative;
  border-bottom: none;
  overflow: visible;
}

section:not(.hero-section):not(.main-footer)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, 
    transparent 0%, 
    transparent 10%, 
    #d9a12a 20%, 
    #d9a12a 30%, 
    #d9a12a 50%, 
    #d9a12a 70%, 
    #d9a12a 80%, 
    transparent 90%, 
    transparent 100%);
  pointer-events: none;
}

/* Features section */
.features-section {
  padding: 100px 0;
  background-color: #0b0d13;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}
.feature-card {
  background: #0000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.feature-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Features responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {

  .features-section {
    padding: 60px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 30px 24px;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  .feature-icon svg,.feature-icon img {
    width: 30px;
    height: 30px;
  }
  .feature-card h3 {
    font-size: 18px;
    max-width: 200px;
  }
  .feature-card p {
    font-size: 12px;
  }
}

/* Industries grid */
.industries {
  padding: 48px 0 60px;
}
.industry-heading h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
  padding: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.industry-card {
  --overlay: rgba(0, 0, 0, 0.58);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 18px;
  aspect-ratio: 4 / 3;
  min-height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background-image: var(--tile-bg, linear-gradient(135deg, #1a1f2b, #0b0d13));
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  transition: background 0.3s ease;
  z-index: 1;
}
.industry-card:hover,
.industry-card:focus-visible {
  --overlay: rgba(0, 0, 0, 0);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  color: #fff;
}
.industry-card span {
  position: relative;
  z-index: 2;
  max-width: 90%;
}
.hamburger {
  display: none;
  background: var(--glass);
  border: 1px solid var(--border);
  z-index: 9999;
  border-radius: 12px;
  width: 44px;
  height: 40px;
  padding: 9px 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  z-index: 9999;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Search Icon Button */
.search-icon-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  width: 44px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  flex-shrink: 0;
  z-index: 99;
}

.search-icon-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 183, 5, 0.4);
  color: #f2b705;
}

.search-icon-btn.desktop-only {
  display: none;
}

@media (min-width: 769px) {
  .search-icon-btn:not(.desktop-only) {
    display: none;
  }
  
  .search-icon-btn.desktop-only {
    display: flex;
  }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-overlay.active {
  display: flex;
  opacity: 1;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}

.search-input {
  width: 100%;
  padding: 20px 60px 20px 24px;
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-right-radius: 12px;
    border-top-left-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #f2b705;
  background: rgba(255, 255, 255, 0.15);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-submit-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  transition: color 0.2s ease;
}

.search-submit-btn:hover {
  color: #f2b705;
}

.search-results-wrapper {
  width: 100%;
  background: #1a1f2b;
  border-radius: 0 0 12px 12px;
  margin-top: -2px;
  min-height: 100px;
  padding: 30px 24px;
  position: relative;
}

.search-results-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #f2b705;
}

.search-instruction {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  text-align: center;
}

.search-results {
  display: none;
  margin-top: 20px;
}

.search-results.has-results {
  display: block;
}

.search-results.has-results ~ .search-instruction {
  display: none;
}

.search-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  transition: all 0.2s ease;
}

.search-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f2b705;
  color: #f2b705;
}

.hero {
  min-height: calc(100vh - 120px);
  padding: 2rem 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) {
  header.custom_header {
      padding: 20px 0;
  }

  .topbar {
        gap: 1rem;
        padding: 0.8rem 1rem;
        min-height: 88px;
    }

  .nav ul {
      gap: 1rem;
  }

  .nav ul li {
      padding: 0px 10px;
  }

  .nav-link {
      font-size: 14px;
      white-space: nowrap;
  }

  .logo a img {
      width: 150px;
  }

  .cta {
      padding: 14px 20px;
      font-size: 14px;
      white-space: nowrap;
  }
}

/* iPad Air and Similar Tablets */
@media (max-width: 900px) and (min-width: 769px) {
  header.custom_header {
      padding: 20px 0;
  }

  .topbar {
        gap: 0.8rem;
        padding: 0.75rem 1rem;
        flex-wrap: nowrap;
    }

  .nav ul {
      gap: 0.6rem;
      flex-wrap: nowrap;
  }

  .nav ul li {
      padding: 0px 6px;
  }

  .nav-link {
      font-size: 13px;
      white-space: nowrap;
      padding: 0.2rem 0;
  }

  .logo a img {
      width: 140px;
  }

  .cta {
      padding: 12px 18px;
      font-size: 13px;
      white-space: nowrap;
      flex-shrink: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .topbar {
        gap: 0.75rem;
        padding: 0.8rem 1rem;
        margin-top: 0px;
    }

  .nav {
    position: fixed;
    inset: 0;
    padding-top: 90px;
    /* background: rgba(7, 9, 15, 0.7);
    backdrop-filter: blur(12px); */
    transform: translateX(-103%);
    transition: transform 0.28s ease;
  }

  .nav.open {
    transform: translateX(0);
  }
  .nav ul {
      flex-direction: column;
      gap: 0.5rem;
      padding: 1rem 1rem 0;
      z-index: 9999;
      width: 100%;
      height: auto;
      background: transparent;
      align-items: stretch;
  }

  .nav ul li {
      width: 100%;
      padding: 0;
      margin: 0;
  }

  .nav-link {
      display: block;
      width: 100%;
      padding: 16px 20px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      text-align: left;
      white-space: normal;
      border-radius: 8px;
      transition: all 0.2s ease;
  }

  .nav-link::after {
      display: none;
  }

  .nav-link:hover,
  .nav-link:active {
      color: #f2b705;
  }

  .nav-item.has-mega {
    width: 100%;
  }

  .nav-item.has-mega .mega {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .nav-item.has-mega.open .mega {
    max-height: 800px;
  }

  /* remove popup style in mobile */
  .mega {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .category-list {
    max-height: 50vh;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
  }

  .category-list::-webkit-scrollbar {
    width: 6px;
  }

  .category-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .category-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: background 0.2s ease;
  }

  .category-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  .cat {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }

  .cat-link {
    padding: 16px 20px;
    font-size: 15px;
  }

  .mobile-cta {
    padding: 0 1rem 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-cta .cta {
    width: 100%;
    text-align: center;
    display: flex;
        align-items: center;
        justify-content: center;
    margin: 0;
  }

  /* Hide desktop CTA inside topbar on mobile; we show drawer CTA instead */
  .topbar > .cta {
    display: none;
  }

  .logo {
    order: 1;
  }

  .search-icon-btn:not(.desktop-only) {
    display: flex !important;
    margin-left: auto;
    margin-right: 8px;
    order: 2;
  }

  .search-icon-btn.desktop-only {
    display: none !important;
  }

  .hamburger {
    display: inline-flex;
    order: 3;
  }
}
@media (max-width: 520px) {
    .logo a img {
        width: 170px;
    }

    .nav ul {
        padding: 0.75rem;
        gap: 0.4rem;
    }

    .nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }

    .cat-link {
        padding: 14px 16px;
        font-size: 14px;
    }

    .cat-left i {
        font-size: 18px;
        width: 20px;
    }
}

/* Industries grid responsive */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 920px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .industry-heading h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 560px) {
  .industries-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .industry-card {
    aspect-ratio: 16 / 10;
  }
  .industry-heading h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

/* Brands section */
.brands-section {
  padding: 3em 0;
  background: #111;
}
.brands-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.brands-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 60px;
  align-items: center;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: grayscale(100%);
  cursor: pointer;
}
.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
.brand-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-logo svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  fill: #fff;
  display: block;
}

/* Brands responsive */
@media (max-width: 1200px) {
  .brands-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .brands-section {
    padding: 40px 0;
  }
  .brands-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .brands-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .brand-logo {
    height: 60px;
  }
}
@media (max-width: 560px) {
  .brands-heading {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .brands-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .brand-logo {
    height: 50px;
  }
  .text-brand-item img {
    max-width: 120px!important;
  }
}

/* Text Brands Infinite Scroll Section */
.text-brands-scroll-section {
  padding: 0;
  background: #0b0d13;
  position: relative;
  overflow: hidden;
}
.text-brands-scroll-section::before,
.text-brands-scroll-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}
.text-brands-scroll-section::before {
  top: 0;
}
.text-brands-scroll-section::after {
  bottom: 0;
}
.text-brands-container {
  padding: 70px 50px;
  overflow: hidden;
}
.text-brands-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(8, 8, 8, 0.1);
    border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}
.text-brands-scroll {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: text-scroll-infinite 17s linear infinite;
  width: fit-content;
  padding: 0 20px;
}
.brands-mar{
  margin: 70px 0px 0px 0px;
}
@keyframes text-scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.text-brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 60px;
}
.text-brand-item img {
  max-width: 176px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Text Brands responsive */
@media (max-width: 768px) {
  .text-brands-container {
    padding: 50px 0;
  }
  .text-brands-scroll {
    gap: 60px;
    animation-duration: 30s;
  }
  .text-brand-item {
    height: 50px;
  }
}
@media (max-width: 560px) {
  .text-brands-container {
    padding: 40px 0;
  }
  .text-brands-scroll {
    gap: 50px;
    animation-duration: 25s;
  }
  .text-brand-item {
    height: 40px;
  }
}

.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }
}

/* Compact extra small */
@media (max-width: 520px) {
  .cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
  }
}


/*header end here*/

/*hero section start here*/

/* HERO VIDEO */
.hero-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
}


.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    padding: 120px 20px 0;
    box-sizing: border-box;
}

.hero-spacer {
    height: 80vh;
    background: #0b0d13;
    min-height: 450px;
}

@media (max-width: 1024px) {
    .hero-spacer {
        height:85vh;
    }
}



@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-spacer {
    height: 67vh !important;
    min-height: 500px !important;
  }
  
  .hero-content {
    padding: 70px 20px 0;
  }
  
  .hero-content h1 { 
    font-size: 2rem!important; 
    margin-bottom: 15px;
  }
  
  .hero-content span {
    margin-bottom: 10px;
  }
  
  .hero-content p  {
    max-width: 100%;
    width: 100%;
    font-size: 12px;
    margin-bottom: 20px;
    padding: 10px 0;
  }
  
  .btn-outer {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 75vh;
    min-height: 500px;
  }
  
  .hero-spacer {
    height: 60vh !important;
    min-height: 450px !important;
  }
  
  .hero-content span {
    max-width: 288px;
  }
  .hero-content p {
    max-width: 324px!important;
    line-height: 110%;
    padding: 15px 0px;
  }

  .hero-content {
    padding: 70px 15px 0;
  }
  
  .hero-content h1 {
    font-size: 1.75rem !important;
    margin-bottom: 12px;
    padding: 0;
  }
  
  .hero-content span {
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  .hero-content p {
    font-size: 11px;
    padding: 8px 0;
    margin-bottom: 15px;
  }
  
  .btn-outer {
    margin-top: 15px;
  }
}
.hero-content span {
    color: #FFF;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.hero-content h1 {
    color: #FFF;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 56px;
    max-width: 800px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 0px;
    padding: 8px;
}
.hero-content p {
    max-width: 524px;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding: 20px 0px;
    margin: 0 auto;
    box-sizing: border-box;
}
/* Primary Button Style (Hero Button Style) */
a.choose-btn,
button.choose-btn,
.btn-primary {
    border-radius: 12px;
    background: #d9a12a;
    display: inline-flex;
    height: 48px;
    padding: 17px 28px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #000;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

a.choose-btn:hover,
button.choose-btn:hover,
.btn-primary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}
a.live-btn {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(22px);
    display: flex;
    width: 153px;
    height: 48px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 825px;
    color: #FFF;
    text-align: center;
    font-family: Figtree;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    text-transform: capitalize;
    text-decoration: none;
}
.btn-outer {
    display: flex;
    gap: 12px;
}
/*hero section end here*/

/* Footer */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: "Poppins", sans-serif;
}
.footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1.5fr 1fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 120px;
}
.footer-column {
    display: flex;
    flex-direction: column;
}
.footer-brand {
    max-width: 100%;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 140px;
    height: 95px;
    object-fit: contain;
}
.footer-brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}
.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 300px;
}
.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-list li i {
    color: #d7a328;
    margin-top: 2px;
    min-width: 16px;
    font-size: 14px;
}
.footer-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-list li a:hover {
    color: #ffffff;
}
.footer-list li span {
    flex: 1;
}
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.footer-cta {
    font-size: 30px;
    color: #fff;
}
.footer-contact-link {
    color: #ffffff;
    text-transform: capitalize;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    margin-left: 20px;
}
.footer-contact-link:hover {
    opacity: 0.8;
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
}
.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #fff;
}
.social-icon i {
    font-size: 16px;
    color: #d7a227;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 2.2fr 1.5fr 1fr 0.8fr 1fr;
        gap: 30px;
    }
    
}
@media (max-width: 992px) {
    /* .footer-top {
        
        gap: 60px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    } */
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    .footer-brand {
        grid-column: auto;
    }
    /* .footer-description {
        max-width: 100%;
    } */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    .footer-cta {
        text-align: center;
        font-size: 25px;
    }
}
@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 20px;
    }
    .footer-top {
        gap: 25px;
    }
    .footer-logo {
        margin-bottom: 15px;
    }
    .footer-heading {
        margin-bottom: 15px;
        font-size: 15px;
    }
    .footer-list li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .footer-social {
        gap: 10px;
    }
    .social-icon {
        width: 36px;
        height: 36px;
    }
    .social-icon i {
        font-size: 14px;
    }
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: transparent;
}
.mission-section-alt {
    background-color: #111;
}
.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mission-content-reverse {
    grid-template-columns: 1fr 1fr;
}
.mission-content-reverse .mission-image {
    order: 1;
}
.mission-content-reverse .mission-text {
    order: 2;
}
.mission-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
}
.mission-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}
.mission-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}
.mission-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-family: "Poppins", sans-serif;
}
.mission-image {
    width: 100%;
    height: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 12px;
}
.mission-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mission Section Responsive */
@media (max-width: 992px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mission-content .mission-image {
        order: -1;
        max-height: 500px;
    }
    .mission-content-reverse .mission-image {
        order: -1;
    }
    .mission-content-reverse .mission-text {
        order: 2;
    }
    .mission-heading {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }
    .mission-heading {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .mission-description {
        font-size: 14px;
    }
    .mission-label {
        font-size: 11px;
        margin-bottom: 15px;
    }
}
@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }
    .mission-content {
        gap: 30px;
    }
    .mission-heading {
        font-size: 24px;
    }
    .mission-description {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* Page Heading Section */
.page-heading-section {
    padding: 60px 0 40px;
    background-color: #0b0d13;
}

.page-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Page Heading Responsive */
@media (max-width: 768px) {
    .page-heading-section {
        padding: 10px 0 30px;
    }

    .page-heading {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .page-heading-section {
        padding: 30px 0 20px;
    }

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

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: #0b0d13;
    min-height: calc(100vh - 200px);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-heading {
    margin-bottom: 50px;
}

.contact-heading .contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #daa127;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    text-transform:capitalize;
}

.contact-heading .contact-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 415px;
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-details {
    flex: 1;
}

.contact-details .contact-label-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.contact-details .contact-value a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px;
    border-radius: 12px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: calc(50% - 12px);
}

.form-group.form-group-full {
    width: 100%;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Poppins", sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f2b705;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.recaptcha-wrapper {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    overflow-y: visible;
}

.g-recaptcha {
    display: inline-block;
    max-width: 100%;
}

.g-recaptcha > div {
    max-width: 100% !important;
    margin: 0 auto !important;
}

.submit-btn,
button[type="submit"],
.btn-submit {
    border-radius: 12px;
    background: #d9a12a;
    color: #000;
    border: 1px solid transparent;
    padding: 17px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: capitalize;
    align-self: flex-start;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    line-height: 150%;
}

.submit-btn:hover,
button[type="submit"]:hover,
.btn-submit:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
}

.submit-btn:active,
button[type="submit"]:active,
.btn-submit:active {
    transform: translateY(0);
}
/*privacy policy strat*/

section.page-heading-section p {
    color: #fff;
    width: 60%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0px;
    box-sizing: border-box;
}
.privacy-main {
    background: #0b0d13;
}
.privacy-outer {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    padding: 68px 0px;
    color: #fff;
    box-sizing: border-box;
}
.privacy-outer p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0px;
    padding-bottom: 12px;
}
.privacy-outer h3 {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0px;
    padding-bottom: 12px;
}
.privacy-outer p {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 0px;
    padding-bottom: 12px;
}
.privacy-outer ul li {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.privacy-outer ul {
    padding-left: 20px;
    margin: 12px 0;
}

.privacy-outer a {
    color: #d9a12a;
    text-decoration: underline;
    word-break: break-word;
}

/* Privacy and Terms Responsive */
@media (max-width: 768px) {
    .privacy-outer {
        width: 100%;
        padding: 40px 20px;
    }

    .privacy-outer h3 {
        font-size: 24px;
    }

    .privacy-outer p,
    .privacy-outer ul li {
        font-size: 15px;
        line-height: 24px;
    }

    section.page-heading-section p {
        width: 100%;
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .privacy-outer {
        padding: 30px 15px;
    }

    .privacy-outer h3 {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .privacy-outer p,
    .privacy-outer ul li {
        font-size: 14px;
        line-height: 22px;
    }

    .privacy-outer p {
        padding-bottom: 10px;
    }

    section.page-heading-section p {
        padding: 12px 15px;
        font-size: 13px;
    }

    .privacy-outer ul {
        padding-left: 18px;
    }
}
/*privacy policy strat*/
/* Contact Section Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-heading .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        gap: 40px;
        padding: 0 15px;
    }

    .contact-heading {
        margin-bottom: 40px;
    }

    .contact-heading .contact-title {
        font-size: 32px;
    }

    .contact-item {
        padding: 24px 0;
        max-width: 100%;
    }

    .contact-details .contact-value {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-submit-wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .submit-btn {
        width: 100%;
    }

    .recaptcha-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .recaptcha-wrapper > div {
        max-width: 100%;
        margin: 0 auto;
    }

    .g-recaptcha {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .g-recaptcha > div {
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 0 10px;
        gap: 30px;
    }

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

    .contact-item {
        flex-direction: column;
        gap: 12px;
    }

    .contact-icon {
        margin-top: 0;
    }

    .contact-form-wrapper {
        padding: 18px 12px;
    }

    .contact-form {
        gap: 18px;
    }

    .form-group {
        width: 100%;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-submit-wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }

    .submit-btn {
        width: 100%;
    }

    .recaptcha-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .recaptcha-wrapper > div {
        max-width: 100%;
        margin: 0 auto;
    }

    .g-recaptcha {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .g-recaptcha > div {
        margin: 0 auto !important;
    }
}

/* Contact Social Media Section */
.contact-social-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 30px;
    padding-top: 30px;
}

.follow-line {
    width: 120px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 12px;
    align-self: center;
}

.follow-text {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.2s ease;
    border-radius: 50%;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.contact-social-icon:hover {
    color: #daa127;
    transform: translateY(-2px);
}

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

.contact-social-icon span {
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}
.form-group p {
    display: block;
    margin: 12px 5px;
}
.contact-form-wrapper .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
        width: calc(50% - 0px);
    float: left;
}
.form-group.form-group-full {
    width: 100%;
}
/* Contact Social Media Responsive */
@media (max-width: 768px) {
    .contact-social-wrapper {
        gap: 16px;
        margin-top: 20px;
        padding-top: 20px;
    }
    section.page-heading-section p {
    width: 100%;
}
.contact-form-wrapper .form-group {
    width: 100%;
}
}

@media (max-width: 480px) {
    /* .contact-social-wrapper {
        margin-top: 15px;
        padding-top: 15px;
        flex-direction: column;
        align-items: flex-start;
    } */
     .follow-line {
        display: none;
     }

    .follow-text {
        font-size: 14px;
    }

    .contact-social-icons {
        gap: 12px;
    }

    .contact-social-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

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

/* Map Section */
.map-section {
    width: 100%;
    background-color: #0b0d13;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

}

/* Map Section Responsive */
@media (max-width: 768px) {
    .map-container {
        height: 400px;
    }
    .contact-form-wrapper .form-group {
    width: 100%;
}
}

@media (max-width: 480px) {
    .map-container {
        height: 350px;
    }
}

/* Shop Section Styles */
.shop-sec {
    padding: 60px 0 100px;
    background-color: #0b0d13;
    min-height: calc(100vh - 200px);
    position: relative;
}

.shop-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
}

/* Filters Sidebar */

.shop-filters {
  background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.05);
  height: fit-content;
}

.shop-filters::-webkit-scrollbar {
  width: 8px;
}

.shop-filters::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.shop-filters::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  transition: background 0.2s ease;
}

.shop-filters::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.filters-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.filter-close-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.filter-close-btn:hover {
  color: #f2b705;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s ease;
}

.filter-title:hover {
  color: #f2b705;
}

.filter-title i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.filter-group.active .filter-title i {
  transform: rotate(180deg);
}

.filter-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.filter-group.active .filter-options {
  max-height: 500px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s ease;
}

.filter-checkbox:hover {
  color: #fff;
}

.filter-checkbox input[type="checkbox"] {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #f2b705;
}

.filter-checkbox span {
  flex: 1;
}

/* Shop Content */
.shop-content {
  flex: 1;
}

.shop-header {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 32px;
}


/* Sort Dropdown */
.sort-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.sort-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    min-width: 180px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.sort-dropdown-btn:hover {
    border-color: #f2b705;
}

.sort-dropdown-btn.active {
    border-color: #f2b705;
}

.sort-selected {
    flex: 1;
    text-align: left;
}

.sort-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sort-dropdown-btn.active .sort-icon {
    transform: rotate(0deg);
}

.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.sort-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.sort-option:last-child {
    border-bottom: none;
}

.sort-option:hover {
    background-color: #f5f5f5;
}

.sort-option.active {
    text-decoration: underline;
    font-weight: 600;
}

.filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.85), rgba(14, 16, 24, 0.95));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.filter-toggle-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.95), rgba(14, 16, 24, 1));
}

.filter-toggle-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.filter-toggle-btn svg path {
    fill: #fff;
}

.filter-toggle-btn span {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.product-card {
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(242, 183, 5, 0.4);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #f2b705;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    border-color: rgba(242, 183, 5, 0.6);
    color: #f2b705;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: linear-gradient(95deg, rgba(242, 183, 5, 0.25), rgba(242, 183, 5, 0.18));
    border-color: rgba(242, 183, 5, 0.6);
    color: #f2b705;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-ellipsis {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 4px;
}

/* Shop Responsive */
@media (max-width: 1200px) {
    .products-grid {
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .shop-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .shop-header {
      justify-content: space-between;
    }

    .shop-filters {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        max-height: 100vh;
        z-index: 10000;
        transition: left 0.3s ease;
        border-radius: 0;
        padding-top: 60px;
    }

    .shop-filters.open {
        left: 0;
    }

    .filter-close-btn {
        display: block;
    }

    .filter-toggle-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .shop-sec {
        padding: 40px 0 60px;
    }

    .shop-header {
        margin-bottom: 24px;
    }

    .sort-dropdown-btn {
        min-width: 150px;
        padding: 10px 14px;
        font-size: 13px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-name {
        font-size: 12px;
    }

    .product-price {
        font-size: 14px;
    }

    .pagination-btn {
        min-width: 36px;
        height: 36px;
        font-size: 12px;
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
   

    .pagination-numbers {
        gap: 4px;
    }

    .pagination-btn.number {
        min-width: 32px;
        height: 32px;
        padding: 0 6px;
        font-size: 12px;
    }

    .pagination-ellipsis {
        display: none;
    }
}

/* Product Detail Page Styles */
.product-detail-sec {
    padding: 60px 0 100px;
    margin-top: 60px;
    background-color: #0b0d13;
    min-height: calc(100vh - 260px);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Product Images Section */
.product-images-section {
    position: sticky;
    top: 120px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.product-main-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4/4;
    overflow: hidden;
    background: #1a1f2b;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    cursor: zoom-in;
}

.product-main-image.zooming {
    cursor: zoom-out;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.product-thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    overflow-x: hidden;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    flex: 1;
}

.thumbnail-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.85), rgba(14, 16, 24, 0.95));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 10;
}

.thumbnail-arrow:hover {
    background: linear-gradient(95deg, rgba(242, 183, 5, 0.25), rgba(242, 183, 5, 0.18));
    border-color: rgba(242, 183, 5, 0.6);
    color: #f2b705;
    transform: scale(1.1);
}

.thumbnail-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.thumbnail-arrow:disabled:hover {
    transform: none;
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.85), rgba(14, 16, 24, 0.95));
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.thumbnail-arrow i {
    font-size: 12px;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    background: #fff;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: #f2b705;
    border-width: 2px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Details Section */
.product-details-section {
    color: #fff;
}

.product-detail-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px 0;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

.product-detail-price {
    font-size: 24px;
    font-weight: 600;
    color: #f2b705;
    margin: 0 0 8px 0;
    font-family: "Poppins", sans-serif;
}

.product-shipping-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 32px 0;
    font-family: "Poppins", sans-serif;
}

.product-options {
    margin-bottom: 48px;
}

.product-option-group {
    margin-bottom: 24px;
}

.option-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
}

.option-selected {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.color-options {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, border-color 0.2s ease;
    background: transparent;
    position: relative;
    flex-shrink: 0;
}

.color-option:hover {
    transform: scale(1.1);
    transform-origin: center center;
}

.color-option.active {
    border-color: #fff;
}

.color-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: all 0.2s ease;
}

.size-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.size-option.active {
    background: rgba(242, 183, 5, 0.15);
    border-color: #f2b705;
    color: #f2b705;
}

/* Product Accordion Styles */
.product-accordion {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

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

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.accordion-header:hover {
    opacity: 0.8;
}

.accordion-title {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    font-family: "Poppins", sans-serif;
}

.accordion-icon {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.7);
}

.accordion-item.active .accordion-title {
    color: rgba(255, 255, 255, 0.9);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
}

.accordion-body {
    padding-bottom: 16px;
}

.accordion-body p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    font-family: "Poppins", sans-serif;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body h4 {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 16px 0 8px 0;
    font-family: "Poppins", sans-serif;
}

.accordion-body h4:first-child {
    margin-top: 0;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-body ul li {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.accordion-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f2b705;
    font-weight: bold;
    font-size: 18px;
}

.accordion-body ul li:last-child {
    margin-bottom: 0;
}

/* Description Section */
.description-section {
    margin-top: 32px;
    margin-bottom: 32px;
}

.description-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    font-family: "Poppins", sans-serif;
}

.description-content {
    margin-top: 16px;
}

.description-content p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    font-family: "Poppins", sans-serif;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.description-text {
    margin-bottom: 16px;
}

.description-read-more-link {
    color: #f2b705;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.description-read-more-link:hover {
    color: #ffc107;
    text-decoration: underline;
}

/* You May Also Like Section */
.you-may-also-like-sec {
    padding: 80px 0;
    background-color: #0b0d13;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 50px 0;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Shipping & Returns Section */
.shipping-returns-section {
    margin-top: 32px;
}

.shipping-returns-title {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    font-family: "Poppins", sans-serif;
}

.shipping-returns-content {
    margin-top: 16px;
}

.shipping-returns-text {
    margin-bottom: 16px;
}

.shipping-returns-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 16px 0 8px 0;
    font-family: "Poppins", sans-serif;
}

.shipping-returns-text h4:first-child {
    margin-top: 0;
}

.shipping-returns-paragraph {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
    font-family: "Poppins", sans-serif;
}

.shipping-returns-paragraph:last-child {
    margin-bottom: 0;
}

.read-more-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(242, 183, 5, 0.5);
    border-radius: 6px;
    color: #f2b705;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: all 0.2s ease;
    margin-top: 16px;
}

.read-more-btn:hover {
    background: rgba(242, 183, 5, 0.1);
    border-color: #f2b705;
}

/* You May Also Like Section */
.you-may-also-like-sec {
    padding: 80px 0;
    background-color: #0b0d13;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 50px 0;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.related-products-slider {
    position: relative;
    padding: 0 60px;
}

.related-products-carousel {
    overflow: hidden;
    padding-bottom: 20px;
}

.related-products-wrapper {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    padding: 10px 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.95), rgba(14, 16, 24, 0.98));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 18px;
}

.slider-btn:hover {
    background: linear-gradient(95deg, rgba(242, 183, 5, 0.25), rgba(242, 183, 5, 0.18));
    border-color: rgba(242, 183, 5, 0.6);
    color: #f2b705;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.related-product-card {
    min-width: 280px;
    background: linear-gradient(95deg, rgba(26, 29, 40, 0.65), rgba(14, 16, 24, 0.75));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(242, 183, 5, 0.4);
}

.related-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-info {
    padding: 16px;
}

.related-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: "Poppins", sans-serif;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #f2b705;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* Animated Bubble Effect for All Sections (excluding hero, footer, and heading sections) */
section:not(.hero-section):not(.main-footer):not(.page-heading-section):not(.shop-sec) {
  overflow: hidden;
}

section:not(.hero-section):not(.main-footer):not(.page-heading-section):not(.shop-sec)::before {
  content: "";
  width: 250px;
  height: 200px;
  background: #d9a12a;
  filter: blur(180px);
  border-radius: 100px;
  position: absolute;
  bottom: -50px;
  right: 0px;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  animation: moveBubble1 8s ease-in-out infinite alternate;
}

/* Varied animations for different sections */
.features-section::before {
  animation: moveBubble1 8s ease-in-out infinite alternate;
}

.industries::before {
  animation: moveBubble2 7s ease-in-out infinite alternate;
  left: 0;
  right: auto;
  top: -50px;
  bottom: auto;
}

.brands-section::before {
  animation: moveBubble3 9s ease-in-out infinite alternate;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.text-brands-scroll-section::before {
  animation: moveBubble4 6s ease-in-out infinite alternate;
  top: 50%;
  bottom: auto;
  left: -50px;
  right: auto;
}

.contact-section::before {
  animation: moveBubble5 10s ease-in-out infinite alternate;
  bottom: -50px;
  left: 20%;
  right: auto;
}

.shop-sec {
  position: relative;
}

.shop-sec::before {
  animation: moveBubble6 8.5s ease-in-out infinite alternate;
  top: 20%;
  bottom: auto;
  right: 10%;
}

/* Remove bubble effect from heading sections */
.page-heading-section::before {
  display: none;
}

.you-may-also-like-sec::before {
  animation: moveBubble8 9.5s ease-in-out infinite alternate;
  bottom: -50px;
  right: 15%;
}

/* Professional Keyframe Animations */
@keyframes moveBubble1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-600px, -400px) scale(1.2);
  }
}

@keyframes moveBubble2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(500px, 350px) scale(1.15);
  }
}

@keyframes moveBubble3 {
  0% {
    transform: translate(-50%, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -300px) scale(1.3) rotate(180deg);
  }
}

@keyframes moveBubble4 {
  0% {
    transform: translate(0, -50%) scale(1);
  }
  100% {
    transform: translate(700px, -50%) scale(1.25);
  }
}

@keyframes moveBubble5 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(400px, -500px) scale(1.18);
  }
}

@keyframes moveBubble6 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(-500px, 300px) scale(1.22) rotate(-90deg);
  }
}

@keyframes moveBubble7 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(300px, 200px) scale(1.1);
  }
}

@keyframes moveBubble8 {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(-450px, -350px) scale(1.2) rotate(90deg);
  }
}

/* Product Detail Responsive */
@media (max-width: 992px) {
    .product-detail-wrapper {
        
        gap: 40px;
    }

    .product-images-section {
        position: static;
    }

    .product-thumbnails-wrapper {
        gap: 6px;
    }

    .product-thumbnails {
        justify-content: center;
        overflow-x: hidden;
        padding-bottom: 10px;
    }

    .thumbnail-arrow {
        width: 28px;
        height: 28px;
    }

    .thumbnail-arrow i {
        font-size: 10px;
    }

    .thumbnail-item {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-detail-sec {
        padding: 40px 0 60px;
        margin-top: 10px;  
    }

    .product-images-section {
        position: static;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-main-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }

    .product-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .product-detail-title {
        font-size: 28px;
    }

    .product-detail-price {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .related-product-card {
        min-width: 240px;
    }
}

@media (max-width: 480px) {
    .product-detail-sec .container {
        padding: 0 16px;
    }

    .product-detail-sec {
        padding: 30px 0 50px;
        margin-top: 20px;
    }

    .product-detail-wrapper {
        gap: 24px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .product-images-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 0;
        margin: 0;
    }

    .product-main-image {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 1/1;
        overflow: hidden;
        margin: 0 auto 12px;
        border-radius: 6px;
    }

    .product-main-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .related-products-slider {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .product-detail-price {
        font-size: 20px;
    }

    .thumbnail-item {
        width: 70px;
        height: 70px;
    }

    .product-thumbnails-wrapper {
        gap: 6px;
    }

    .thumbnail-arrow {
        width: 24px;
        height: 24px;
    }

    .thumbnail-arrow i {
        font-size: 9px;
    }

    .related-product-card {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .related-products-slider {
        padding: 0 40px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .related-product-card {
        min-width: 140px;
    }
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.submit-btn {
    margin-bottom: -1px;
    padding-top: 12px;
}
.wpcf7-spinner {
    display: none;
}

/* AOS fallback – show content if JS fails */
html:not(.aos-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

