.dynamic-text {
    color: #fff;
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 10px rgba(0, 0, 0, 0.4);
  }
  .text-gray-shadow {
    color: #333; 
    text-shadow: 
      1px 1px 2px rgba(0, 0, 0, 0.1),  /* Soft shadow with low opacity */
      0 1px 3px rgba(0, 0, 0, 0.15);  /* Slight lift effect */
  }
  /* product detail */
  .underLineText{
    border-bottom: 1px solid #0aad0a;
    width: 25%;
  }
  .submit-section {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

/* Add to Cart Button */
.btn-add-to-cart {
    background-color: #222;
    color: white;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 1.2rem;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 15px;
}

.btn-add-to-cart:hover {
    background-color: #333333db;
    transform: scale(1.05);
    color: white;
}

.btn-add-to-cart i {
    margin-right: 8px;
}

/* Styling for Icons */
.bi-bag-plus {
    font-size: 1.4rem;
}

/* Quantity Section */
.quantity-section {
    font-weight: 500;
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
margin-right: 20px;}

/* Quantity Label */
.quantity-label {
    font-weight: 600;
    color: #555;
    font-size: 1.1rem;
}

/* Container for Input + Buttons */
.quantity-input-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease-in-out;
    padding: 5px;
}

/* Hover Effect for Input Container */
.quantity-input-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Input Field */
.quantity-input {
    width: 70px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem;
    border: none;
    background-color: transparent;
    outline: none;
    color: #444;
    border-radius: 6px;
}

/* Buttons (Minus & Plus) */
.btn-quantity {
    width: 40px;
    height: 40px;
    background-color: #f1f3f5;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect for Minus/Plus Buttons */
.btn-quantity:hover {
    background-color: #28a745;
    color: #fff;
    transform: scale(1.1);
}

/* Submit Button (Add to Cart) */
.btn-add-to-cart {
    background-color: #28a745;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    padding: 0.75rem 1.2rem;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for Submit Button */
.btn-add-to-cart:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Card Style for Product */
.card-product {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Hover Effect for Product Card */
.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Card Image Style */
.card-product img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.2s ease;
}

/* Hover Effect for Image */
.card-product:hover img {
    transform: scale(1.05);
}

/* Card Body Style */
.card-product .card-body {
    padding: 20px;
    text-align: center;
}

/* Card Title */
.card-product .card-body h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Card Description */
.card-product .card-body p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

/* Badge for 'New' Products */
.card-product .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff5733;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.8rem;
}
.commentsPart{
    width: 80%;
    margin: 0 8%;
}
.textArea{
    width: 70%;
}
.displayEnd{
    display: flex;
    justify-content: end;
    margin-top: 10px;
}
/* Accordion Styles */
.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-size: 1rem;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: background-color 0.3s, box-shadow 0.3s;
    position: relative;
}
.accordion{
    margin: 10px auto;
}
.accordion-button:hover {
    background-color: #e9f7ef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: #28a745;
}

.accordion-button:not(.collapsed) {
    background-color: #d4edda;
    color: #155724;
    box-shadow: none;
}

.accordion-button .icon-toggle {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .icon-toggle {
    transform: rotate(180deg);
}

/* Accordion Body */
.accordion-body {
    background-color: #ffffff;
    padding: 1rem 1.25rem;
    border-top: 1px solid #dee2e6;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.accordion-collapse {
    transition: height 0.3s ease;
}
.accordion-button::after {
    display: none !important;
}
.headingFaq{
    border-bottom: 1px solid #0aad0a;
    width: 20%;
}

@media (max-width: 768px) {
    .accordion-body {
        display: flex;
        justify-content: start;
    }
    .headingFaq{
        width: 50%;
    }
}
.about-us-header {
    position: relative;
}

.about-us-header .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.about-us-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-us-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.about-us-content h2,
.about-us-content h3 {
    margin-top: 30px;
    font-weight: bold;
    color: #343a40;
}
.about-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}


.about-box-custom {
    position: relative;
    padding: 2rem;
    overflow: hidden; /* Ensures the background image is hidden within the box */
}

.about-img-mirror {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(-1); /* Mirrored effect */
    width: 100%;
    height: auto;
    z-index: -1; /* Ensures that the image stays in the background */
}

.editor-text {
    text-align: center;
    color: #333;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
.content-card {
    max-width: 900px;
    background-color: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
}

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

.content-image {
    max-height: 420px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.content-card:hover .content-image {
    filter: brightness(0.95);
    transform: scale(1.02);
}

.title-link:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.editor-text {
    font-size: 1.1rem;
    line-height: 1.8;
}
.commentsBox{
    border: none;
    border-right: 2px solid #0aad0a;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;border-radius: 10px;
}
.commentsBox textarea{
    border: none;
}
.displayEnd{
    display: flex;
    justify-content: end;
    margin-top: 5px;
}

.commentsWidth {
    width: 60%;
    margin: 10px auto;
    border: 1px solid rgba(128, 128, 128, 0.337);
    padding: 20px;
    border-radius: 20px;
  }
  
  /* Media query for mobile devices */
  @media (max-width: 768px) {
    .commentsWidth {
      width: 90%;
    }

  }
  
.commentsBox2{
    border: none;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;border-radius: 10px;
}
hr.green-line {
    border: 0;
    height: 1px;
    background-color: #0aad0a;
  }
  .commentsText{
    border: 1px solid rgba(128, 128, 128, 0.337) ;
    padding: 6px;
    border-radius: 10px;
    margin: 0 auto;
margin-right: 6px;

  }