/* Full CSS Framework Inspired by Tailwind */
@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton/Anton-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani light";
  src: url("../fonts/Rajdhani/Rajdhani-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani medium";
  src: url("../fonts/Rajdhani/Rajdhani-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani regular";
  src: url("../fonts/Rajdhani/Rajdhani-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani bold";
  src: url("../fonts/Rajdhani/Rajdhani-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani Semibold";
  src: url("../fonts/Rajdhani/Rajdhani-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Removes tap highlight (for mobile) */
  /* user-select: none; */
  /* Prevents text selection */
}
/* Root Colors and Variables */
:root {
  /* Colors */
  --primary: #cf2c25;
  --secondary: #000000;
  --background: #ffffff;
  --danger: #e3342f;
  --success: #38c172;
  --warning: #ff9800;
  --lable: #054f4f;
  --info: #4d4d4d;
  --gradient-blue: linear-gradient(90deg, #13bec0, #13bdc000);
  --gradient-white: linear-gradient(0deg, #ebf9fa, #ebf9fa00);
  --gradient-btn: linear-gradient(45deg, #08999a, #aaf1f2);
  --background-bloom: radial-gradient(
    circle,
    rgba(0, 255, 255, 0.8) 20%,
    rgba(0, 255, 255, 0) 70%
  );
  --gray-100: #f7fafc;
  --gray-200: #edf2f7;
  --gray-300: #e2e8f0;
  --gray-400: #cbd5e0;
  --gray-500: #a0aec0;
  --gray-600: #718096;
  --gray-700: #4a5568;
  --gray-800: #2d3748;
  --gray-900: #1a202c;
  --white: #ffffff;
  --black: #000000;

  /* Font Families */
  --font-anton: "Anton";
  --font-rajdhani-light: "Rajdhani light";
  --font-rajdhani-medium: "Rajdhani medium";
  --font-rajdhani-regular: "Rajdhani regular";
  --font-rajdhani-bold: "Rajdhani bold";
  --font-rajdhani-semibold: "Rajdhani Semibold";

  /* Font Sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
}
::selection {
  background: var(--primary);
  color: white;
}
/* Font Utilities */
.font-inder {
  font-family: var(--font-inder);
}
.font-serif {
  font-family: var(--font-serif);
}
.font-serif-light-italic {
  font-family: var(--font-serif-light-italic);
}
.font-serif-regular {
  font-family: var(--font-serif-regular);
}
.font-serif-italic {
  font-family: var(--font-serif-italic);
}
.font-serif-bold {
  font-family: var(--font-serif-bold);
}
/* Base Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
}
body {
  margin: 0;
  background-color: var(--background);
  scroll-behavior: smooth;
}
h5 {
  font-family: "Poppin semibold";
  color: var(--lable);
}
/* Spacing */
:root {
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;
}
.m-0 {
  margin: var(--spacing-0);
}
.m-1 {
  margin: var(--spacing-1);
}
.m-2 {
  margin: var(--spacing-2);
}
.m-3 {
  margin: var(--spacing-3);
}
.m-4 {
  margin: var(--spacing-4);
}
.m-5 {
  margin: var(--spacing-5);
}
.m-6 {
  margin: var(--spacing-6);
}
.m-8 {
  margin: var(--spacing-8);
}
.m-10 {
  margin: var(--spacing-10);
}
.m-12 {
  margin: var(--spacing-12);
}
.m-16 {
  margin: var(--spacing-16);
}
.m-20 {
  margin: var(--spacing-20);
}
.m-24 {
  margin: var(--spacing-24);
}
.m-32 {
  margin: var(--spacing-32);
}
.p-0 {
  padding: var(--spacing-0);
}
.p-1 {
  padding: var(--spacing-1);
}
.p-2 {
  padding: var(--spacing-2);
}
.p-3 {
  padding: var(--spacing-3);
}
.p-4 {
  padding: var(--spacing-4);
}
.p-5 {
  padding: var(--spacing-5);
}
.p-6 {
  padding: var(--spacing-6);
}
.p-8 {
  padding: var(--spacing-8);
}
.p-10 {
  padding: var(--spacing-10);
}
.p-12 {
  padding: var(--spacing-12);
}
.p-16 {
  padding: var(--spacing-16);
}
.p-20 {
  padding: var(--spacing-20);
}
.p-24 {
  padding: var(--spacing-24);
}
.p-32 {
  padding: var(--spacing-32);
}
.p-[value] {
  padding: [value];
}
/* Flexbox */
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: flex-end;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: var(--spacing-1);
}
.gap-2 {
  gap: var(--spacing-2);
}
.gap-4 {
  gap: var(--spacing-4);
}
.gap-5 {
  gap: var(--spacing-5);
}
.gap-6 {
  gap: var(--spacing-6);
}
.gap-8 {
  gap: var(--spacing-8);
}
.gap-10 {
  gap: var(--spacing-10);
}
.gap-12 {
  gap: var(--spacing-12);
}
.gap-16 {
  gap: var(--spacing-16);
}
.gap-20 {
  gap: var(--spacing-20);
}
.gap-24 {
  gap: var(--spacing-24);
}
.gap-32 {
  gap: var(--spacing-32);
}
/* Grid */
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid-cols-6 {
  grid-template-columns: repeat(6, 1fr);
}
.gap-1 {
  gap: var(--spacing-1);
}
.gap-2 {
  gap: var(--spacing-2);
}
.gap-4 {
  gap: var(--spacing-4);
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-5xl {
  font-size: 3rem;
}
.font-bold {
  font-weight: bold;
}
.font-medium {
  font-weight: 500;
}
.font-light {
  font-weight: 300;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Colors */
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-danger {
  color: var(--danger);
}
.text-success {
  color: var(--success);
}
.text-warning {
  color: var(--warning);
}
.text-info {
  color: var(--info);
}
.text-gray-500 {
  color: var(--gray-500);
}
.text-gray-700 {
  color: var(--gray-700);
}
.bg-primary {
  background-color: var(--primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-danger {
  background-color: var(--danger);
}
.bg-success {
  background-color: var(--success);
}
.bg-warning {
  background-color: var(--warning);
}
.bg-info {
  background-color: var(--info);
}
.bg-gray-100 {
  background-color: var(--gray-100);
}
.bg-gray-500 {
  background-color: var(--gray-500);
}

/* Borders */
.border {
  border: 1px solid var(--gray-300);
}
.border-0 {
  border: 0;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-full {
  border-radius: 9999px;
}

/* width */
.w-0 {
  width: 0%;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.w-0 {
  width: 0px;
}
.w-1 {
  width: 0.25rem;
} /* 4px */
.w-2 {
  width: 0.5rem;
} /* 8px */
.w-3 {
  width: 0.75rem;
} /* 12px */
.w-4 {
  width: 1rem;
} /* 16px */
.w-5 {
  width: 1.25rem;
} /* 20px */
.w-6 {
  width: 1.5rem;
} /* 24px */
.w-7 {
  width: 1.75rem;
} /* 28px */
.w-8 {
  width: 2rem;
} /* 32px */
.w-9 {
  width: 2.25rem;
} /* 36px */
.w-10 {
  width: 2.5rem;
} /* 40px */
.w-11 {
  width: 2.75rem;
} /* 44px */
.w-12 {
  width: 3rem;
} /* 48px */
.w-14 {
  width: 3.5rem;
} /* 56px */
.w-16 {
  width: 4rem;
} /* 64px */
.w-20 {
  width: 5rem;
} /* 80px */
.w-24 {
  width: 6rem;
} /* 96px */
.w-28 {
  width: 7rem;
} /* 112px */
.w-32 {
  width: 8rem;
} /* 128px */
.w-36 {
  width: 9rem;
} /* 144px */
.w-40 {
  width: 10rem;
} /* 160px */
.w-44 {
  width: 11rem;
} /* 176px */
.w-48 {
  width: 12rem;
} /* 192px */
.w-52 {
  width: 13rem;
} /* 208px */
.w-56 {
  width: 14rem;
} /* 224px */
.w-60 {
  width: 15rem;
} /* 240px */
.w-64 {
  width: 16rem;
} /* 256px */
.w-72 {
  width: 18rem;
} /* 288px */
.w-80 {
  width: 20rem;
} /* 320px */
.w-96 {
  width: 24rem;
} /* 384px */
.w-auto {
  width: auto;
}
.w-min {
  width: min-content;
}
.w-max {
  width: max-content;
}
.w-[value] {
  width: [value];
} /* Example: w-[400px], w-[10%], w-[calc(100%-1rem)] */

/* height */
.h-0 {
  height: 0%;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
} /* 4px */
.h-2 {
  height: 0.5rem;
} /* 8px */
.h-3 {
  height: 0.75rem;
} /* 12px */
.h-4 {
  height: 1rem;
} /* 16px */
.h-5 {
  height: 1.25rem;
} /* 20px */
.h-6 {
  height: 1.5rem;
} /* 24px */
.h-7 {
  height: 1.75rem;
} /* 28px */
.h-8 {
  height: 2rem;
} /* 32px */
.h-9 {
  height: 2.25rem;
} /* 36px */
.h-10 {
  height: 2.5rem;
} /* 40px */
.h-11 {
  height: 2.75rem;
} /* 44px */
.h-12 {
  height: 3rem;
} /* 48px */
.h-14 {
  height: 3.5rem;
} /* 56px */
.h-16 {
  height: 4rem;
} /* 64px */
.h-20 {
  height: 5rem;
} /* 80px */
.h-24 {
  height: 6rem;
} /* 96px */
.h-28 {
  height: 7rem;
} /* 112px */
.h-32 {
  height: 8rem;
} /* 128px */
.h-36 {
  height: 9rem;
} /* 144px */
.h-40 {
  height: 10rem;
} /* 160px */
.h-44 {
  height: 11rem;
} /* 176px */
.h-48 {
  height: 12rem;
} /* 192px */
.h-52 {
  height: 13rem;
} /* 208px */
.h-56 {
  height: 14rem;
} /* 224px */
.h-60 {
  height: 15rem;
} /* 240px */
.h-64 {
  height: 16rem;
} /* 256px */
.h-72 {
  height: 18rem;
} /* 288px */
.h-80 {
  height: 20rem;
} /* 320px */
.h-96 {
  height: 24rem;
} /* 384px */
.h-auto {
  height: auto;
}
.h-min {
  height: min-content;
}
.h-max {
  height: max-content;
}
.h-[value] {
  height: [value];
} /* Example: h-[400px], h-[75%], h-[calc(100%-2rem)] */

/* Additional Utilities */
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}
.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}
.transition {
  transition: all 0.2s ease-in-out;
}
.transition-colors {
  transition: color 0.2s ease-in-out;
}
.transition-bg {
  transition: background-color 0.2s ease-in-out;
}
.opacity-0 {
  opacity: 0;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-100 {
  opacity: 1;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-auto {
  z-index: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}

.section {
  max-width: 1600px;
  padding: 0 20px;
  margin: auto;
}
a {
  text-decoration: none;
  color: var(--secondary);
}
input,
select,
textarea {
  padding: 10px 20px;
  font-family: var(--font-rajdhani-bold);
  font-size: 14px;
  border: 1px solid var(--primary);
  outline: none;
  width: 100%;
}
option {
  background-color: var(--primary) !important;
  color: var(--background);
}

option:checked,
option:hover {
  background-color: var(--primary) !important;
  color: white; /* Optional: for better contrast */
}
/* .splide__arrows {
  display: none !important;
} */
.btn {
  min-width: 120px;
  padding: 12px;
  align-items: center;
  justify-content: center;
  display: flex;
  gap: 10px;
  color: var(--background);
  background-color: var(--secondary);
  /* border-radius: 30px; */
  font-size: 16px;
  border: none;
  outline: none;
  font-family: var(--font-rajdhani-semibold);
  cursor: pointer;
}

.desc {
  font-family: "Nunito regular";
  font-size: 16px;
  color: rgba(243, 223, 252, 1);
}
.lebal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: "Nunito bold";
  font-size: 10px;
  background-color: rgba(255, 253, 253, 0.72);
  padding: 3px 6px;
  border-radius: 20px;
  height: 20px;
  width: fit-content;
}

.web-margin {
  margin-top: 120px;
}
li {
  list-style: none;
}
.title {
  font-family: var(--font-anton);
  font-size: 20px;
  color: var(--primary);
  font-weight: 500;
}
.headings {
  font-family: var(--font-anton);
  font-size: 34px;
  color: var(--black);
  font-weight: 500;
}
.desription {
  font-family: var(--font-rajdhani-medium);
  font-size: 20px;
  color: #484747;
}
.quote {
  font-family: var(--font-rajdhani-bold) !important;
  font-size: 16px;
}
.quote .title {
  font-family: var(--font-rajdhani-bold) !important;
}
/* NAV BAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--background);
  z-index: 100;
}
nav .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 20px;
  font-family: var(--font-rajdhani-semibold);
  font-size: 20px;
}
.logo img {
  max-width: 150px;
}
nav .section ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--secondary);
}
.nav-mob-action {
  display: none;
}
.nav-mob-menu-items {
  display: none;
}
.dummy-nav {
  height: 80px;
}
/* hero-section */
.hero-section {
  width: 100%;
  height: 80vh;
  position: relative;
  background-image: url("../images/hero-background.png");
  background-size: cover;
}
.hero-left-section {
  max-width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.hero-left-section h3 {
  font-family: var(--font-anton);
  font-size: 48px;
  font-weight: 500;
}
.hero-left-section p {
  font-family: var(--font-rajdhani-bold);
  font-size: 36px;
  color: var(--primary);
}
.hero-left-section a {
  margin-top: 30px;
}
.hero-left-section a .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.hero-left-section a .btn svg {
  color: var(--primary);
  height: 20px;
  width: 20px;
  font-size: 20px;
}

.hero-right-section {
  width: auto;
  max-width: 60%;
  height: 100%;
  right: 0;
  display: flex;
  align-items: flex-start;
  overflow-x: hidden;
  position: absolute;
}
.hero-right-section .mobile-img {
  display: none;
}
.hero-right-section img {
  width: 100%;
  object-fit: fill;
  height: 100%;
  bottom: 0;
}

/* category */
.category {
  width: 100%;
  height: auto;
}
.category .splide__slide {
  width: 100%;
  min-height: 250px;
  border: none;
  position: relative;
}

/* Odd slides - primary background */
.category .splide__slide:nth-child(odd) {
  background-color: var(--primary);
}

/* Even slides - secondary background */
.category .splide__slide:nth-child(even) {
  background-color: var(--secondary);
}

.category .splide__slide .category-overlay {
  height: 100%;
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
/* Odd slides - primary background */
/* Odd slides */
.category .splide__slide:nth-child(odd) .category-overlay {
  background-image: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0));
}

/* Even slides */
.category .splide__slide:nth-child(even) .category-overlay {
  background-image: linear-gradient(to right, #cf2c25, rgba(0, 0, 0, 0));
}
.category-card {
  position: relative;
  z-index: 1;
  padding: 20px;
  height: 100%;
  width: 100%;
}
.category .splide__slide__container {
  height: 100% !important;
}
.category-card-left {
  max-width: 60%;
  color: var(--background);
  align-items: start;
  justify-content: center;
  height: 100%;
}
.category-card-left h3 {
  font-family: var(--font-anton);
  font-size: 34px;
  font-weight: 500;
}
.category-card-left-desc p {
  font-size: 15px;
  font-family: var(--font-rajdhani-medium);
}
.category-card-left-desc span {
  font-family: var(--font-rajdhani-semibold);
  font-size: 15px;
}
.category-card-left a {
  font-family: var(--font-rajdhani-semibold);
  font-size: 16px;
  color: var(--background);
}
.category-card .category-card-img {
  position: absolute;
  right: 10px;
  bottom: 5px;
  max-width: 40%;
  height: auto;
}
.category-card .category-card-img img {
  width: 100%;
  height: auto;
}

/* products */

.category-tabs {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: start;
  width: 100%;
  margin-bottom: 20px;
  overflow-y: auto;
}
.category-tab {
  font-family: var(--font-rajdhani-semibold);
  font-size: 20px;
  padding: 5px 20px;
  cursor: pointer;
  white-space: nowrap;
}
.category-tabs .active {
  background-color: var(--primary);
  color: var(--white);
}
.category-tab:hover {
  cursor: pointer;
  background-color: var(--secondary);
  color: var(--white);
}
.loader-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px auto;
}

.loader-dots span {
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: bounce 0.6s infinite ease-in-out;
}

.loader-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
.no-product {
  font-family: var(--font-anton);
  color: rgba(153, 104, 104, 0.712);
  width: 100%;
  font-size: larger;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.products-grid-single-grid {
  grid-template-columns: 1fr !important;
}
.products .headings {
  text-align: center;
}
.product {
  width: 100%;
  height: auto;
  border: 1px solid var(--primary);
}
.product .product-img {
  width: 100%;
  height: 260px;
  border-bottom: 1px solid var(--primary);
}
.product .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-desc {
  padding: 16px;
}
.product-desc .product-heading {
  font-family: var(--font-anton);
  font-weight: 500;
  font-size: 20px;
  color: var(--black);
}
.product-category {
  min-width: 60px;
  font-family: var(--font-rajdhani-semibold);
  color: var(--background);
  font-size: 14px;
  background-color: var(--primary);
  padding: 0 15px;
}
.product-price {
  font-family: var(--font-rajdhani-bold);
  font-size: 20px;
  color: var(--primary);
}
.product-desc-text {
  font-family: var(--font-rajdhani-medium);
  font-size: 15px;
  color: #484747;
  margin-top: 8px;
}
.product-action {
  margin-top: 16px;
}
/* testimonials-right-section */
.testimonials .section {
  gap: 40px;
  height: auto;
}
.testimonials-right-section {
  width: 100%;
  max-width: 70%;
}
.feedback .splide__slide {
  width: 100%;
}
.feedback .splide__slide .splide__slide__container {
  height: auto !important;
}
.feedback .splide__slide .feedback-card {
  min-height: 350px;
  height: auto;
  background-color: var(--black);
  border: 1px solid var(--primary);
  padding: 20px;
  width: 100%;
}
.feedback-avtar {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 1px solid var(--primary);
}
.feedback-avtar img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.feedback-name {
  font-family: var(--font-anton);
  font-weight: 500;
  font-size: 20px;
  color: var(--background);
}
.feedback-card p {
  font-family: var(--font-rajdhani-medium);
  font-size: 16px;
  color: var(--background);
}

/* contact us */
.contact-us {
  position: relative;
}
.contact-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 40%;
  width: 100%;
  background-image: linear-gradient(to right, #00000057, #00000000);
  height: 100%;
}
.contact-us .section {
  position: absolute;
  z-index: 2;
  width: fit-content;
  padding: 60px;
  padding-left: 0;
  top: 0;
  left: 9%;
  height: 130%;
}
.contact-from {
  background-color: var(--secondary);
  max-width: 600px;
  width: 100%;
  padding: 60px;
  min-height: 100%;
}
.contact-from .headings {
  color: var(--background);
}
.contact-us form {
  gap: 10px;
  margin-top: 25px;
}
.contact-us form .form-row {
  display: flex;
  gap: 10px;
}
.contact-us form textarea {
  resize: none;
}
.contact-us form .btn {
  background-color: var(--primary);
}
/* Base button styles */
#enquiry-btn {
  color: white;
  padding: 10px 16px;
  /* border-radius: 8px; */
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

/* On hover */
#enquiry-btn:hover {
  background-color: var(--primary); /* Slightly lighter blue */
}

/* Disabled state */
#enquiry-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Success state */
#enquiry-btn.success {
  background-color: #16a34a; /* Tailwind's green-600 */
}

/* Loader spinner icon (if used) */
.spinner {
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Optional error shake animation */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}

#enquiry-btn.shake {
  animation: shake 0.3s;
}

/* footer */
footer {
  margin-top: 300px !important;
  padding: 20px !important;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 30px;
}

.footer-desc-text {
  font-family: var(--font-rajdhani-medium);
  font-size: 15px;
  color: #484747;
}

.footer-heading {
  font-family: var(--font-anton);
  font-weight: 500;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 25px;
}
footer svg {
  height: 20px;
  width: 20px;
}
footer p,
footer a {
  font-family: var(--font-rajdhani-semibold);
  font-size: 16px;
}
/* copyright */
.copyright {
  padding: 20px 0;
  font-size: 15px;
  padding: 0;
  font-family: var(--font-rajdhani-medium);
}
.copyright span,
.copyright a {
  font-family: var(--font-anton);
  font-weight: 500;
}
.copyright .company {
  font-size: 14px;
}
.copyright .company a {
  color: var(--primary);
}
@media screen and (max-width: 1200px) {
  .hero-right-section {
    width: 50%;
  }
  .hero-right-section img {
    width: auto;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 900px) {
  .hero-right-section {
    width: 50%;
  }
  .hero-left-section h3 {
    font-size: 36px;
  }
  .hero-left-section p {
    font-size: 24px;
  }
  .about-us {
    flex-direction: column-reverse;
  }
  .about-us-left-section {
    display: flex;
    align-items: start;
    width: 100%;
    max-width: 100%;
  }
  .testimonials .section {
    flex-direction: column;
  }
  .testimonials-right-section {
    max-width: 100%;
  }
}
@media screen and (max-width: 760px) {
  nav .menu-items,
  nav .menu-actions {
    display: none;
  }
  .nav-mob-action {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    width: 30px;
    height: fit-content;
    justify-content: center;
  }

  .nav-mob-action span {
    width: 30px;
    height: 3px;
    border-radius: 20%;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform-origin: center;
  }

  /* Toggle animation */
  .nav-mob-action.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .nav-mob-action.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-mob-action.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .nav-mob-action span {
    width: 30px;
    height: 3px;
    border-radius: 20%;
    background-color: var(--primary);
  }
  .nav-mob-menu-items {
    display: flex;
    position: fixed;
    right: 0;
    width: 100%;
    background-color: var(--primary);
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
  }
  .nav-mob-menu-items.active {
    max-height: 70vh;
    opacity: 1;
    overflow-y: auto;
  }
  nav .nav-mob-menu-items .section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
    justify-content: start;
    width: 100%;
    padding: 20px;
  }
  nav .nav-mob-menu-items .section li a {
    color: var(--background);
  }
  .hero-right-section .desktop-img {
    display: none;
  }
  .hero-right-section {
    width: auto;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .hero-left-section {
    max-width: 100%;
  }
  .hero-right-section .mobile-img {
    display: block;
    height: auto;
  }
  .hero-left-section p {
    font-size: 24px;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-us-left-section img {
    width: 100%;
    height: auto;
  }
  .contact-us .section {
    top: 70%;
    /* left: 0; */
    /* right: 0; */
    /* width: 100%; */
  }
  footer {
    margin-top: 600px !important;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .headings {
    font-size: 30px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .feedback .splide__slide .feedback-card {
    padding: 15px;
  }

  .contact-us .section {
    top: 70%;
    left: 0;
    padding: 0;
  }
  .contact-from {
    padding: 40px 20px;
    min-height: auto;
  }
  footer {
    margin-top: 550px !important;
    grid-template-columns: 1fr;
  }
  .footer-heading {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 400px) {
  .hero-left-section h3 {
    font-size: 30px;
  }
  .hero-left-section {
    margin-top: -60px;
  }
  .category-card-left {
    max-width: 70%;
    color: var(--background);
    align-items: start;
    justify-content: center;
    height: 100%;
    z-index: 1;
  }
}
