:root {
  --primary-color: #dc3545; /* Vibrant red */
  --primary-hover: #b02a37; /* Darker red for hover states */
  
  --secondary-color: #ff6b6b; /* Soft red accent */
  --secondary-hover: #e65a5a; /* Darker soft red for hover states */
  
  --neutral-color: #6c757d; /* Neutral gray for text and secondary elements */
  
  --background-light: #fff5f5; /* Light red-tinted background */
  --background-white: #ffffff; /* White background */
  
  --text-dark: #212529; /* Dark text */
  
  --shadow-color: rgba(220, 53, 69, 0.3); /* Red-tinted shadow */
  --carousel-overlay: rgba(220, 53, 69, 0.4); /* Red-tinted 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;
  }
}


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: #1C1B17;
  padding: 12px 0;
}

.nav-list .nav-item .nav-link {
  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: #d4af37;
}

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

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

.center-toggler {
  margin-left: auto;
  margin-right: auto;
}
.site-logo{
  width: 250px;
  height: 100px;
}
.site-title {
  font-size: 2.5rem;
  font-weight: 600;
  padding-left: 10px;
}

/* 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;
   background-color: #1C1B17 !important;
}
@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: 200px;
    height: 60px;
  }
}



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

  .site-logo {
    width: 250px;
    height: 100px;
  }
}

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

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

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

@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;
  }
}
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;
  }
}


.video-section {
  display: flex;
  gap: 2rem; /* space between videos (desktop) */
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1200px;
}

.video-container {
  flex: 1 1 45%; /* side by side on desktop */
  min-width: 300px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 66.66%; /* 3:2 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Mobile view: stack with spacing */
@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
  }

  .video-container {
    flex: 1 1 100%;
    margin-bottom: 1.5rem; /* keeps gap when stacked */
  }

  /* remove last margin to avoid extra space */
  .video-container:last-child {
    margin-bottom: 0;
  }
}


 .section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--background-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 
                -5px -5px 10px rgba(255, 255, 255, 0.7),
                5px 5px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 
                -7px -7px 15px rgba(255, 255, 255, 0.9),
                7px 7px 15px rgba(0, 0, 0, 0.15);
        }

        .section-content {
            flex: 1;
            padding: 1rem;

        }
.section-content-btn{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
        .section-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .section-content p {
            font-size: 1.1rem;
            color: var(--neutral-color);
            margin-bottom: 2rem;
        }

        .section-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 1rem;
        }

        .section-image img {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 
                -3px -3px 8px rgba(255, 255, 255, 0.7),
                3px 3px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

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

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--background-white);
            background-color: var(--primary-color);
            border: none;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            text-align: center;
            box-shadow: 
                -2px -2px 5px rgba(255, 255, 255, 0.6),
                2px 2px 5px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        }

        .btn:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 
                -3px -3px 7px rgba(255, 255, 255, 0.8),
                3px 3px 7px rgba(0, 0, 0, 0.3);
        }
        
        /* Layout for alternating sections */
        .section:nth-child(even) {
            flex-direction: row-reverse;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
           
            .section {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }
            .section:nth-child(even) {
                flex-direction: column;
            }
            .section-content, .section-image {
                padding: 0;
            }
            .section-content {
                order: 2;
            }
            .section-image {
                order: 1;
                margin-bottom: 1.5rem;
            }
            .section-content h2 {
                font-size: 2rem;
            }
            .section-content p {
                font-size: 1rem;
            }
        }



        .middle-section {
    position: relative;
    width: 100%;
    height: 40vh; /* A good height for a middle section */
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/vecteezy_festival-fireworks-celebration-banner-background-vector_23402629.jpg') no-repeat center center/cover; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--background-white);
    text-align: center;
    padding: 0 1rem;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.7),
        5px 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin: 3rem auto; /* Creates space around the section */

}



.middle-content {
    animation: fadeIn 1s ease-in-out;
}

.section-heading {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--background-white);
}

.showcase-btn {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--background-white);
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 
        -2px -2px 5px rgba(255, 255, 255, 0.6),
        2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.section-para{
  color: var(--background-light);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.showcase-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 
        -3px -3px 7px rgba(255, 255, 255, 0.8),
        3px 3px 7px rgba(0, 0, 0, 0.3);
}

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

/* Mobile responsiveness for smaller screens */
@media (max-width: 768px) {
    .middle-section {
        height: 50vh;
        margin: 1.5rem auto;
        border-radius: 15px;
    }

    .section-heading {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .showcase-btn {
        padding: 0.8rem 2.5rem;
        font-size: 1rem;
    }
}


 .ourCrackersStore {
            color: #d9534f;
            font-family: 'Arial', sans-serif;
        }
        .crackers-grid-desktop {
            display: grid;
            grid-template-columns: repeat(6, 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 */
            }
        }



.image-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.image-link {
  display: block;
  width: 100%;
  max-width: 400px;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.image-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.image-box {
  width: 100%;
  padding-top: 100%; /* This is the key to the 1:1 aspect ratio */
  position: relative;
  background-color: var(--background-white);
  border: 4px solid var(--primary-color);
  border-radius: 10px;
}

.image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the area without distortion */
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.image-link:hover .image-box img {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Desktop-specific styles for side-by-side layout */
@media (min-width: 768px) {
  .image-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}



.scroll-container {
    width: 100%;
    overflow: hidden;
    margin: 4rem 0;
    white-space: nowrap;
    position: relative;
}

.card-track {
    display: inline-flex;
    animation-duration: 60s; /* Slower, smoother scroll */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.scroll-container.left-to-right .card-track {
    animation-name: scrollLeftToRight;
}

.scroll-container.right-to-left .card-track {
    animation-name: scrollRightToLeft;
}

.scroll-container:hover .card-track {
    animation-play-state: paused;
}

.scroll-container-card {
    display: inline-block;
    width: 300px;
    margin: 1rem;
    padding: 1rem;
    background-color: var(--background-white);
    border-radius: 20px;
    box-shadow:
        -5px -5px 10px rgba(255, 255, 255, 0.7),
        5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    flex-shrink: 0;
}

.scroll-container-card:hover {
    transform: translateY(-5px);
    box-shadow:
        -7px -7px 15px rgba(255, 255, 255, 0.9),
        7px 7px 15px rgba(0, 0, 0, 0.15);
}

.scroll-container-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow:
        -3px -3px 8px rgba(255, 255, 255, 0.7),
        3px 3px 8px rgba(0, 0, 0, 0.1);
}

.scroll-container-title{
   font-size: 2.5rem;
   text-align: center;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.scroll-container-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.scroll-container-card p {
    font-size: 0.9rem;
    color: var(--neutral-color);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.enquire-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--background-white);
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    box-shadow:
        -2px -2px 5px rgba(255, 255, 255, 0.6),
        2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.enquire-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow:
        -3px -3px 7px rgba(255, 255, 255, 0.8),
        3px 3px 7px rgba(0, 0, 0, 0.3);
}

/* Keyframes for the infinite scrolling animation */
@keyframes scrollLeftToRight {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-33.33% - 2rem)); } /* Adjusted for 3 sets of cards */
}

@keyframes scrollRightToLeft {
    from { transform: translateX(calc(-33.33% - 2rem)); } /* Adjusted for 3 sets of cards */
    to { transform: translateX(0); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .scroll-container-card {
        width: 250px;
        margin: 0.5rem;
    }
    .scroll-container-title{
      font-size: 2rem;
    }
}


/* --- 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(--primary-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(--primary-color) 0%, var(--primary-color) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* --- 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 an overlay on hover for a more interactive feel */
.cracker-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.cracker-card:hover::before {
    opacity: 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;
}

.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);
    }
}


/* --- 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;
}




img {
  max-width: 100%;
}


.enquire-card {
  position: relative;
  background: #333;
  width: 400px;
  height: auto;
  border-radius: 6px;
  padding: 2rem;
  color: #aaa;
  box-shadow: 0 .25rem .25rem rgba(0,0,0,0.2),
    0 0 1rem rgba(0,0,0,0.2);
  overflow: hidden;
  
  &__image-container {
    margin: -2rem -2rem 1rem -2rem;
  }
  
  &__line {
  opacity: 0;
  animation: LineFadeIn .8s .8s forwards ease-in;
  }

  &__image {
    opacity: 0;
    animation: ImageFadeIn .8s 1.4s forwards;
  }

  &__title {
    color: white;
    margin-top: 0;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
  
  &__content {
    margin-top: -1rem;
    opacity: 0;
    animation: ContentFadeIn .8s 1.6s forwards;
  }
  
  &__svg {
    position: absolute;
    left: 0;
    top: 115px;
  }
}

@keyframes LineFadeIn {
  0% { opacity: 0; d: path("M 0 300 Q 0 300 0 300 Q 0 300 0 300 C 0 300 0 300 0 300 Q 0 300 0 300 "); stroke: #fff; }
  50% { opacity: 1; d: path("M 0 300 Q 50 300 100 300 Q 250 300 350 300 C 350 300 500 300 650 300 Q 750 300 800 300"); stroke: #888BFF; }
  100% { opacity: 1; d: path("M -2 100 Q 50 200 100 250 Q 250 400 350 300 C 400 250 550 150 650 300 Q 750 450 802 400"); stroke: #545581; }
}

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

@keyframes ImageFadeIn {
  0% { transform: translate(-.5rem, -.5rem) scale(1.05); opacity: 0; filter: blur(2px); }
  50% { opacity: 1; filter: blur(2px); }
  100% { transform: translateY(0) scale(1.0); opacity: 1; filter: blur(0); }
}



/* 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 {
    width: 40px;
    height: 40px;
    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-size: 1.5rem;
  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);
}


/* Add to your existing stylesheet */

/* General Card Styling */
.product-card-glass {
    background-color: var(--background-white);
    border-radius: 20px;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.7),
        5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.product-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 
        -7px -7px 15px rgba(255, 255, 255, 0.9),
        7px 7px 15px rgba(0, 0, 0, 0.15);
}

.image-wrapper {
    position: relative;
}
.input-group{
  display: flex;
  justify-content: space-around;
}
.product-card-glass img {
    border-radius: 15px 15px 0 0;
    box-shadow: 
        -3px -3px 8px rgba(255, 255, 255, 0.7),
        3px 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Offer Badge */
.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 0.3em 0.8em;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: bold;
    box-shadow: 
        -2px -2px 5px rgba(255, 255, 255, 0.6),
        2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Card Body Content */
.card-body h5 {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.card-body p {
    font-size: 1rem;
    color: var(--neutral-color);
    margin-bottom: 0.5rem;
}

/* Price Styling */
.price-info {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.price-info del {
    color: var(--neutral-color);
    margin-right: 0.5rem;
}

.price-info .offer-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Quantity Input */
.quantity-input1 .btn {
    border-radius: 50px !important;
   
    background-color: transparent;
    border: 1px solid var(--neutral-color);
    color: var(--text-dark);
    box-shadow: 
        -2px -2px 5px rgba(255, 255, 255, 0.6),
        2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.quantity-input1 .btn:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: 
        -3px -3px 7px rgba(255, 255, 255, 0.8),
        3px 3px 7px rgba(0, 0, 0, 0.3);
}

.quantity-input1 .form-control {
    border-radius: 50px;
    text-align: center;
    background-color: var(--background-light);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.6);
    
}
@media (max-width: 576px){
  .quantity-input1 .btn{
    width: 100px;
    height: 100px;
  }
}


/* 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: green;
}



/* 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;
}
.total-cost{
  display: none;
}

/* 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%;
 text-align: center;
  }
  .table td:nth-child(3) { /* Contents */
    width: 100%;
    grid-row: 1;
    grid-column: 3;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 text-align: right;
  }
  .total-cost{
    display: block;
    color: green;
    font-weight: bold;
  }
 .table td.price-offer-cell {
  width: 100%;
    grid-row: 2;
    grid-column: 2;
    font-size: 0.95rem;
padding: 0px;
text-align: center;
  }
  .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;

}

.social-icons i{
color: var(--primary-color);
}


@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-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);
}

/* Font Awesome for Do's and Don'ts icons */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
/* Bootstrap Icons for a more modern look */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");

/* General Section Headings */
.section-heading {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

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

/* Our Story Section */
.about-section .about-content {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.7),
        5px 5px 10px rgba(0, 0, 0, 0.1);
}

.about-section .about-image-wrapper img {
    border-radius: 15px;
    box-shadow: 
        -3px -3px 8px rgba(255, 255, 255, 0.7),
        3px 3px 8px rgba(0, 0, 0, 0.1);
}

.about-story {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Safety Tips Section */
.safety-section .tip-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.7),
        5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.safety-section .tip-card:hover {
    transform: translateY(-5px);
}

.safety-section .tip-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.safety-section .tip-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.safety-section .tip-card ul {
    list-style: none;
    padding: 0;
}

.safety-section .tip-card li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

.safety-section .do .tip-header .do-icon {
    font-size: 2rem;
    color: #28a745; /* Green */
}

.safety-section .dont .tip-header .dont-icon {
    font-size: 2rem;
    color: #dc3545; /* Red */
}

/* FAQ Section */
.faq-section .accordion-item {
    border: none;
    background-color: var(--background-white);
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 
        -3px -3px 6px rgba(255, 255, 255, 0.7),
        3px 3px 6px rgba(0, 0, 0, 0.1);
}

.faq-section .accordion-header {
    border-bottom: none;
}

.faq-section .accordion-button {
    background-color: var(--background-white);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--background-white);
    color: var(--primary-color);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    display: none; /* Hide default icon */
}

/* Custom + and - icons for accordion */
.faq-section .accordion-button::before {
    content: '+';
    font-size: 1.5rem;
    margin-right: 15px;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-section .accordion-button:not(.collapsed)::before {
    content: '-';
    transform: rotate(180deg);
}

.faq-section .accordion-body {
    background-color: #f7f9fc;
    border-top: 1px solid #e0e6ef;
    padding: 1.5rem;
    border-radius: 0 0 15px 15px;
    color: var(--neutral-color);
}


/* Safety Tips Section */
.safety-section .tip-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.7),
        5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.safety-section .tip-card:hover {
    transform: translateY(-5px);
}

.safety-section .tip-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.safety-section .tip-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Styles for the new tip items */
.safety-section .tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 10px;
    background-color: var(--background-light);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05), inset -2px -2px 5px rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.safety-section .tip-item:hover {
    background-color: #e9ecef;
    transform: scale(1.02);
}

.safety-section .tip-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--neutral-color);
}

.safety-section .do .tip-item i {
    color: #28a745; /* Green for Do's */
}

.safety-section .dont .tip-item i {
    color: #dc3545; /* Red for Don'ts */
}

.safety-section .tip-item p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.safety-section .do .tip-header .do-icon {
    font-size: 2rem;
    color: #28a745; /* Green */
}

.safety-section .dont .tip-header .dont-icon {
    font-size: 2rem;
    color: #dc3545; /* Red */
}





/* Contact Us Section Styles */


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

#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);
}
/* New Contact Section Styles */
.contact-section-new {
    background-color: transparent;
    padding: 2rem;
    position: relative;
    border-radius: 20px;
}

.contact-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0e9f0, #e6e6fa);
    opacity: 0.5;
    z-index: -1;
    border-radius: 20px;
    box-shadow: 
        -5px -5px 15px rgba(255, 255, 255, 0.7),
        5px 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-details-card,
.contact-form-card,
.map-card {
    background-color: var(--background-white);
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.7),
        5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-card:hover,
.contact-form-card:hover,
.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        -7px -7px 15px rgba(255, 255, 255, 0.9),
        7px 7px 15px rgba(0, 0, 0, 0.15);
}

.contact-details-card h3,
.contact-form-card h3 {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 2;
}
/* Social Media Icons */
.social-link {
    font-size: 1.8rem;
    color: var(--neutral-color);
    margin-right: 1rem;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}
.contact-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-text h5 {
    font-weight: 600;
    margin: 0 0 0.2rem 0;
    color: var(--text-dark);
}

.contact-text a {
    color: var(--neutral-color) !important;
}

/* Form Styles */
.contact-form-card .form-control {
    background-color: #f0f2f5;
    border: none;
    border-radius: 10px;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.3s ease;
}

.contact-form-card .form-control:focus {
    box-shadow: inset 3px 3px 7px rgba(0, 0, 0, 0.15), inset -3px -3px 7px rgba(255, 255, 255, 0.8);
    border-color: transparent;
}

.contact-form-card .btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    box-shadow: 
        -2px -2px 5px rgba(255, 255, 255, 0.6),
        2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.contact-form-card .btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 
        -3px -3px 7px rgba(255, 255, 255, 0.8),
        3px 3px 7px rgba(0, 0, 0, 0.3);
}

/* Map Styles */
.map-card {
    background-color: var(--background-white);
    margin-top: 2rem;
}

.map-container {
    box-shadow: 
        -3px -3px 8px rgba(255, 255, 255, 0.7),
        3px 3px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: none !important;
}

@media (max-width: 991.98px) {
    .contact-details-card, .contact-form-card {
        padding: 2rem !important;
    }
}

/* --- 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 */


/* 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;
  }
}



/* --- 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);
}
.bi-arrow-up{
  color: var(--background-light);
}
@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;
}



.input-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.input-dropdown input {
  padding-right: 2rem; /* space for icon */
  cursor: pointer;
  background-color: #fff;
}

.input-dropdown .dropdown-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1rem;
  color: #6c757d;
}


.horizontal-flip lord-icon {
  transform: scaleX(-1);
}


@media (max-width: 992px) {
.rocket-icon{
  display: none;

}
}




/* .video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-wrapper iframe {
  display: block;
}
.yt-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 60px;
  background: transparent; 
  z-index: 2;
} */

.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%;
  }
} 

/* @media (max-width: 400px) {
  .social-media-bar {
    gap: 0.3rem;
  }
  .tooltip-container {
    width: 30px;
    height: 30px;
  }
  .tooltip1, .tooltip2, .tooltip3, .tooltip4 {
    width: 30px;
    height: 30px;
  }
} */
