@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");
/* ==========================================================================
   Design Tokens (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Typography */
  --primary-font: "Poppins", serif;
  --secondary-font: "Roboto", sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 30px;
  --font-size-3xl: 36px;
  --font-size-4xl: 48px;
  --line-height-base: 1.5;
  --line-height-tight: 1.25;

  /* Colors */
  --color-primary: #d49d67;
  --color-primary-dark: #d49d67;
  --color-primary-light: #f4efea;
  --color-secondary: #d49d67;
  --color-secondary-dark: #d49d67;
  --color-background: #ffffff;
  --color-text: #010101;
  --color-gray: #c0c0c0;
  --color-text-gray: #757575;
  --color-border: #e5e7eb;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.05);

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Transitions */
  --transition-base: all 0.3s ease-in-out;
  --transition-fast: all 0.2s ease-in-out;
  --transition-speed: 0.4s;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 9999px;
}

/* ==========================================================================
   Browser Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Matches typical navbar height */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: var(--primary-font);
  background-color: var(--color-background);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

img,
picture,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: var(--line-height-tight);
}

p {
  font-size: var(--font-size-lg);
  font-weight: 400;
  line-height: var(--line-height-base);
  margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Common Components
   ========================================================================== */
.section {
  position: relative;
  padding: var(--spacing-3xl) 0;
}

.section--no-pt {
  padding-top: 0;
}

.section--no-pb {
  padding-bottom: 0;
}

.heading-section {
  margin-bottom: var(--spacing-xl);
}

.heading-section__title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-family: var(--primary-font);
}

.heading-section__description {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--primary-font);
  color: #0e0e0e80;
  max-width: 48rem;
}

.common__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: var(--line-height-base);
  color: var(--color-primary);
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-full);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.common__btn :hover,
.common__btn :focus {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
  .section {
    padding: var(--spacing-2xl) 0;
  }

  .heading-section__title {
    font-size: var(--font-size-2xl);
  }
}

@media (max-width: 576px) {
  .heading-section__title {
    font-size: var(--font-size-xl);
  }

  .heading-section__description {
    font-size: var(--font-size-sm);
  }
}

/* ==========================================================================
   Navbar Section Start
   ========================================================================== */
.main_navbar {
  background-color: var(--color-background);
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1000;
}

.main_navbar .navbar-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.main_navbar .navbar-brand img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.main_navbar .navbar-brand:hover img {
  transform: scale(1.05);
}

/* Desktop Navigation */
.main_navbar .navbar-nav {
  display: flex;
  align-items: center;
}

.main_navbar .nav-item {
  position: relative;
}

.main_navbar .nav-link {
  color: var(--color-text);
  font-size: 16px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  margin-right: 12px;
  position: relative;
  font-weight: 400;
}

.main_navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.main_navbar .nav-link:hover::after,
.main_navbar .nav-link.active::after {
  width: calc(100% - 30px);
}

.main_navbar .nav-link:hover,
.main_navbar .nav-link.active {
  color: var(--color-primary);
}

/* Brochure Button */
.btn-enquire {
  background-color: var(--color-primary);
  color: var(--color-primary-light);
  border-radius: 6px;
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  /* margin-left: 15px; */
}

.btn-enquire:hover {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Toggle Button */
.custom-toggler {
  border: none;
  background: none;
  font-size: 24px;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: all 0.3s ease;
}

.custom-toggler:hover {
  color: var(--color-primary);
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* Overlay for mobile menu */
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
}

.offcanvas-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Offcanvas Menu */
.mobile-offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background-color: var(--color-background);
  z-index: 1050;
  padding: 25px;
  transition: all var(--transition-speed) cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-offcanvas.active {
  left: 0;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.offcanvas-header img {
  height: 35px;
  width: auto;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.close-btn:hover {
  color: var(--color-primary);
  transform: rotate(90deg);
}

/* Offcanvas Navigation */
.offcanvas-nav {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  flex-grow: 1;
}

.offcanvas-nav li {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease;
}

.mobile-offcanvas.active .offcanvas-nav li {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered animation for nav items */
.mobile-offcanvas.active .offcanvas-nav li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(4) {
  transition-delay: 0.25s;
}
.mobile-offcanvas.active .offcanvas-nav li:nth-child(5) {
  transition-delay: 0.3s;
}

.offcanvas-nav .nav-link {
  display: block;
  font-size: 18px;
  color: var(--color-text);
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
  color: var(--color-primary);
  background-color: rgba(211, 47, 47, 0.1);
  padding-left: 20px;
}

/* Mobile Brochure Button */
.mobile-offcanvas .btn-enquire {
  margin: 20px auto 0;
  width: 100%;
  max-width: 200px;
  text-align: center;
}

/* Sticky Header Styles */
.main_navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(245, 241, 237, 0.98) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
  border-bottom: none !important;
}

/* Mobile menu adjustments when sticky */
.main_navbar.sticky .mobile-offcanvas {
  top: 70px;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* For when sticky is being removed (optional) */
.main_navbar:not(.sticky) {
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
  .custom-toggler,
  .mobile-offcanvas,
  .offcanvas-overlay {
    display: none;
  }
}

@media (max-width: 991px) {
  .main_navbar .navbar-collapse {
    display: none;
  }

  .btn-enquire {
    margin: 25px auto 0;
    display: block;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .mobile-offcanvas {
    width: 85%;
  }
  .main_navbar .navbar-brand img {
    height: 30px;
    width: auto;
    transition: transform 0.3s ease;
  }
}
/* ==========================================================================
   Navbar Section END
   ========================================================================== */

/* ==========================================================================
   Common Hero Section Start
   ========================================================================== */

.hero_common--section {
  position: relative;
  background: url("../images/hero-banner.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}

.hero_common--section .heading-section__title {
  font-size: 76px;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: var(--primary-font);
  color: var(--color-background);
}
.hero_common--section .heading-section__description {
  color: var(--color-background);
}

@media (max-width: 992px) {
  .hero_common--section .heading-section__title {
    font-size: 40px;
  }
  .details_common_section .heading-section__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero_common--section {
    height: 50vh;
    position: relative;
  }

  /* Ensure space below hero section */
  .hero_common--section::after {
    content: "";
    display: block;
    height: 80px;
  }
}

/* ==========================================================================
    Common Hero Section End
   ========================================================================== */

/* ==========================================================================
   Hero Section Start
   ========================================================================== */
.hero-slider {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider .hero-swiper {
  width: 100%;
  height: 90vh;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

/* Hero Content */
.hero-content {
  max-width: 700px;
}

.hero-title {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: clamp(2.3rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(0.8rem, 2vw, 1rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 90%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 15px;
}

/* Button Styles */
.btn-quote {
  background-color: var(--color-primary);
  color: var(--color-primary-light);
  border-radius: 6px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-quote:hover {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-explore {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: var(--color-primary-light);
  border-radius: 6px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-explore:hover {
  background-color: var(--color-background);
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Swiper Controls */
.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  color: var(--color-primary);
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  opacity: 1;
}

.hero-slider .swiper-button-prev {
  left: 25px;
}

.hero-slider .swiper-button-next {
  right: 25px;
}

.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after {
  font-size: 15px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.hero-slider .swiper-button-prev:after {
  content: "\f060";
}

.hero-slider .swiper-button-next:after {
  content: "\f061";
}

.hero-slider .swiper-pagination {
  bottom: 30px;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  left: 0;
  text-align: left;
  z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.3;
  transition: all 0.2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-slider {
    min-height: 80vh;
  }

  .hero-slider .slide-inner {
    height: 80vh;
  }

  .hero-slider .hero-swiper {
    width: 100%;
    height: 80vh;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    min-height: 70vh;
  }

  .hero-slider .slide-inner {
    height: 70vh;
  }

  .hero-slider .hero-swiper {
    width: 100%;
    height: 70vh;
  }

  .hero-content {
    margin: 0 auto;
  }
  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-cta {
    gap: 12px;
  }
  .btn-quote,
  .btn-explore {
    font-size: 12px;
    padding: 10px 15px;
  }

  .hero-slider {
    min-height: 80vh;
  }

  .hero-slider .slide-inner {
    height: 80vh;
  }

  .hero-slider .hero-swiper {
    width: 100%;
    height: 80vh;
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 24px;
  }
  .btn-quote,
  .btn-explore {
    font-size: 10px;
    padding: 7px 15px;
  }
}
/* ==========================================================================
   Hero Section End
   ========================================================================== */

/* ==========================================================================
   Category Section Start
   ========================================================================== */
.category__section .swiper {
  padding-bottom: 35px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.category_image-wrap {
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category_image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);

  inset: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  padding: 3rem;
  text-align: center;
  transition: background 0.3s ease;
  cursor: pointer;
}

.category-overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-overlay a {
  color: #fff;
  border: 1px solid #fff;
  padding: 6px 16px;
  border-radius: 5px;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.3s;
}

.category-overlay a:hover {
  background-color: #fff;
  color: var(--color-primary);
}

/* Swiper Customization */
.category-slider {
  padding: 20px 0;
}

.category__section .swiper-button-next,
.category__section .swiper-button-prev {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category__section .swiper-button-next::after,
.category__section .swiper-button-prev::after {
  font-size: 1.2rem;
}

.swiper-pagination-bullet {
  background: transparent;
  border: 1px solid var(--color-primary);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .category__section .swiper-button-next,
  .category__section .swiper-button-prev {
    display: none;
  }
}

/* ==========================================================================
   Category Section End
   ========================================================================== */

/* ==========================================================================
   About Us Section Start
   ========================================================================== */

/* About Tag Styling */
.about__tag {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Main Heading */
.about__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: "Arial", sans-serif;
}

/* Description Text */
.about__description {
  font-size: 14px;
  line-height: 1.7;
  color: #757575;
  font-weight: 400;
}

.about__description strong {
  color: #000000;
}

/* Statistics Section */
.about__stats {
  margin-top: 30px;
}

.stat__card {
  text-align: center;
  padding: 20px 0;
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
  position: relative;
  border-radius: 5px;
}

.stat__number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat__suffix {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat__label {
  font-size: 14px;
  color: var(--color-text);
  margin-top: 8px;
  font-weight: 500;
}

/* Image Section */
.about__image {
  position: relative;
  text-align: center;
  padding-left: 20px;
  display: flex;
  justify-content: end;
  align-items: center;
  transition: transform 0.3s ease;
}

.about__image:hover {
  transform: translateY(-5px);
  transform: scale(1.05);
  cursor: pointer;
}

.about__image img {
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  max-width: 100%;
  height: auto;
}

/* Director's Note Section Styling */
.director-note {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  color: #333;
  border-left: 4px solid var(--color-primary);
  background-color: #f9f9f9;
}

.director-note__header {
  margin-bottom: 1rem;
}

.director-note__label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.director-note__quote {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  padding: 0;
  font-style: italic;
  color: #444;
}

.director-note__signature {
  font-weight: 500;
  text-align: right;
  font-size: 1rem;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .director-note__quote {
    font-size: 0.8rem;
  }

  .director-note__signature {
    font-size: 0.8rem;
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .about__section {
    padding: 60px 0;
  }

  .about__heading {
    font-size: 2.2rem;
  }

  .about__image {
    margin-top: 40px;
    padding-left: 0;
  }

  .stat__card {
    padding: 20px 15px;
  }

  .stat__card:last-child {
    border-right: none;
  }
  .about__image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .about__heading {
    font-size: 1.8rem;
  }

  .about-btn-wrapper {
    max-width: 180px;
    margin: 0 auto;
  }

  .stat__number,
  .stat__suffix {
    font-size: 2rem;
  }

  .stat__card {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
  }

  .about__tag {
    display: block;
    text-align: center;
    width: fit-content;
  }
}

@media (max-width: 575.98px) {
  .about__section {
    padding: 40px 0;
  }

  .about__heading {
    font-size: 1.6rem;
  }

  .about__description {
    font-size: 15px;
  }

  .stat__number,
  .stat__suffix {
    font-size: 1.8rem;
  }
}

/* Animation Classes */
.animate-counter {
  transition: all 0.3s ease;
}

.stat__card.animate {
  transform: translateY(0);
  opacity: 1;
}

.stat__card {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease;
}
/* ==========================================================================
   About Us Section End
   ========================================================================== */

/* ==========================================================================
   Best Selling Product Section Start
   ========================================================================== */
/* Section Header */
.products__header {
  margin-bottom: 50px;
}

.products__title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

.products__view-all {
  text-align: right;
}

.view-all__link {
  display: inline-block;
  padding: 7px 24px;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: transparent;
}

.view-all__link:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: #d0d0d0;
}

/* Products Grid */
.products__grid {
  margin-top: 40px;
}

/* Product Card */
.product__card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  /* background: #ffffff;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0; */
}

.product__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product__image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.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 Content */
.product__content {
  padding: 25px 20px;
  text-align: center;
}

.product__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product__category {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  font-weight: 400;
}

/* Request Quote Button */
.product__quote-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #dfc492;
  border-radius: 5px;
  color: #666666;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.product__quote-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .products__section {
    padding: 60px 0;
  }

  .products__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .products__view-all {
    text-align: center;
  }

  .products__header {
    margin-bottom: 40px;
  }
  /* Product Card */
  .product__card {
    background: #ffffff;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
  }
}

@media (max-width: 767.98px) {
  .products__title {
    font-size: 1.8rem;
  }

  .product__image {
    height: 220px;
  }

  .product__content {
    padding: 20px 15px;
  }
}

@media (max-width: 575.98px) {
  .products__section {
    padding: 40px 0;
  }

  .products__title {
    font-size: 1.6rem;
  }

  .product__image {
    height: 100%;
  }

  .view-all__link {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Animation Classes */
.product__card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.product__card.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Loading State */
.products__grid.loading {
  opacity: 0.7;
}

.products__grid.loaded {
  opacity: 1;
}
/* ==========================================================================
   Best Selling Product Section End
   ========================================================================== */

/* ==========================================================================
   Quality Section Start
   ========================================================================== */
.quality__section__banner {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.quality-swiper,
.quality-slide {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.quality-slide {
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  position: relative;
}

.quality-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

/* Overlay Content */
.quality-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 85%;
  padding: 50px 0;
}

.quality-content {
  max-width: 600px;
  position: relative;
}

.quality-content h2 {
  font-size: 40px;
  color: #fff;
}

.quality-content p {
  font-size: 16px;
  color: #fff;
}

.btn-enquire {
  background-color: #d19c64;
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 14px;
  border: none;
}

.btn-enquire:hover {
  background-color: #b98245;
}

@media (max-width: 768px) {
  .quality-content {
    max-width: 100%;
    text-align: center;
  }
  .quality-section .btn-enquire {
    margin-left: auto;
  }
  .quality-section {
    padding: 40px 5px;
  }

  .quality-section .btn-enquire {
    width: auto;
  }

  .quality-overlay {
    width: 100%;
    height: 100%;
  }

  .narrow-cta {
    width: 50%;
    margin: 0 auto;
  }
  .quality-content h2 {
    font-size: 30px;
    color: var(--color-background);
  }
  .quality-content p {
    color: var(--color-background);
    font-size: 14px;
  }
}
/* ==========================================================================
   Quality Section End
   ========================================================================== */

/* ==========================================================================
   Why choose us Section Start
   ========================================================================== */
.why-choose-section {
  overflow: hidden;
}

.why-choose-heading-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-choose-main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 25px;
}

.why-choose-subtext {
  max-width: 500px;
  font-size: 14px;
  line-height: 1.7;
  color: #757575;
  margin-bottom: 20px;
  font-weight: 400;
}

.why-choose-enquire-btn {
  background-color: #c68a53;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}

.why-choose-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.why-choose-feature-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.why-choose-feature-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.why-choose-feature-desc {
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .why-choose-feature-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .why-choose-main-heading {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Why choose us Section End
   ========================================================================== */

/* ==========================================================================
   Contact us Section Start
   ========================================================================== */
.contact-section {
  position: relative;
  z-index: 999;
}

.custom-select-wrapper {
  position: relative;
  display: block;
}

.custom-select-wrapper::after {
  content: "\F282";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--color-text);
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 14px;
  z-index: 2;
}

.custom-select-wrapper:focus-within::after {
  transform: translateY(-50%) rotate(180deg);
  color: var(--color-text);
}

.custom-select-wrapper:hover::after {
  color: var(--color-text);
}

.contact-section .form-control option {
  padding: 10px;
  background: #ffffff;
  color: #2c2c2c;
  border: none;
}

.contact-section .form-control option:hover {
  background: rgba(196, 150, 96, 0.1);
}

.contact-section .form-control option:disabled {
  color: #999;
  background: #f8f9fa;
}

.contact-section .form-control:disabled {
  background-color: #f8f9fa;
  opacity: 0.6;
  cursor: not-allowed;
}

.custom-select-wrapper.disabled::after {
  color: #999;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/contact-bg.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.home_contact-card--margin {
  margin-top: 60px;
  margin-bottom: -150px;
}

.get-in-touch-badge {
  display: inline-block;
  background: rgba(212, 165, 116, 0.2);
  color: #c49660;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(212, 165, 116, 0.3);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  background: #ffffff;
  transition: all 0.3s ease;
  height: auto;
}

#enquiryModal input::placeholder {
  font-size: 13px;
}

.modal-body {
  padding: 0;
  overflow: hidden;
  border-radius: 15px;
  overflow-y: auto;
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
  width: 6px;
}

.modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

.modal-body .contact-card {
  border-radius: 0px;
  padding: 30px;
}

.modal-header {
  background: var(--color-primary) !important;
  color: var(--color-background);
  border: none;
}

.modal-header .btn-close {
  filter: invert(1);
  color: var(--color-background);
}

.contact-section .form-control:focus {
  border-color: #c49660;
  box-shadow: 0 0 0 0.2rem rgba(196, 150, 96, 0.1);
}

.contact-section .form-control.error {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.contact-section .form-control.success {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #d4a574, #c49660);
  border: none;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #c49660, #b8864d);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 150, 96, 0.2);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.success-message {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
  display: none;
  animation: slideIn 0.5s ease;
}

.success-message.show {
  display: block;
}

.character-count {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 5px;
}

.character-count.error {
  color: #dc3545;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Multi-Select Dropdown - Matching Original Design */
.product-select-container {
  position: relative;
  width: 100%;
}

.product-select-header {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  min-height: 47px;
}

.product-select-header:hover {
  border-color: #c49660;
}

.product-select-header:focus {
  border-color: #c49660;
  box-shadow: 0 0 0 0.2rem rgba(196, 150, 96, 0.1);
  outline: none;
}

.product-select-header.error {
  border-color: #dc3545;
  background-color: rgba(220, 53, 69, 0.05);
}

.product-select-header.success {
  border-color: #28a745;
  background-color: rgba(40, 167, 69, 0.05);
}

.select-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
  overflow: hidden;
}

.placeholder-text {
  color: #6c757d;
  font-size: 13px;
}

.selected-items-display {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 100%;
  overflow: hidden;
}

.selected-item-tag {
  background: #c49660;
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
}

.selected-count-text {
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  color: #2c2c2c;
  font-size: 14px;
  flex-shrink: 0;
}

.dropdown-arrow.rotated {
  transform: rotate(180deg);
}

.product-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow: hidden;
  animation: slideDown 0.3s ease;
}

.product-search {
  padding: 10px;
  border-bottom: 1px solid #e8e8e8;
}

.product-search input {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  width: 100%;
}

.product-search input:focus {
  border-color: #c49660;
  box-shadow: 0 0 0 0.2rem rgba(196, 150, 96, 0.1);
  outline: none;
}

.product-options {
  max-height: 180px;
  overflow-y: auto;
}

/* Custom scrollbar for product options */
.product-options::-webkit-scrollbar {
  width: 6px;
}

.product-options::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.product-options::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

.product-option {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.product-option:hover {
  background-color: rgba(196, 150, 96, 0.1);
}

.product-option input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.product-option label {
  margin: 0;
  cursor: pointer;
  flex: 1;
  font-size: 14px;
}

.dropdown-actions {
  padding: 10px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  gap: 10px;
  background: #f8f9fa;
}

.btn-select-all,
.btn-clear-all {
  flex: 1;
  padding: 6px 12px;
  border: 1px solid #c49660;
  background: transparent;
  color: #c49660;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-select-all:hover,
.btn-clear-all:hover {
  background: #c49660;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .modal-body .contact-section {
    padding: 0;
  }

  .custom-select-wrapper::after {
    right: 12px;
    font-size: 14px;
  }

  .contact-card {
    padding: 40px 30px;
    margin: 30px auto;
  }

  .modal-body .contact-card {
    margin: 0;
  }

  .contact-title {
    font-size: 2rem;
  }

  .selected-item-tag {
    max-width: 60px;
    font-size: 10px;
  }

  .select-content {
    gap: 4px;
  }
}

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

  .modal-body .contact-section {
    padding: 0;
  }

  .contact-card {
    padding: 30px 20px;
    margin: 20px auto;
  }

  .modal-body .contact-card {
    margin: 0;
  }

  .contact-title {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .get-in-touch-badge {
    font-size: 13px;
  }

  .selected-item-tag {
    max-width: 50px;
    font-size: 9px;
    padding: 1px 6px;
  }
}

/* Accessibility Improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-control:focus,
.product-select-header:focus {
  outline: 2px solid #c49660;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ==========================================================================
      Contact us Section End
   ========================================================================== */

/* ==========================================================================
   Footer Section Start
   ========================================================================== */
.selverra-footer {
  background: #000000;
  color: #ddd;
  padding: 60px 20px 20px;
}

.selverra__home-footer-pad {
  padding-top: 200px;
}
.selverra-footer h5 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: var(--primary-font);
  font-size: 18px;
}
.selverra-footer a {
  color: #ffffff80;
  text-decoration: none;
  font-size: 14px;
}
.selverra-footer p {
  color: #ffffff80;
  font-size: 14px;
}
.selverra-footer a:hover {
  color: #fff;
}
.selverra-footer .selverra-logo {
  max-width: 200px;
}
.selverra-footer .selverra-social-icons a {
  font-size: 20px;
  color: var(--color-background);
  display: inline-block;
  transition: color 0.3s;
  border-radius: 10px;
  margin-right: 16px;
}
.selverra-footer .selverra-social-icons a:hover {
  color: #fff;
}
.selverra-footer .selverra-bottom-bar {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

.selverra-footer .selverra-bottom-bar p {
  color: #fff;
}
.selverra-footer .selverra-bottom-bar p a {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .selverra__home-footer-pad {
    padding-top: 60px;
  }
}
/* ==========================================================================
   Footer Section End
   ========================================================================== */

/* ==========================================================================
   About Us Page Mission Vision Section Start
   ========================================================================== */
/* Reusable Tag Style */
.section__tag {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Headings */
.vision__heading {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 20px;
}

/* Description */
.vision__description {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  font-weight: 400;
  margin-bottom: 30px;
}

/* Mission List Styling */
.mission__content ul {
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mission__content ul li {
  position: relative;
  padding-left: 35px;
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  list-style: none;
  transition: all 0.3s ease;
}

.mission__content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"></path><polyline points="22 4 12 14.01 9 11.01"></polyline></svg>');
  mask-repeat: no-repeat;
  mask-position: center;
}

.mission__content ul li:hover {
  color: #222;
  transform: translateX(5px);
}

/* Image Styling */
.section__image {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section__image img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
  transition: transform 0.3s ease;
}

.section__image:hover img {
  transform: scale(1.05);
  cursor: pointer;
}

/* Responsive Typography */
@media (min-width: 768px) {
  .vision__heading {
    font-size: 2.2rem;
  }

  .vision__description {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .vision__heading {
    font-size: 2rem;
  }

  .vision__description {
    font-size: 17px;
  }

  .section__image img {
    max-height: 450px;
  }
}

/* ==========================================================================
   About Us Page Mission Vision Section End
   ========================================================================== */

/* ==========================================================================
   Contact Us Page Contact Section Start
   ========================================================================== */

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 450;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.selverra-contact-info-section {
  padding: 0 40px;
}

.selverra-contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.selverra-contact-info-icon {
  background-color: #f8f9fa;
  color: var(--color-text);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.selverra-contact-info-content h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
}

.selverra-contact-info-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
}

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

@media (max-width: 576px) {
  .selverra-contact-info-item {
    margin-top: 25px;
  }
}

/* ==========================================================================
   Contact Us Page Contact Section End
   ========================================================================== */

/* ==========================================================================
   Products Us Our Products  Section Start
   ========================================================================== */

.product-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  /* background: #ffffff;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0; */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
  background: #f8f9fa;
}

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

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

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-subtitle {
  font-size: 0.7rem;
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-description {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.button-group {
  display: flex;
  gap: 10px;
}

.product--btn-enquire {
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.product--btn-enquire:hover {
  background-color: #c19660;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
}

.product--btn-more {
  background-color: var(--color-text);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.product--btn-more:hover {
  background-color: var(--color-background);
  border: 1px solid var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
}

@media (max-width: 1024px) {
  .product--btn-more {
    font-size: 10px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-content {
    padding: 1rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .btn-enquire,
  .btn-more {
    width: 100%;
    margin-bottom: 5px;
  }

  .product-image-container {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .product-image-container {
    height: 100%;
  }

  .color-indicators {
    top: 10px;
    right: 10px;
  }
}

/* ==========================================================================
   Products Us Our Products  Section End
   ========================================================================== */

/* ==========================================================================
   Product Details Page  Section Start
   ========================================================================== */
/* Product Details Section */
.product-details-section {
  padding: 2rem 0;
}

.product-section {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
  transition: var(--transition-base);
}

/* Image Gallery Layout */
.image-gallery-container {
  display: flex;
  gap: 1.5rem;
}

/* Main Product Image */
.main-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  background: white;
}

.product-image-main {
  width: 100%;
  height: 500px;
  object-fit: contain;
  padding: 0.4rem;
}

/* Vertical Thumbnail Navigation */
.thumbnail-navigation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100px;
  max-height: 500px;
  overflow-y: auto;
  padding: 0.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border: 1px solid var(--border-color);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.thumbnail-navigation::-webkit-scrollbar {
  width: 0px; /* Chrome, Safari, Opera */
  height: 0px;
}

/* Thumbnail Item */
.thumbnail-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition-base);
  position: relative;
  background: white;
  box-shadow: var(--shadow-light);
}

.thumbnail-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 90, 160, 0.1);
  opacity: 0;
  transition: var(--transition-base);
  z-index: 1;
}

.thumbnail-item:hover::before {
  opacity: 1;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.thumbnail-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.thumbnail-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(44, 90, 160, 0.2);
}

.thumbnail-item.active::before {
  opacity: 0.2;
}

/* Product Information */
.product-info-section {
  padding: 2rem;
}

.product-det--name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-det--shortdesc {
  font-size: 1.4rem;
  color: #535353;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.product-det--desc {
  font-size: 0.9rem;
  color: #535353;
  margin-bottom: 2rem;
  line-height: 1.7;
  text-align: justify;
}

/* Color Options */
.product-color-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.product-color-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-base);
  border: 2px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
}

.product-color-dot::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: var(--transition-base);
}

.product-color-dot:hover {
  transform: scale(1.2);
  box-shadow: var(--shadow-lg);
}

.product-color-dot.product-color-active {
  transform: scale(1.4);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-background);
}

.product-color-dot:hover::after {
  border-color: var(--color-primary);
}

/* Color variations */
.product-color-red {
  background-color: #e74c3c;
}
.product-color-green {
  background-color: #27ae60;
}
.product-color-yellow {
  background-color: #f1c40f;
}
.product-color-blue {
  background-color: #3498db;
}
.product-color-brown {
  background-color: #8b4513;
}
.product-color-natural {
  background-color: #deb887;
}

.product-color-others {
  background-image: url("../images/no-color.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
}

.selected-color-text {
  margin-top: 25px;
}

/* Specifications Table */
.product-specification {
  background: white;
  border-radius: var(--border-radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

.product-specification h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Auto-slide indicator */
.slide-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .image-gallery-container {
    flex-direction: column;
  }

  .thumbnail-navigation {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem;
  }

  .product-image-main {
    height: 400px;
  }

  .product-det--name {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 1.5rem;
  }

  .product-image-main {
    height: 350px;
  }

  .product-det--name {
    font-size: 1.75rem;
  }

  .thumbnail-item {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}

@media (max-width: 576px) {
  .product-section {
    padding: 1rem;
  }

  .product-image-main {
    height: 350px;
  }

  .product-det--name {
    font-size: 1.5rem;
  }

  .thumbnail-item {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
}

/* Mobile-specific styles */
.mobile-gallery {
  display: flex;
  flex-direction: column;
}

.image-dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 0;
}

.image-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.image-dot.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.2);
}

.image-dot:hover {
  background-color: var(--color-primary);
  opacity: 0.7;
}

.mobile-nav-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.nav-arrow {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 16px;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

.nav-arrow:active {
  transform: scale(0.95);
}

/* Zoom Modal Styles */
.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.zoom-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.zoom-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.zoom-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.zoom-modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10000;
  padding: 0 20px;
}

.zoom-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 18px;
}

.zoom-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.zoom-image-container {
  max-width: 100%;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.zoom-modal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.zoom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.zoom-dot.active {
  background-color: white;
  transform: scale(1.3);
}

.zoom-modal-counter {
  color: white;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.8;
}

/* Hide thumbnails on mobile */
@media (max-width: 768px) {
  .thumbnail-navigation {
    display: none !important;
  }

  .main-image-container {
    position: relative;
    width: 100%;
  }

  .product-image-main {
    cursor: pointer;
  }

  /* Disable desktop zoom on mobile */
  .product-image-main:hover {
    transform: none !important;
  }
}

/* Desktop specific styles */
@media (min-width: 769px) {
  .image-dots-container,
  .mobile-nav-arrows {
    display: none !important;
  }
}

/* Loading animation */
.product-image-main.loading {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* Smooth transitions */
.product-image-main,
.image-dot,
.nav-arrow,
.zoom-nav-btn {
  transition: all 0.3s ease;
}

/* Touch feedback */
.image-dot:active,
.nav-arrow:active,
.zoom-nav-btn:active {
  transform: scale(0.9);
}

/* Accessibility improvements */
.nav-arrow:focus,
.zoom-nav-btn:focus,
.zoom-modal-close:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Prevent text selection on interactive elements */
.image-dot,
.nav-arrow,
.zoom-nav-btn,
.zoom-modal-close {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ==========================================================================
   Product Details Page  Section End
   ========================================================================== */

/* ==========================================================================
 Whatsapp Flotoing Button  Section Start
   ========================================================================== */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.floating__btn {
  color: white !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* WhatsApp Button */
.whatsapp-button {
  background-color: #25d366;

  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Call Button */
.call-button {
  font-size: 23px;
  background-color: #287cd6;
  animation: pulseAnimation 2s infinite ease-in-out;
}

/* Background Circle for WhatsApp */
.whatsapp-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Background Circle for Call */
.call-button::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 123, 255, 0.3);
  border-radius: 50%;
  z-index: -1;
  animation: backgroundPulse 2s infinite ease-in-out;
}

/* Hover Effects */
.whatsapp-button:hover,
.call-button:hover {
  transform: scale(1.1);
}

/* WhatsApp Pulse Animation */
@keyframes pulseAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Background Pulse Animation */
@keyframes backgroundPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 568px) {
  .floating__btn {
    width: 50px;
    height: 50px;
  }
}

/* Scroll to top btn */

.scroll-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(20px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #d32f2f);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4), 0 0 10px rgba(255, 59, 59, 0.2);
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background: linear-gradient(135deg, var(--color-primary), #b71c1c);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.5), 0 0 15px rgba(255, 59, 59, 0.3);
}

.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 3.5;
}

.progress-circle-fill {
  fill: none;
  stroke: white;
  stroke-width: 3.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.2s ease;
}

.scroll-icon {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
}

@media (max-width: 568px) {
  .scroll-to-top {
    display: none;
  }
}
/* ==========================================================================
 Whatsapp Flotoing Button  Section END
   ========================================================================== */

/* ==========================================================================
Fabrics  Section Start
   ========================================================================== */

.marquee {
  overflow-x: clip;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2vw;
  padding: 60px 0;
  padding-bottom: 0;
  will-change: transform;
}

.marquee-inner img {
  max-height: 280px;
  height: 100%;
  transition: transform 0.5s;
  flex-shrink: 0;
  width: 20vw;
  border-radius: 2rem;
}

.marquee-inner img:hover {
  transform: scale(1.03);
}

/* Mobile styles */
@media (max-width: 768px) {
  .marquee-inner img {
    max-height: 260px;
    height: 100%;
  }

  .marquee-inner {
    gap: 4vw;
    padding: 6vh 0;
  }

  .marquee-inner img {
    width: 45vw;
  }
}

@media (max-width: 576px) {
  .marquee-inner img {
    max-height: 150px;
    height: 100%;
  }
}
/* ==========================================================================
Fabrics  Section End
   ========================================================================== */
