:root {
  --primary-color: #007bff; /* Vibrant blue */
  --primary-hover: #0056b3; /* Darker blue for hover states */
  --secondary-color: #17a2b8; /* Teal/blue accent */
  --secondary-hover: #117a8b; /* Darker teal/blue for hover states */
  --neutral-color: #6c757d; /* Gray for text and secondary elements */
  --background-light: #f8f9fa; /* Light background */
  --background-white: #ffffff; /* White background */
  --text-dark: #212529; /* Dark text */
  --shadow-color: rgba(0, 0, 0, 0.15); /* Shadow color */
  --carousel-overlay: rgba(0, 0, 0, 0.4); /* Carousel control overlay */
}



/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 font-family: 'Poppins', sans-serif;

  background-color: var(--background-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* General Media Queries */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 0.9rem;
  }
}


/* --- Preloader Animation Styles --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #ffffff; /* A solid white background */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.75s ease, visibility 0.75s ease;
  opacity: 1;
  visibility: visible;
}

/* Class to be added by JavaScript to hide the preloader */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
  position: relative;
  width: 150px; /* Adjust size as needed */
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Your logo in the center */
.loader-logo {
  width: 80px; /* Adjust logo size */
  height: auto;
  animation: pulse 1.5s ease-in-out infinite;
  z-index: 2;
}

/* The spinning border animation */
.loader-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(40, 167, 69, 0.2); /* A faint version of your primary green */
  border-top-color: var(--primary-color); /* Your main primary green */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

/* Keyframe Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

canvas {
    cursor: crosshair;
    display: block;
    position: fixed; /* Fix the canvas to the viewport */
    top: 0;
    left: 0;
    z-index: -1; /* Place the canvas behind your content */
}

/* Header Styles */
/* Header Styles */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px var(--shadow-color);
  background-color: var(--background-white);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar {
  background-color: var(--background-white);
  padding: 12px 0;
}

.nav-list .nav-item .nav-link {
  color: var(--text-dark);
  font-weight: 600;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

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

.download-btn {
  font-size: 0.9rem;
  padding: 8px 16px;
  border-color: var(--secondary-color);
  color: var(--background-light);
}

.download-btn:hover {
  background-color: var(--background-light);
  color: var(--background-white) !important;
}

.center-toggler {
  margin-left: auto;
  margin-right: auto;
}

.site-title {
  font-size: 2.5rem;
  font-weight: 600;
  padding-left: 10px;
  color: var(--primary-color);
}

/* Close Button Styling */
.navbar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar-close:hover {
  color: var(--primary-color);
}

/* Slide-in animation for navbar collapse */
.navbar-collapse {
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 1024px) {
 .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: var(--background-white);
    transform: translateX(100%);
    z-index: 1000;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  }
  .navbar-collapse.show {
    transform: translateX(0);
  }
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
   .nav-list {
    flex-direction: column;
    align-items: center;
    margin-top: 40px; /* Space for close button */
  }
  
  .share-btn-nav{
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 992px) {
.nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    padding: 8px 0;
  }

  .site-title {
    font-size: 2rem;
    padding-left: 10px;
  }

  .site-logo {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1300px) {
  .site-logo {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1280px) {
  .site-title {
    font-size: 1.5rem;
        padding-left: 10px;
  }

  .site-logo {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0 10px;
  }

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

  .site-logo {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.2rem;
    padding-left: 5px;
  }
}
@media (max-width: 400px){
 .site-title {
    font-size: 1rem;
    padding-left: 5px;
  }
}
@media (max-width: 350px){
 .navbar-collapse{
  width: 280px;
 }  
 .navbar-close {

  top: 20px;
  right: 40px;
}
}
main section {
  display: none;
  padding: 40px 15px;
  min-height: 100vh;
  
}

main section.active {
  display: block; 
}


section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

section p {
  font-size: 1rem;
  color: var(--neutral-color);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Main Section Media Queries */
@media (max-width: 768px) {
  main section {
    padding: 30px 10px;
  }

  section h2 {
    font-size: 1.8rem;
  }

  section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  section h2 {
    font-size: 1.5rem;
  }

  section p {
    font-size: 0.9rem;
  }
}


/* --- Global Elements & Utility Classes --- */

/* Glassmorphism containers and cards */
.homeContainer,
.cracker-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 30px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.homeContainer:hover,
.cracker-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--hover-shadow);
}

/* Section titles with gradient underline */
.section-title,
.gallery-title,
.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
}

.section-title::after,
.gallery-title::after,
.feature-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Gradient Buttons */
.btn {
  padding: 12px 15px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--background-white);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: var(--background-light);
}



/* --- Carousel Styles --- */
#homeCarousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 4rem;
}

.carousel-item img {
  filter: brightness(0.9);
  transition: transform 1s ease-in-out, filter 1s ease-in-out;
}

.carousel-item.active img {
  filter: brightness(1);
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--glass-bg);
  backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

/* --- Alternating Image-Text Sections --- */
.feature-row {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.feature-text-container {
  padding: 20px;
  
}

.feature-title {
  text-align: left;
}
.feature-title::after {
  margin: 15px 0 0 0;
}

.feature-text {
  font-size: 1.1rem;
  color: var(--neutral-color);
  margin-top: 1rem;
  text-align: left;
}

.feature-img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.feature-img-link {
  display: block;
}

.feature-img-link:hover .feature-img {
  transform: rotate(2deg) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
@media (max-width: 567px){
.feature-text{
  text-align: center;
}
}
/* --- Cracker Gallery Section Styles --- */
.cracker-gallery {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: var(--background-white);
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 3rem;
}

.gallery-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Individual Cracker Card Styles */
.cracker-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    background-color: #fff;
    height: 100%;
}

.cracker-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Link and Image Styling */
.cracker-link {
    display: block;
    width: 100%;
    height: 100%;
}

.cracker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.cracker-card:hover .cracker-img {
    transform: scale(1.1);
}


/* Optional: Add a "View Product" text overlay on hover */
/* .cracker-card::after {
    content: "View Product";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 20px;
}

.cracker-card:hover::after {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2rem;
    }
    
    .cracker-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
} */


 .ourCrackersStore {
            color: #d9534f;
            font-family: 'Arial', sans-serif;
        }
        .crackers-grid-desktop {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        .crackers-container a {
            display: block;
            width: 100%;
            padding-bottom: 100%;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
        }
        .crackers-container a img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: .25rem;
        }
        .crackers-container a:hover {
            transform: scale(1.05);
            border-color: #d9534f;
        }

        /* --- Mobile View Styling --- */
        @media (max-width: 768px) {
            .crackers-grid-desktop {
                grid-template-columns: repeat(2, 1fr); /* Two images per row for devices up to 768px */
            }
        }
        
        @media (max-width: 576px) {
            .crackers-grid-desktop {
                grid-template-columns: 1fr 1fr; /* One image per row for very small mobile devices */
            }
        }


/* --- Explore Crackers (Card Section) --- */
.crackers-section {
  padding: 4rem 0;
}

.crackers-section .cracker-card {
  padding: 20px;
  text-align: center;
}

.crackers-section .cracker-img {
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.crackers-section .cracker-img-link:hover .cracker-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.cracker-title {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.4rem;
}

.cracker-text {
  color: var(--neutral-color);
  font-size: 0.95rem;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .feature-row {
    text-align: center;
  }
  .feature-title::after {
    margin: 15px auto 0;
  }
}

@media (max-width: 768px) {
  .section-title,
  .gallery-title,
  .feature-title {
    font-size: 2rem;
  }
  .homeContainer,
  .cracker-card {
    padding: 20px;
  }
  
  .feature-row.flex-md-row-reverse {
    flex-direction: column;
  }
  .feature-text-container {
    margin-bottom: 2rem;
  }
  .cracker-gallery .cracker-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .section-title,
  .gallery-title,
  .feature-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}
.enquie-button{
  width: 100%;
  display: flex;
  justify-content: flex-start;
}


   .cracker-title {
            font-size: 5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.05em;
           text-align: center;
          
        
            pointer-events: none;
            white-space: nowrap;
            font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
            background: linear-gradient(
                to bottom,
                var(--primary-color) 30%,
                rgba(255, 255, 255, 0) 76%
            );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px var(--shadow-color);
        }

        .cracker-slider {
            width: 100%;
            max-width: 1200px;
            height: clamp(300px, 50vw, 450px);
            position: relative;
            perspective: 1000px;
            margin-top: 100px;
            padding: 0 20px;
        }

        .slider-track {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cracker-item {
            position: absolute;
            width: clamp(180px, 25vw, 280px);
            height: clamp(250px, 35vw, 380px);
            background: var(--background-white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px var(--shadow-color);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            border: 2px solid var(--secondary-color);
        }

        .cracker-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .cracker-item.center {
            z-index: 10;
            transform: scale(1.15) translateZ(0);
            border-color: var(--primary-color);
        }

        .cracker-item.center img {
            filter: brightness(1.1);
        }

        .cracker-item.left-2 {
            z-index: 1;
            transform: translateX(calc(-150px - 20vw)) scale(0.8) translateZ(-300px);
            opacity: 0.6;
        }

        .cracker-item.left-2 img {
            filter: brightness(0.7);
        }

        .cracker-item.left-1 {
            z-index: 5;
            transform: translateX(calc(-75px - 10vw)) scale(0.9) translateZ(-100px);
            opacity: 0.8;
        }

        .cracker-item.left-1 img {
            filter: brightness(0.8);
        }

        .cracker-item.right-1 {
            z-index: 5;
            transform: translateX(calc(75px + 10vw)) scale(0.9) translateZ(-100px);
            opacity: 0.8;
        }

        .cracker-item.right-1 img {
            filter: brightness(0.8);
        }

        .cracker-item.right-2 {
            z-index: 1;
            transform: translateX(calc(150px + 20vw)) scale(0.8) translateZ(-300px);
            opacity: 0.6;
        }

        .cracker-item.right-2 img {
            filter: brightness(0.7);
        }

        .cracker-item.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .dot-item {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--neutral-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot-item.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--carousel-overlay);
            color: var(--background-white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
            font-size: 1.5rem;
            border: none;
            outline: none;
            padding-bottom: 4px;
        }

        .slider-nav:hover {
            background: var(--primary-hover);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 10px;
            padding-right: 3px;
        }

        .slider-nav.next {
            right: 10px;
            padding-left: 3px;
        }
@media (max-width: 1300px){
.cracker-title {
                font-size: 4rem;
                
            }
}
@media (max-width: 1024px){
.cracker-title {
                font-size: 3rem;
                
            }
}
        @media (max-width: 768px) {
            .cracker-title {
                font-size: 1.5rem;
                
            }

            .cracker-slider {
                height: clamp(250px, 45vw, 350px);
                margin-top: 80px;
            }

            .cracker-item {
                width: clamp(150px, 20vw, 200px);
                height: clamp(200px, 30vw, 280px);
            }

            .cracker-item.left-2 {
                transform: translateX(calc(-100px - 15vw)) scale(0.8) translateZ(-200px);
            }

            .cracker-item.left-1 {
                transform: translateX(calc(-50px - 7vw)) scale(0.9) translateZ(-100px);
            }

            .cracker-item.right-1 {
                transform: translateX(calc(50px + 7vw)) scale(0.9) translateZ(-100px);
            }

            .cracker-item.right-2 {
                transform: translateX(calc(100px + 15vw)) scale(0.8) translateZ(-200px);
            }

            .slider-nav {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .cracker-title {
               /*  font-size: clamp(2rem, 7vw, 2.5rem); */
               font-size: 1.5rem;
            }

            .cracker-slider {
                height: clamp(200px, 40vw, 300px);
                margin-top: 60px;
            }

            .cracker-item {
                width: clamp(120px, 18vw, 160px);
                height: clamp(160px, 25vw, 220px);
            }

            .cracker-item.left-2,
            .cracker-item.right-2 {
                opacity: 0;
                pointer-events: none;
            }

            .cracker-item.left-1 {
                transform: translateX(calc(-40px - 5vw)) scale(0.85) translateZ(-50px);
            }

            .cracker-item.right-1 {
                transform: translateX(calc(40px + 5vw)) scale(0.85) translateZ(-50px);
            }
        }




/* Filter Container Styles */
.mb-4 {
  margin-bottom: 1.5rem;
}

.filter-container {
  background: var(--background-white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px var(--shadow-color);
}

/* Search Input Styles */
#showCaseSearchInput {
  border: 1px solid var(--neutral-color);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#showCaseSearchInput:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.3); /* Using primary-color with transparency */
}

#showCaseSearchInput::placeholder {
  color: var(--neutral-color);
  opacity: 0.7;
}

/* Category Tabs Styles */
#categoryTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#categoryTabs .nav-item {
  margin: 0;
}

#categoryTabs .nav-link {
  color: var(--neutral-color);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#categoryTabs .nav-link:hover {
  background-color: var(--primary-hover);
  color: var(--background-white);
}

#categoryTabs .nav-link.active {
  background-color: var(--primary-color);
  color: var(--background-white);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px){
 #categoryTabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .filter-container {
    padding: 0.75rem;
  }

  #showCaseSearchInput {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  #categoryTabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #categoryTabs .nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .filter-container {
    padding: 0.5rem;
  }

  #showCaseSearchInput {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  #categoryTabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  
  }

  #categoryTabs .nav-item {
    width: 100%;
  }

  #categoryTabs .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}
/* showCase Section */
#productGrid .card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition: transform 0.3s ease;
}

#productGrid .card:hover {
  transform: translateY(-5px);
}
#productGrid  .image-wrapper{
  min-height: 300px;
}
#productGrid .card-img-top {
  height: 300px;
  object-fit: cover;
}

#productGrid .card-body {
  padding: 15px;
}
.product-row{
  margin: 0 auto;
}
#productGrid .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

#productGrid .card-text {
  font-size: 0.9rem;
  color: var(--neutral-color);
}

#productGrid .btn {
  font-size: 0.9rem;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--background-white);
}

#productGrid .btn:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* showCase Section Media Queries */
@media (max-width: 768px) {
  #productGrid  .image-wrapper{
  min-height: 200px;
}
  #productGrid .card-img-top {
    height: 200px;
  }
  #productGrid .card-title {
    font-size: 1.1rem;
  }

  #productGrid .card-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  #productGrid  .image-wrapper{
  min-height: 250px;
}
  #productGrid .card-img-top {
    height: 250px;
  }

  #productGrid .card-title {
    font-size: 1rem;
  }

  #productGrid .btn {
    font-size: 0.85rem;
  }
}


/* Glassmorphism Product Card */
.product-card-glass {
  background: rgba(255, 255, 255, 0.15); /* Translucent */
  backdrop-filter: blur(15px); /* Frosted effect */
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card-glass:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.product-card-glass .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: transform 0.4s ease;
}

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

.product-card-glass .offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.3rem 0.7rem;
  font-weight: bold;
  border-radius: 0.5rem;
  font-size: 0.85rem;
}

.product-card-glass .card-body h5 {
  font-weight: 700;
  color: var(--text-dark);
}

.product-card-glass .card-body p {
  color: rgba(33, 37, 41, 0.85);
}

.product-card-glass .quantity-input1 .btn {
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.product-card-glass .quantity-input1 .btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}


/* Table (Desktop) */
.table-responsive-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  vertical-align: middle;
  text-align: center;
  border: 1px solid #e0e0e0;
  padding: 0.75rem;
}

.table th {
  font-size: 1.5rem;
  color: var(--background-white);
  background-color: var(--primary-color);
}

.table td {
  font-size: 1.2rem;
  color: black;
}

.table img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.table img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.table td del {
  font-size: 0.9rem;
}

.table td:nth-child(5) {
  font-weight: bold;
  color: var(--primary-hover);
}



/* Column Widths (Desktop) */
.table th:nth-child(1),
.table td:nth-child(1) { /* Image */
  width: 5%;
  min-width: 60px;
}

.table th:nth-child(2),
.table td:nth-child(2) { /* Name */
  width: 20%;
  min-width: 120px;
}

.table th:nth-child(3),
.table td:nth-child(3) { /* Contents */
  width: 20%;
}

.table th:nth-child(4),
.table td:nth-child(4) { /* Price */
  width: 15%;
  min-width: 80px;
}

.table th:nth-child(5),
.table td:nth-child(5) { /* Offer */
  width: 15%;
  min-width: 80px;
}

.table th:nth-child(6),
.table td:nth-child(6) { /* Quantity */
  width: 15%;
  min-width: 100px;
}

.table th:nth-child(7),
.table td:nth-child(7) { /* Actions */
  width: 15%;
  min-width: 90px;
}

/* Table Media Queries */
@media (max-width: 1200px) {
  .table th {
    font-size: 1.3rem;
    padding: 0.6rem;
  }
  .table td {
    font-size: 1.1rem;
    padding: 0.6rem;
  }
  .table img {
    width: 50px;
    height: 50px;
  }
  .table th:nth-child(6),
  .table td:nth-child(6) { /* Quantity */
    width: 12%;
    min-width: 100px;
  }
}

@media (max-width: 992px) {
  .table th {
    font-size: 1.2rem;
    padding: 0.5rem;
  }
  .table td {
    font-size: 14px;
    padding: 0.5rem;
  }
  .table img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 700px) {
  .table-responsive-wrapper {
    overflow-x: visible;
  }
  .table {
    display: block;
    width: 100%;
  }
  .table thead {
    display: none;
  }
 .table tbody{
   display: grid;
   gap: 10px;
 }
  .table .product-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Simplified for better mobile layout */
    gap: 0.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(199, 21, 133, 0.05);
    transition: background-color 0.3s ease;
  }
  .table td {
    display: block;
    padding: 0.25rem 0;
    border: none;
    font-size: 0.95rem;
    text-align: left;
  }
  .table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--primary-hover);
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .table td:nth-child(1) { /* Image */
    width: 100%;
    height: 100%;
    grid-row: 1 / 2;
    grid-column: 1;
    display: flex;
    justify-content: center;
  }
  .table td:nth-child(1) img {
    min-width: 60px;
    min-height: 60px;
    object-fit: cover;
    border-radius: 8px;
   
  }
  .table td:nth-child(2) { /* Name */
    grid-row: 1;
    grid-column: 2;
    font-weight: bold;
    font-size: 1.1rem;
 width: 100%;
  }
  .table td:nth-child(3) { /* Contents */
    width: 100%;
    grid-row: 1;
    grid-column: 3;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
  }
  .total-cost{
    color: var(--primary-color);
    font-weight: bold;
  }
 .table td.price-offer-cell {
  width: 100%;
    grid-row: 2;
    grid-column: 2;
    font-size: 0.95rem;
padding: 0px;
place-content: start;
  }
  .table td:nth-child(7) { /* Quantity */
    width: 100%;
    grid-row: 2;
    grid-column: 3;

  }
  .table td:nth-child(8) { /* Actions */
    width: 100%;
    grid-row: 2;
    grid-column: 1;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
 
}

@media (max-width: 576px) {
  .table .product-grid-container {
    grid-template-columns: 1fr 2fr 1fr;
    padding: 0.75rem;
  }
  .table td {
        font-size: 14px;
  }
  .table td:nth-child(1) img {
    min-width: 70px;
    min-height: 70px;
  }
  .table td:nth-child(2) {
     width: 100%;
     font-size: 14px;

  }
   .price-offer-cell span{
    font-size: 14px;
  }
  .price-offer-cell del{
    font-size: 16px;
  }
  .table td del {
  font-size: 0.7rem;
}
}

@media (max-width: 400px) {
  .table .product-grid-container {
    grid-template-columns: 1fr 2fr 1fr;
    padding: 0.5rem;
  }
  .table td {
    font-size: 14px;
  }
  .table td:nth-child(1) img {
    width: 60px;
    height: 60px;
  }
  .table td:nth-child(2) {
    width: 100%;
    font-size: 12px;
  }
 
  .price-offer-cell span{
    font-size: 14px;
  }
  .price-offer-cell del{
    font-size: 16px;
  }
}

@media (max-width: 350px) {
.table .product-grid-container {
    grid-template-columns: 1fr 1fr 70px;
    padding: 0.5rem;
  }
   .table td:nth-child(3) { 
    min-width: 20px;/* Contents */
    grid-row: 1;
    grid-column: 3;

    
  }
  .table td:nth-child(7) { /* Quantity */
  min-width: 20px;
    grid-row: 2;
    grid-column: 3;

  }
}
table tbody tr td{
  background-color: transparent !important;
}
/* Category Header Row */
.category-header td{
background-color: transparent;
}
.category-header {

  color: var(--background-white);
  font-weight: bold;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

/* Category Header Media Queries */
@media (max-width: 992px) {
  .category-header {
    font-size: 1.2rem;
    padding: 0.6rem 0.8rem;
  }
}

@media (max-width: 700px) {
  .category-header {
    font-size: 1.1rem;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
  }
}

@media (max-width: 576px) {
  .category-header {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-header td {
    color: var(--text-dark);
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .category-header td {
    font-size: 1rem;
  }
}

/* Quantity Input Styling */
.quantity-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity-input {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input .btn {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  box-shadow: 0 2px 5px rgba(199, 21, 133, 0.2);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity-input .btn:hover {
  background-color: var(--primary-color);
  transform: scale(1.05);
}

.quantity-input input {
  width: 50px;
    height: 34px;
  text-align: center;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  font-weight: bold;
  color: var(--primary-hover);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Quantity Input Media Queries */
@media (max-width: 1200px) {
  .quantity-input .btn {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }
  .quantity-input input {
    width: 35px;
     height: 30px;
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .quantity-input .btn {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .quantity-input input {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

@media (max-width: 700px) {
  .quantity-input {
 
  justify-content: flex-start;
}
  .quantity-input .btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .quantity-input input {
    width: 48px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .quantity-input .btn {
   width: 26px;
    height: 26px;
    font-size: 1.2rem;
  }
  .quantity-input input {
 width: 32px;
    height: 26px;
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {

  .quantity-input .btn {
   
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }
  .quantity-input input {
    width: 32px;
    height: 26px;
    font-size: 0.8rem;
  }
}
@media (max-width: 350px) {
.quantity-input .btn {
   
    width: 6px;
    height: 26px;
    font-size: 1rem;
  }
  .quantity-input input {
    width: 18px;
    height: 26px;
    font-size: 0.8rem;
  }
  .btn{
    padding: 12px;
  }
}




.social-icons{
  border: 1px solid var(--primary-color);
  padding: 5px;
  border-radius: 5px;
  width: 50px;
  height: 50px;

}




@media (max-width: 576px) {
.social-icons{
  width: 30px;
  height: 30px;
   display: flex;
  align-items: center;
  justify-content: center;
}
  
}


/* Animations (Used in table and category header) */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* list Summary */
.summary-container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 800;
}
.list-summary-glass {
     width: 700px;
  display: flex;
  justify-content: space-around;
  backdrop-filter: blur(10px);
  background-color: var(--background-white);
  border: 2px solid var(--primary-color);
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
/*   box-shadow: 0 -4px 20px var(--primary-color); */
  animation: fadeInUp 0.6s ease-in-out;
  z-index: 1030;
  padding: 1rem;
}

.summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-dark);
}

.summary-item span {
  color: var(--primary-color);
  font-weight: 600;
}

/* list Summary Media Queries */
@media (max-width: 992px){
    .list-summary-glass {
    width: 500px;
  }
}
@media (max-width: 768px) {
  .list-summary-glass {
    width: 500px;
  }
}

@media (max-width: 700px) {

  .list-summary-glass {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;

  }
  .summary-item {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
  }
  .summary-item p {
    font-size: 0.9rem;
    padding-top: 12px;
  }
}

@media (max-width: 576px) {
   .list-summary-glass{
    width: 700px;
   }
  .summary-item p {

    font-size: 1rem;
  }
}



/* Floating list */
.floating-list {
  position: fixed;
     bottom: 20%;
    right: 10px;
      width: 50px;
    height: 50px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  padding: 10px;
  font-size: 1.25rem;
  color: white;
  transition: background-color 0.3s ease, transform 0.2s ease;
  z-index: 1050;
  display: flex;
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-list:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  color: white;
}

.floating-list .badge.list-count {
  position: absolute;
  top: 1px;
  right: 4px;
  background-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 700;
  font-size: 1rem;
width: 20px;
    height: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(199, 21, 133, 0.8);
}
.floating-list i{
    font-size: 2rem;
  }
/* Floating list Media Queries */
@media (max-width: 992px) {
   .floating-list {
    bottom: 20%;
    right: 0px;
    padding: 4px;
    font-size: 0.9rem;
    width: 50px;
    height: 50px;
    
  }
  .floating-list i{
    font-size: 2rem;
  }
  .floating-list .badge.list-count {
    font-size: 1rem;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 700px) {
   .floating-list {
    bottom: 20%;
    right: 0px;
    padding: 4px;
    font-size: 0.9rem;
    width: 50px;
    height: 50px;
    
  }
  .floating-list i{
    font-size: 2rem;
  }
  .floating-list .badge.list-count {
    font-size: 1rem;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
   .floating-list {
    bottom: 20%;
    right: 0px;
    padding: 4px;
    font-size: 0.9rem;
    width: 50px;
    height: 50px;
    
  }
  .floating-list i{
    font-size: 2rem;
  }
  .floating-list .badge.list-count {
    font-size: 1rem;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 400px) {
  .floating-list {
    bottom: 20%;
    right: 0px;
    padding: 4px;
    font-size: 0.9rem;
    width: 50px;
    height: 50px;
    
  }
  .floating-list i{
    font-size: 2rem;
  }
  .floating-list .badge.list-count {
    font-size: 1rem;
    width: 20px;
    height: 20px;
  }
}



.product-card {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(199, 21, 133, 0.15);
}

.product-card .image-wrapper {
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  position: relative;
}

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

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

.product-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  flex-grow: 1;
}

.product-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

.product-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.product-card del {
  color: #999;
  margin-right: 0.4rem;
}

.product-card p:last-of-type {
  font-weight: 600;
  color: var(--primary-color);
}

/* Offer Badge */
.offer-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulseOffer 2s infinite ease-in-out;
}

@keyframes pulseOffer {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 5px var(--primary-color);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--primary-color);
  }
}



/* Quantity Controls */
.quantity-input1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}

.input_buttons {
  display: flex;
  column-gap: 10px;
}

.quantity-input1 input {
  max-width: 50px;
  height: 35px;
  text-align: center;
  font-weight: bold;
  border-radius: 0.4rem;
  border: 1px solid var(--primary-color);
  padding: 0.3rem;
}

.quantity-input1 .btn {
  background-color: var(--primary-hover);
  color: #fff;
  font-weight: bold;
  border-radius: 0.4rem;
  width: 35px;
  height: 35px;
  padding: 0;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-input1 .btn:hover {
  background-color: var(--primary-magenta, #c71585);
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .product-card .image-wrapper {
    height: 180px;
  }
  .product-card h5 {
    font-size: 1.1rem;
  }
  .product-card p {
    font-size: 0.95rem;
  }
  .quantity-input1 input {
    width: 55px;
    font-size: 0.95rem;
  }
  .quantity-input1 .btn {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
}

@media (max-width: 992px) {
  .product-card .image-wrapper {
    height: 160px;
  }
  .product-card h5 {
    font-size: 1rem;
  }
  .product-card p {
    font-size: 0.9rem;
  }
  .quantity-input1 input {
    width: 50px;
    font-size: 0.9rem;
  }
  .quantity-input1 .btn {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 768px) {
  .product-card .image-wrapper {
    height: 140px;
  }
  .product-card h5 {
    font-size: 0.95rem;
  }
  .product-card p {
    font-size: 0.85rem;
  }
  .offer-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  .wishlist-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  .quantity-input1 {
    width: 100%;
    gap: 0.2rem;
  }
  .quantity-input1 input {
    width: 45px;
    font-size: 0.85rem;
  }
  .quantity-input1 .btn {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 576px) {
  .product-card .image-wrapper {
    height: 120px;
  }
  .product-card h5 {
    font-size: 0.9rem;
  }
  .product-card p {
    font-size: 0.8rem;
  }
  .offer-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
    top: 0.4rem;
    left: 0.4rem;
  }
  .wishlist-btn {
    top: 0.4rem;
    right: 0.4rem;
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
  .quantity-input1 input {
    width: 40px;
    font-size: 0.8rem;
  }
  .quantity-input1 .btn {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 400px) {
   
  .product-card .image-wrapper {
    height: 100px;
  }
  .product-card h5 {
    font-size: 0.85rem;
  }
  .product-card p {
    font-size: 0.75rem;
  }
  .offer-badge {
    font-size: 0.6rem;
    padding: 0.15rem 0.35rem;
  }
  .wishlist-btn {
    width: 28px;
    height: 28px;
    font-size: 9px;
  }
  .quantity-input1 input {
    width: 38px;
    font-size: 0.75rem;
  }
  .quantity-input1 .btn {
    width: 24px;
    height: 24px;
  }
}

/* list Modal Grid Styles */
#listItemsList {
  margin-bottom: 1rem;
  max-height: 300px; /* Adjust height as needed */
  overflow-y: auto;
  padding-right: 10px; /* Prevent scrollbar overlap */
}

.list-item-grid {
  display: grid;
  grid-template-columns: 60px 2fr 1fr 1fr 80px; /* Image, Name, Price, Quantity, Remove */
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--neutral-color);
  background: var(--background-white);
  transition: background-color 0.2s ease;
}

.list-item-grid:hover {
  background-color: var(--background-light);
}

.list-item-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 3px var(--shadow-color);
}

.list-item-name {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.list-item-price {
  font-size: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.list-item-quantity .input-group {
  max-width: 120px;
}

.list-item-quantity .btn-outline-secondary {
  border-color: var(--neutral-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.list-item-quantity .btn-outline-secondary:hover {
  background-color: var(--primary-hover);
  color: var(--background-white);
}

.list-item-quantity .form-control {
  text-align: center;
  border-color: var(--neutral-color);
  color: var(--text-dark);
}

.list-item-remove .btn-danger {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.list-item-remove .btn-danger:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
}

/* Amount Summary Styles */
.amount-div {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text-dark);
}

.amount-div p {
  margin: 0.5rem 0;
}

.amount-div span {
  font-weight: 600;
  color: var(--primary-color);
}

/* Modal Footer Form */
.modal-footer .list-form {
  padding: 1rem;
  background: var(--background-white);
  border-top: 1px solid var(--neutral-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .list-item-grid {
    grid-template-columns: 60px 2fr 1fr 1.5fr 40px;
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .amount-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark);
  }
}

@media (max-width: 767.98px) {
  .list-item-grid {
    grid-template-columns: 50px 1fr; /* Image and stacked content */
    grid-template-areas:
      "image name price"
      "image quantity remove";
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .list-item-image {
    grid-area: image;
  }

  .list-item-name {
    grid-area: name;
    font-size: 0.9rem;
    text-align: center;
  }

  .list-item-price {
    grid-area: price;
    font-size: 0.9rem;
    text-align: center;
  }

  .list-item-quantity {
    grid-area: quantity;
    display: flex;
    justify-content: center;
  }

  .list-item-quantity .input-group {
    max-width: 100px;
  }

  .list-item-remove {
    grid-area: remove;
    text-align: center;
  }

  .amount-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark);
  }
}

@media (max-width: 575.98px) {
  .list-item-grid {
    grid-template-columns: 60px 2fr 1fr;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .list-item-image img {
    width: 60px;
    height: 60px;
  }

  .list-item-name, .list-item-price {
    font-size: 0.85rem;
  }

  .list-item-quantity .input-group {
    max-width: 100px;
  }

  .amount-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark);
  }
}




/* About Us Section Styles */

/* --- New About Us Section Styles --- */

/* Section Container */
#about {
  background-color: var(--background-light);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* About Us Carousel */
#aboutCarousel {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px var(--shadow-color);
  margin-bottom: 4rem;
}

#aboutCarousel .carousel-item img {
  filter: brightness(0.9);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#aboutCarousel .carousel-item.active img {
  filter: brightness(1);
  transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--glass-bg);
  backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

/* Section Headings */
.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Our Story */
.about-story {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neutral-color);
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-story:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}


/* Safety Tips */
.safety-tips .row {
  margin-top: 2rem;
  justify-content: center;
}

.tip-card {
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tip-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.tip-card h4 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.tip-card.do {
  background: linear-gradient(145deg, rgba(23, 162, 184, 0.2), rgba(0, 123, 255, 0.2));
  color: var(--text-dark);
}

.tip-card.dont {
  background: linear-gradient(145deg, rgba(255, 0, 0, 0.2), rgba(255, 127, 80, 0.2));
  color: var(--text-dark);
}

.tip-card ul {
  padding-left: 0;
}

.tip-card li {
  list-style: none;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.tip-card i {
  margin-right: 15px;
  font-size: 1.5rem;
}

.tip-card.do i {
  color: var(--primary-color);
}

.tip-card.dont i {
  color: #dc3545;
}

/* FAQ Accordion */
.faq-accordion {
  margin-top: 2rem;
}

.faq-accordion .accordion-item {
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--text-dark);
  padding: 1.5rem;
  background: transparent;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--background-white);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(1);
}

.faq-accordion .accordion-body {
  color: var(--text-dark);
  font-size: 1rem;
  padding: 1rem 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
  .about-story {
    font-size: 1rem;
    padding: 1rem;
  }
  .tip-card h4 {
    font-size: 1.5rem;
  }
  .tip-card li {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .section-heading {
    font-size: 1.5rem;
  }
  .tip-card {
    margin-bottom: 1rem;
  }
  .tip-card h4 {
    font-size: 1.25rem;
  }
  .tip-card li {
    font-size: 0.9rem;
  }
  .faq-accordion .accordion-button {
    font-size: 0.9rem;
  }
}







/* Contact Us Section Styles */


/* Contact Us Carousel Styles */
#contactCarousel {
  max-width: 100%;
  margin-bottom: 2rem;
}

#contactCarousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition: transform 0.3s ease;
  cursor: pointer;
}

#contactCarousel .carousel-item img:hover {
  transform: scale(1.02);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--glass-bg);
  backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

/* --- Contact Section Styles --- */
.contact-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: var(--text-dark);
  position: relative;
  margin-bottom: 1.5rem;
}

.contact-section h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

.contact-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Contact Form Styling */
#contactForm .form-control {
  background-color: var(--background-light);
  border: 1px solid var(--primary-hover);
  padding: 1rem 1.25rem;
  height: auto;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contactForm .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--primary-rgb), 0.25);
  background-color: #fff;
}

#contactForm .form-label {
  font-weight: 600;
  color: var(--text-dark);
}

#contactForm .btn-primary {
  background-color: var(--primary-color);
  border: none;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#contactForm .btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

/* Contact Info Styling */
.contact-info {
  margin-top: 2rem;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-info li i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  min-width: 30px;
}

.contact-info li a {
  color: var(--neutral-color) !important;
  transition: color 0.3s ease;
}

.contact-info li a:hover {
  color: var(--primary-color) !important;
}

/* Map Container Styling */
.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .contact-section {
    padding: 3rem 0;
  }
  .contact-section h2 {
    font-size: 2rem;
  }
  .contact-section h3 {
    font-size: 1.5rem;
  }
  .map-container iframe {
    height: 250px;
  }
}

/* Glass-morphism effect for the content row */
.contact-section .row {
  background-color: rgba(255, 255, 255, 0.15); /* Slightly transparent white */
  backdrop-filter: blur(10px); /* The key to the frosted glass look */
  border-radius: 15px; /* Rounded corners for a modern feel */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for definition */
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37); /* A shadow to make it pop */
  padding: 3rem; /* Add padding to prevent content from touching the edges */
}

/* Ensure form controls are readable and match the style */
.contact-section .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);

}



.contact-section .contact-info li i {
  color: var(--primary-color);
}


/* --- Footer Section Styles --- */
/* --- Footer Section Styles --- */
footer {
  background-color: var(--background-dark);
  color: var(--text-white);
  padding: 4rem 0 1rem;
}

/* Footer Heading */
footer h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 1.5rem;
}

footer h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin-top: 10px;
  margin: 0 auto;
  border-radius: 2px;
}
.footer-col-icons{
  display: flex;
  justify-content: space-around;
}



/* Quick Links and List Items */
.list-unstyled li a {
color: var(--background-light);
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.list-unstyled li a:hover {
  color: var(--primary-color) !important;
  transform: translateX(5px);
}

.list-unstyled li {
  margin-bottom: 0.5rem;
}


/* Contact Details */
.contact-details p {
  color: var(--neutral-color);
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.contact-details i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-right: 15px;
  min-width: 20px;
}

.contact-details a {

  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-color) !important;
}

/* Social Icons */
.col-md-3 a i {
  font-size: 1.5rem;

  transition: color 0.3s ease, transform 0.3s ease;
}

.col-md-3 a:hover i {
  color: var(--primary-color);
  transform: scale(1.2);
}

/* Map Iframe */
.map-iframe {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-iframe iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
  line-height: 1.6;
}


/* Bottom Footer Links */
.footer-links a {
  color: var(--neutral-color);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
@media (min-width: 768px) {
hr{
  display: none;
}
footer h2::after{
  margin: 0px;
  margin-top: 5px;
}
.accordion-toggle{
  margin-bottom: 20px;
}
.footer-col-icons{
  justify-content: flex-start;
  gap: 1rem;
}
}
/* --- Mobile Accordion Styles --- */
@media (max-width: 992px) {
   
  /* Footer Heading for mobile */
  footer h5 {
    font-size: 1.2rem;
    margin-bottom: 0;
    padding: 1rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
  }
  
  footer h5::after {
    display: none;
  }

  footer h5:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Accordion icon */
  footer h5::before {
    content: "\f054"; /* Font Awesome chevron-right icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
  }
  
  footer h5.active::before {
    content: "\f078"; /* Font Awesome chevron-down icon */
    transform: rotate(90deg);
  }

  /* Accordion content */
  .footer-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .footer-collapse.show {
    max-height: 500px; /* Adjust as needed */
  }

  .footer-collapse .list-unstyled,
  .footer-collapse .contact-details,
  .footer-collapse .map-iframe {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-collapse .list-unstyled li a,
  .footer-collapse .contact-details p {
    font-size: 0.9rem;
  }
  
  .footer-links a,
  .disclaimer {
    font-size: 0.8rem;
  }
}


.download-btn:hover{
  color: var(--background-light);
}

/* --- Terms and Conditions Section Styles --- */
#terms {
  background-color: var(--background-white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Section Heading */
#terms h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
}

#terms h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Sub-heading */
.terms-content h3 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.terms-content > p {
  color: var(--neutral-color);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* List of Terms */
.list-group-numbered {
  padding-left: 0;
}

.list-group-item {
  background-color: var(--background-light);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  counter-increment: term-counter;
  position: relative;
  list-style: none; /* Remove default list style */
}

/* Custom Numbering Style */
.list-group-item::before {
  content: counter(term-counter) ".";
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.list-group-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-left: 30px; /* Aligns with the custom number */
  margin-bottom: 0.5rem;
}

.list-group-item p {
  color: var(--neutral-color);
  margin-bottom: 0;
  line-height: 1.6;
  margin-left: 30px; /* Aligns with the custom number */
}

.list-group-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Link Styles */
.list-group-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.list-group-item a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  #terms h2 {
    font-size: 2rem;
  }
  .terms-content h3 {
    font-size: 1.5rem;
  }
  .terms-content > p {
    font-size: 1rem;
  }
  .list-group-item {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  .list-group-item::before {
    font-size: 1.2rem;
    left: 15px;
    top: 15px;
  }
  .list-group-item strong, .list-group-item p {
    margin-left: 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #terms h2 {
    font-size: 1.75rem;
  }
  .terms-content h3 {
    font-size: 1.25rem;
  }
  .terms-content > p {
    font-size: 0.95rem;
  }
  .list-group-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .list-group-item::before {
    font-size: 1rem;
    left: 10px;
    top: 10px;
  }
  .list-group-item strong, .list-group-item p {
    margin-left: 20px;
    font-size: 0.9rem;
  }
}


/* --- Privacy Policy Section Styles --- */
#privacy {
  background-color: var(--background-white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Section Heading */
#privacy h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  text-align: center;
}

#privacy h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Sub-heading */
.privacy-content h3 {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.privacy-content > p {
  color: var(--neutral-color);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* List of Privacy Policy Items */
.list-group-numbered {
  padding-left: 0;
}

.list-group-item {
  background-color: var(--background-light);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  counter-increment: privacy-counter;
  position: relative;
  list-style: none; /* Remove default list style */
}

/* Custom Numbering Style */
.list-group-item::before {
  content: counter(privacy-counter) ".";
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.list-group-item strong {
  display: block;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-left: 30px; /* Aligns with the custom number */
  margin-bottom: 0.5rem;
}

.list-group-item p {
  color: var(--neutral-color);
  margin-bottom: 0;
  line-height: 1.6;
  margin-left: 30px; /* Aligns with the custom number */
}

.list-group-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Link Styles */
.list-group-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.list-group-item a:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  #privacy h2 {
    font-size: 2rem;
  }
  .privacy-content h3 {
    font-size: 1.5rem;
  }
  .privacy-content > p {
    font-size: 1rem;
  }
  .list-group-item {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  .list-group-item::before {
    font-size: 1.2rem;
    left: 15px;
    top: 15px;
  }
  .list-group-item strong, .list-group-item p {
    margin-left: 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #privacy h2 {
    font-size: 1.75rem;
  }
  .privacy-content h3 {
    font-size: 1.25rem;
  }
  .privacy-content > p {
    font-size: 0.95rem;
  }
  .list-group-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  .list-group-item::before {
    font-size: 1rem;
    left: 10px;
    top: 10px;
  }
  .list-group-item strong, .list-group-item p {
    margin-left: 20px;
    font-size: 0.9rem;
  }
}




.back-to-top {
  position: fixed;
  bottom: 5px;
  right: 20px;
  display: none;
  z-index: 900;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: var(--primary-color);
  color: var(--background-white);
}

.back-to-top:hover {
border: 1px solid var(--primary-color);
color: var(--primary-color);
  transform: translateY(-5px);
}

@media (max-width: 576px) {
  .back-to-top {
    bottom: 10px;
    right: 25px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}



.toast-container {
  z-index: 1055;/* Ensure toasts appear above other elements */
}
.text-bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

.toast {
  font-size: 0.75rem;   /* smaller text */
  padding: 0.25rem 0.5rem; /* reduce spacing */
  min-width: 180px;     /* optional: make it narrower */
  max-width: 250px;     /* control max width */
}

.toast .toast-body {
  padding: 0.25rem 0.5rem; /* reduce body padding */
}

.toast .btn-close {
  transform: scale(0.8);  /* smaller close button */
}
.custom-toast-pos{
  bottom: 40px;
}




/* =========================
   About / Safety / FAQ Styles
=========================== */

/* Headings */
.section-heading {
  font-weight: 900;
  color: var(--primary-color);
  text-align: center;
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 10px auto 0;
  border-radius: 2px;
}

/* About Story */
.about-story {
  text-align: center;
  font-size: 1.05rem;
  color: var(--neutral-color);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.about-story:hover {
  transform: scale(1.02);
  opacity: 1;
}

/* Safety Tips Cards */
.safety-tips .tip-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0.5rem 1.2rem rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-tips .tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.25);
}

.safety-tips .tip-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.safety-tips .tip-card ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.safety-tips .tip-card i {
  font-size: 1.3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.safety-tips .tip-card li:hover i {
  transform: scale(1.3);
}

.safety-tips .do i { color: var(--primary-color); }
.safety-tips .dont i { color: var(--secondary-color); }

/* FAQ Section */
.faq-accordion .accordion-button {
  background: blue;
  color: #fff;
  font-weight: 600;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.faq-accordion .accordion-body {
  background: #fdf5f0;
  border-radius: 0 0 0.8rem 0.8rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 1rem 1.5rem;
}

/* Responsive */
@media (max-width: 767px) {
  .section-heading { font-size: 1.75rem; }
  .safety-tips .tip-card { padding: 1rem; }
}





/* =========================
   Contact Us Section Styles
=========================== */
.contact-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.contact-section h2 {
  font-weight: 900;
  color: var(--primary-color);
  position: relative;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  text-align: center;
}

.contact-section h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-section h3 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.contact-section .form-control {
  border-radius: 0.75rem;
  border: 1px solid #ced4da;
  transition: all 0.3s ease;
}

.contact-section .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(40, 167, 69, 0.2);
}

.contact-section .btn-primary {
  border-radius: 0.75rem;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-section .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.contact-info li {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.contact-info li:hover {
  transform: translateX(5px);
}

.contact-info i {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-right: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info li:hover i {
  transform: scale(1.2);
  color: var(--secondary-color);
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.map-container:hover {
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 767px) {
  .contact-section h2 {
    font-size: 2rem;
  }
}


.social-icons {
    text-decoration: none !important;
}



.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 5px;
  z-index: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
 

}




/* Social Media Sidebar */
.social-media-bar {
  position: fixed;
  bottom: 10%;
  left: 4rem;
  transform: translateY(-50%);
  z-index: 1000;
}

.tooltip-container {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: var(--background-light);
  position: relative;
  cursor: pointer;
  font-size: 17px;
  padding: 0.7em;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  animation: bounce 1.5s infinite ease-in-out;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.tooltip-container:hover {
  background: #fff;
}

.tooltip-container .text {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--background-light);
  transition: all 0.3s;
}

.tooltip-container:hover .text {
  fill: var(--primary-color);
}

.tooltip1,
.tooltip2,
.tooltip3,
.tooltip4 {
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: 50px;
  transition: opacity 0.3s, visibility 0.3s, top 0.3s, background 0.3s;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tooltip1 { top: 100%; left: 50%; transform: translateX(-50%); fill: var(--primary-color); }
.tooltip-container:hover .tooltip1 { top: 130%; opacity: 1; visibility: visible; transform: translate(-50%, -5px); }
.tooltip-container:hover .tooltip1:hover { background: var(--background-light); fill: var(--primary-color); }

.tooltip2 { top: 100%; left: 50%; transform: translateX(-50%); fill: var(--primary-color); }
.tooltip-container:hover .tooltip2 { top: -120%; opacity: 1; visibility: visible; transform: translate(-50%, -5px); }
.tooltip-container:hover .tooltip2:hover { background: var(--background-light); fill: var(--primary-color); }

.tooltip3 { top: 100%; left: 60%; transform: translateX(80%); fill: var(--primary-colora); }
.tooltip-container:hover .tooltip3 { top: 10%; opacity: 1; visibility: visible; transform: translate(65%, -5px); }
.tooltip-container:hover .tooltip3:hover { background: var(--background-light); fill: var(--primary-color); }

.tooltip4 { top: 100%; left: -190%; transform: translateX(70%); fill: var(--primary-color); }
.tooltip-container:hover .tooltip4 { top: 10%; opacity: 1; visibility: visible; transform: translate(70%, -5px); }
.tooltip-container:hover .tooltip4:hover { background: var(--background-light); fill: var(--primary-color); }
.tooltip4 a{
  color: var(--primary-color);
}
.tooltip3 a{
  color: var(--primary-color);
}
.tooltip2 a{
  color: var(--primary-color);
}
.tooltip1 a{
  color: var(--primary-color);
}

/* Social Media Sidebar Media Queries */
@media (max-width: 992px) {

  .tooltip-container {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }
  .tooltip1, .tooltip2, .tooltip3, .tooltip4 {
    width: 45px;
    height: 45px;
  }
}



 @media (max-width: 576px) {
  .social-media-bar{
    left: 3rem;
    bottom: 10%;
  }
} 

